Searched refs:devicePrintService (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-authentication/deviceprint/module/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DDevicePrintAuthenticationService.java63 private final DevicePrintService devicePrintService; field in class:DevicePrintAuthenticationService
74 * @param devicePrintService An instance of the DevicePrintService.
78 DevicePrintService devicePrintService, DevicePrintAuthenticationConfig devicePrintAuthenticationConfig) {
81 this.devicePrintService = devicePrintService;
140 devicePrintService.updateProfile(selectedUserProfile, currentDevicePrint);
142 devicePrintService.createNewProfile(currentDevicePrint);
155 currentDevicePrint = devicePrintService.getDevicePrint(request);
157 if (!devicePrintService.hasRequiredAttributes(currentDevicePrint)) {
166 devicePrintService
77 DevicePrintAuthenticationService(HttpServletRequest request, HOTPService hotpService, DevicePrintService devicePrintService, DevicePrintAuthenticationConfig devicePrintAuthenticationConfig) argument
[all...]
H A DDevicePrintModuleInitialiser.java127 DevicePrintService devicePrintService = new DevicePrintService(config, userProfilesDao, extractorFactory,
131 httpServletRequest, hotpService, devicePrintService, config);
/forgerock/openam-v13/openam-authentication/deviceprint/module/src/test/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DDevicePrintAuthenticationServiceTest.java61 private DevicePrintService devicePrintService; field in class:DevicePrintAuthenticationServiceTest
69 devicePrintService = mock(DevicePrintService.class);
73 devicePrintService, devicePrintAuthenticationConfig);
106 given(devicePrintService.getDevicePrint(request)).willReturn(devicePrint);
107 given(devicePrintService.hasRequiredAttributes(devicePrint)).willReturn(false);
131 given(devicePrintService.getDevicePrint(request)).willReturn(devicePrint);
132 given(devicePrintService.hasRequiredAttributes(devicePrint)).willReturn(true);
133 given(devicePrintService.getBestMatchingUserProfile(devicePrint)).willReturn(selectedUserProfile);
158 given(devicePrintService.getDevicePrint(request)).willReturn(devicePrint);
159 given(devicePrintService
[all...]
H A DDevicePrintServiceTest.java61 private DevicePrintService devicePrintService; field in class:DevicePrintServiceTest
81 devicePrintService = new DevicePrintService(devicePrintAuthenticationConfig, userProfilesDao, extractorFactory,
92 devicePrintService.hasRequiredAttributes(devicePrint);
112 DevicePrint devicePrint = devicePrintService.getDevicePrint(request);
130 UserProfile selectedUserProfile = devicePrintService.getBestMatchingUserProfile(devicePrint);
173 UserProfile selectedUserProfile = devicePrintService.getBestMatchingUserProfile(devicePrint);
194 devicePrintService.createNewProfile(devicePrint);
225 devicePrintService.createNewProfile(devicePrint);
251 devicePrintService.updateProfile(userProfile, devicePrint);

Completed in 34 milliseconds