Searched refs:devicePrintAuthenticationConfig (Results 1 - 5 of 5) sorted by relevance

/forgerock/openam-v13/openam-authentication/deviceprint/module/src/test/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DDevicePrintAuthenticationConfigTest.java50 private DevicePrintAuthenticationConfig devicePrintAuthenticationConfig; field in class:DevicePrintAuthenticationConfigTest
57 devicePrintAuthenticationConfig = new DevicePrintAuthenticationConfig(config);
78 String value = devicePrintAuthenticationConfig.getAttributeValue("KEY");
91 int value = devicePrintAuthenticationConfig.getInt("KEY");
104 boolean value = devicePrintAuthenticationConfig.getBoolean("KEY");
117 long value = devicePrintAuthenticationConfig.getLong("KEY");
147 boolean value = devicePrintAuthenticationConfig.hasRequiredAttributes(devicePrint);
167 boolean value = devicePrintAuthenticationConfig.hasRequiredAttributes(devicePrint);
193 boolean value = devicePrintAuthenticationConfig.hasRequiredAttributes(devicePrint);
222 boolean value = devicePrintAuthenticationConfig
[all...]
H A DDevicePrintServiceTest.java63 private DevicePrintAuthenticationConfig devicePrintAuthenticationConfig; field in class:DevicePrintServiceTest
71 devicePrintAuthenticationConfig = mock(DevicePrintAuthenticationConfig.class);
76 given(devicePrintAuthenticationConfig.getInt(
78 given(devicePrintAuthenticationConfig.getInt(
81 devicePrintService = new DevicePrintService(devicePrintAuthenticationConfig, userProfilesDao, extractorFactory,
95 verify(devicePrintAuthenticationConfig).hasRequiredAttributes(devicePrint);
165 devicePrintAuthenticationConfig)).willReturn(userProfileOneResult);
167 devicePrintAuthenticationConfig)).willReturn(userProfileThreeResult);
169 given(devicePrintAuthenticationConfig.getLong(
H A DDevicePrintAuthenticationServiceTest.java62 private DevicePrintAuthenticationConfig devicePrintAuthenticationConfig; field in class:DevicePrintAuthenticationServiceTest
70 devicePrintAuthenticationConfig = mock(DevicePrintAuthenticationConfig.class);
73 devicePrintService, devicePrintAuthenticationConfig);
241 given(devicePrintAuthenticationConfig.getBoolean(DevicePrintAuthenticationConfig.AUTO_STORE_PROFILES))
269 given(devicePrintAuthenticationConfig.getBoolean(DevicePrintAuthenticationConfig.AUTO_STORE_PROFILES))
/forgerock/openam-v13/openam-authentication/deviceprint/module/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DDevicePrintService.java62 private final DevicePrintAuthenticationConfig devicePrintAuthenticationConfig; field in class:DevicePrintService
71 * @param devicePrintAuthenticationConfig An instance of the DevicePrintAuthenticationConfig.
76 public DevicePrintService(DevicePrintAuthenticationConfig devicePrintAuthenticationConfig, argument
80 this.devicePrintAuthenticationConfig = devicePrintAuthenticationConfig;
84 profileExpirationDays = devicePrintAuthenticationConfig.getInt(
86 profileMaximumProfilesStoredQuantity = devicePrintAuthenticationConfig.getInt(
98 return devicePrintAuthenticationConfig.hasRequiredAttributes(devicePrint);
132 devicePrintAuthenticationConfig), userProfile);
142 if (selectedComparisonResult.getPenaltyPoints() <= devicePrintAuthenticationConfig
[all...]
H A DDevicePrintAuthenticationService.java64 private final DevicePrintAuthenticationConfig devicePrintAuthenticationConfig; field in class:DevicePrintAuthenticationService
75 * @param devicePrintAuthenticationConfig An instance of the DevicePrintAuthenticationConfig.
78 DevicePrintService devicePrintService, DevicePrintAuthenticationConfig devicePrintAuthenticationConfig) {
82 this.devicePrintAuthenticationConfig = devicePrintAuthenticationConfig;
196 } else if (devicePrintAuthenticationConfig.getBoolean(DevicePrintAuthenticationConfig.AUTO_STORE_PROFILES)) {
77 DevicePrintAuthenticationService(HttpServletRequest request, HOTPService hotpService, DevicePrintService devicePrintService, DevicePrintAuthenticationConfig devicePrintAuthenticationConfig) argument

Completed in 40 milliseconds