Searched defs:storedValue (Results 1 - 3 of 3) sorted by relevance

/forgerock/openam-v13/openam-scripting/src/main/js/
H A DdeviceIdMatch-server-side.js200 * @param storedValue (String|Number) The stored value.
206 ScalarComparator.compare = function (currentValue, storedValue, config) {
209 logger.message("StringComparator.compare:storedValue: " + JSON.stringify(storedValue));
216 if (!nullOrUndefined(storedValue)) {
217 if (nullOrUndefined(currentValue) || currentValue !== storedValue) {
236 * @param storedValue: {
246 ScreenComparator.compare = function (currentValue, storedValue, config) {
249 logger.message("ScreenComparator.compare:storedValue: " + JSON.stringify(storedValue));
[all...]
/forgerock/openam/openam-scripting/src/main/js/
H A DdeviceIdMatch-server-side.js200 * @param storedValue (String|Number) The stored value.
206 ScalarComparator.compare = function (currentValue, storedValue, config) {
209 logger.message("StringComparator.compare:storedValue: " + JSON.stringify(storedValue));
216 if (!nullOrUndefined(storedValue)) {
217 if (nullOrUndefined(currentValue) || currentValue !== storedValue) {
236 * @param storedValue: {
246 ScreenComparator.compare = function (currentValue, storedValue, config) {
249 logger.message("ScreenComparator.compare:storedValue: " + JSON.stringify(storedValue));
[all...]
/forgerock/openam-v13/openam-authentication/deviceprint/module/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/comparators/
H A DDevicePrintComparator.java150 * @param storedValue The stored value.
154 public ComparisonResult compare(String currentValue, String storedValue, long penaltyPoints) { argument
160 if (storedValue != null) {
161 if (currentValue == null || !currentValue.equals(storedValue)) {
176 * @param storedValue The stored value.
181 public ComparisonResult compareUserAgent(String currentValue, String storedValue, long penaltyPoints, argument
187 storedValue = storedValue.replaceAll("[[0-9]\\.]+", "").trim();
190 return compare(currentValue, storedValue, penaltyPoints);
198 * @param storedValue Th
204 compare(String currentValue, String storedValue, int maxDifferences, int maxDifferencesPercentage, long penaltyPoints) argument
[all...]

Completed in 30 milliseconds