Searched defs:oathServiceFactory (Results 1 - 5 of 5) sorted by relevance

/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/oath/
H A DOathDevicesResource.java92 private final AuthenticatorDeviceServiceFactory<AuthenticatorOathService> oathServiceFactory; field in class:OathDevicesResource
102 * @param oathServiceFactory The factory used to generate appropriate services.
107 AuthenticatorDeviceServiceFactory<AuthenticatorOathService> oathServiceFactory) {
110 this.oathServiceFactory = oathServiceFactory;
149 final AuthenticatorOathService realmOathService = oathServiceFactory.create(getRealm(context));
220 final AuthenticatorOathService realmOathService = oathServiceFactory.create(getRealm(context));
105 OathDevicesResource(OathDevicesDao dao, ContextHelper helper, @Named(�) Debug debug, @Named(FACTORY_NAME) AuthenticatorDeviceServiceFactory<AuthenticatorOathService> oathServiceFactory) argument
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/
H A DOathDevicesResource.java62 private final AuthenticatorOathServiceFactory oathServiceFactory; field in class:OathDevicesResource
68 @Named("frRest") Debug debug, AuthenticatorOathServiceFactory oathServiceFactory,
72 this.oathServiceFactory = oathServiceFactory;
84 final AuthenticatorOathService realmOathService = oathServiceFactory.create(getRealm(context));
149 final AuthenticatorOathService realmOathService = oathServiceFactory.create(getRealm(context));
67 OathDevicesResource(OathDevicesDao dao, ContextHelper helper, @Named(�) Debug debug, AuthenticatorOathServiceFactory oathServiceFactory, ContextHelper contextHelper) argument
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/dashboard/
H A DOathDevicesResourceTest.java84 private AuthenticatorOathServiceFactory oathServiceFactory; field in class:OathDevicesResourceTest
92 resource = new OathDevicesResourceTestClass(dao, contextHelper, debug, oathServiceFactory);
95 given(oathServiceFactory.create(anyString())).willReturn(oathService);
231 AuthenticatorOathServiceFactory oathServiceFactory) {
232 super(dao, helper, debug, oathServiceFactory, helper);
230 OathDevicesResourceTestClass(OathDevicesDao dao, ContextHelper helper, Debug debug, AuthenticatorOathServiceFactory oathServiceFactory) argument
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/devices/oath/
H A DOathDevicesResourceTest.java86 private AuthenticatorDeviceServiceFactory oathServiceFactory; field in class:OathDevicesResourceTest
95 resource = new OathDevicesResourceTestClass(dao, contextHelper, debug, oathServiceFactory);
98 given(oathServiceFactory.create(anyString())).willReturn(oathService);
247 AuthenticatorDeviceServiceFactory<AuthenticatorOathService> oathServiceFactory) {
248 super(dao, helper, debug, oathServiceFactory);
246 OathDevicesResourceTestClass(OathDevicesDao dao, ContextHelper helper, Debug debug, AuthenticatorDeviceServiceFactory<AuthenticatorOathService> oathServiceFactory) argument
/forgerock/openam/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java153 private final AuthenticatorDeviceServiceFactory<AuthenticatorOathService> oathServiceFactory = field in class:AuthenticatorOATH
218 realmOathService = oathServiceFactory.create(id.getRealm());

Completed in 34 milliseconds