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

/forgerock/openam-v13/openam-authentication/deviceprint/module/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/comparators/
H A DComparisonResult.java41 private Long penaltyPoints = 0L; field in class:ComparisonResult
53 * @param penaltyPoints The penalty points for the comparison.
56 public ComparisonResult(Long penaltyPoints, Boolean additionalInfoInCurrentValue) { argument
57 this.penaltyPoints = penaltyPoints;
68 this.penaltyPoints = differencePenaltyPoints;
86 this.penaltyPoints += comparisonResult.penaltyPoints;
98 return penaltyPoints;
116 return penaltyPoints
[all...]
H A DMultiValueAttributeComparator.java61 * If yes then returns zero-result with additional info, else returns penaltyPoints-result.
69 * @param penaltyPoints The number of penalty points.
74 long penaltyPoints) {
115 return new ComparisonResult(penaltyPoints);
123 return new ComparisonResult(penaltyPoints);
72 compare(String currentAttribute, String storedAttribute, Integer maxToleratedPercentageToMarkAsDifferent, Integer maxToleratedNumberOfDifferences, long penaltyPoints) argument
H A DDevicePrintComparator.java151 * @param penaltyPoints The number of penalty points.
154 public ComparisonResult compare(String currentValue, String storedValue, long penaltyPoints) { argument
156 if (penaltyPoints == 0L) {
162 return new ComparisonResult(penaltyPoints);
177 * @param penaltyPoints The number of penalty points.
181 public ComparisonResult compareUserAgent(String currentValue, String storedValue, long penaltyPoints, argument
190 return compare(currentValue, storedValue, penaltyPoints);
201 * @param penaltyPoints The number of penalty points.
205 int maxDifferencesPercentage, long penaltyPoints) {
207 penaltyPoints);
204 compare(String currentValue, String storedValue, int maxDifferences, int maxDifferencesPercentage, long penaltyPoints) argument
222 compare(Double currentLatitude, Double currentLongitude, Double storedLatitude, Double storedLongitude, long maxToleratedDistance, long penaltyPoints) argument
239 compareScreenResolution(String currentWidth, String currentHeight, String storedWidth, String storedHeight, long penaltyPoints) argument
[all...]

Completed in 372 milliseconds