Searched defs:serviceFactory (Results 1 - 21 of 21) sorted by relevance

/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/
H A DOathDevicesDao.java30 public OathDevicesDao(AuthenticatorOathServiceFactory serviceFactory) { argument
31 super(serviceFactory);
H A DTrustedDevicesDao.java33 public TrustedDevicesDao(TrustedDeviceServiceFactory serviceFactory) { argument
34 super(serviceFactory);
H A DUserDevicesDao.java50 private final DeviceServiceFactory serviceFactory; field in class:UserDevicesDao
52 public UserDevicesDao(DeviceServiceFactory serviceFactory) { argument
53 this.serviceFactory = serviceFactory;
71 final DeviceService deviceService = serviceFactory.create(realm);
106 final DeviceService deviceService = serviceFactory.create(realm);
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/deviceprint/
H A DTrustedDevicesDao.java33 public TrustedDevicesDao(AuthenticatorDeviceServiceFactory<TrustedDeviceService> serviceFactory) { argument
34 super(serviceFactory);
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/oath/
H A DOathDevicesDao.java37 * @param serviceFactory Factory used to retrieve the Push Service for this dao.
41 AuthenticatorDeviceServiceFactory<AuthenticatorOathService> serviceFactory) {
42 super(serviceFactory);
40 OathDevicesDao(@amedFACTORY_NAME) AuthenticatorDeviceServiceFactory<AuthenticatorOathService> serviceFactory) argument
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/push/
H A DPushDevicesDao.java36 * @param serviceFactory Factory used to retrieve the Push Service for this dao.
40 AuthenticatorDeviceServiceFactory<AuthenticatorPushService> serviceFactory) {
41 super(serviceFactory);
39 PushDevicesDao(@amedAuthenticatorPushServiceFactory.FACTORY_NAME) AuthenticatorDeviceServiceFactory<AuthenticatorPushService> serviceFactory) argument
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/
H A DRequestListenerFactory.java62 * @param serviceFactory - a factory from which a ThreadPoolExecutor may be obtained.
67 public RequestListenerFactory(ExecutorServiceFactory serviceFactory, argument
70 this.executorServiceFactory = serviceFactory;
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOathGuiceModule.java44 public OathDevicesDao getDevicesDao(AuthenticatorOathServiceFactory serviceFactory) { argument
45 return new OathDevicesDao(serviceFactory);
/forgerock/openam/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/
H A DRequestListenerFactory.java59 * @param serviceFactory - a factory from which a ThreadPoolExecutor may be obtained.
64 public RequestListenerFactory(AMExecutorServiceFactory serviceFactory, argument
67 this.executorServiceFactory = serviceFactory;
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/
H A DUserDevicesDao.java50 private final AuthenticatorDeviceServiceFactory serviceFactory; field in class:UserDevicesDao
53 * Construct a new UserDevicesDao with the provided serviceFactory.
55 * @param serviceFactory The DeviceServiceFactory used to generate specific services for realms.
57 public UserDevicesDao(AuthenticatorDeviceServiceFactory serviceFactory) { argument
58 this.serviceFactory = serviceFactory;
76 final DeviceService deviceService = serviceFactory.create(realm);
115 final DeviceService deviceService = serviceFactory.create(realm);
H A DCoreRestDevicesGuiceModule.java63 AuthenticatorDeviceServiceFactory<TrustedDeviceService> serviceFactory) {
64 return new TrustedDevicesDao(serviceFactory);
71 AuthenticatorDeviceServiceFactory<AuthenticatorPushService> serviceFactory) {
72 return new PushDevicesDao(serviceFactory);
79 AuthenticatorDeviceServiceFactory<AuthenticatorOathService> serviceFactory) {
80 return new OathDevicesDao(serviceFactory);
61 getTrustedDevicesDao( @amedTrustedDeviceServiceFactory.FACTORY_NAME) AuthenticatorDeviceServiceFactory<TrustedDeviceService> serviceFactory) argument
69 getPushDevicesDao( @amedAuthenticatorPushServiceFactory.FACTORY_NAME) AuthenticatorDeviceServiceFactory<AuthenticatorPushService> serviceFactory) argument
77 getOathDevicesDao( @amedAuthenticatorOathServiceFactory.FACTORY_NAME) AuthenticatorDeviceServiceFactory<AuthenticatorOathService> serviceFactory) argument
/forgerock/openam-v13/openam-selfservice/src/main/java/org/forgerock/openam/selfservice/
H A DSelfServiceGuiceModule.java97 SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler,
101 configHandler, configProviderFactory, serviceFactory);
107 SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler,
111 configHandler, configProviderFactory, serviceFactory);
117 SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler,
121 configHandler, configProviderFactory, serviceFactory);
96 getUserRegistrationService( SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler, ServiceConfigProviderFactory configProviderFactory) argument
106 getForgottenPasswordService( SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler, ServiceConfigProviderFactory configProviderFactory) argument
116 getForgottenUsernameService( SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler, ServiceConfigProviderFactory configProviderFactory) argument
H A DSelfServiceRequestHandler.java56 private final SelfServiceFactory serviceFactory; field in class:SelfServiceRequestHandler
73 SelfServiceFactory serviceFactory) {
79 this.serviceFactory = serviceFactory;
134 return serviceFactory.getService(realm, serviceConfigProvider.getServiceConfig(consoleConfig, context, realm));
71 SelfServiceRequestHandler(Class<? extends ConsoleConfigBuilder<C>> consoleConfigBuilderType, ConsoleConfigHandler consoleConfigHandler, ServiceConfigProviderFactory providerFactory, SelfServiceFactory serviceFactory) argument
/forgerock/openam-v13/openam-selfservice/src/test/java/org/forgerock/openam/selfservice/
H A DSelfServiceRequestHandlerTest.java54 private SelfServiceFactory serviceFactory; field in class:SelfServiceRequestHandlerTest
78 consoleConfigHandler, providerFactory, serviceFactory);
91 given(serviceFactory.getService("/", config)).willReturn(underlyingService);
110 given(serviceFactory.getService("/", config)).willReturn(underlyingService);
/forgerock/openam/openam-selfservice/src/main/java/org/forgerock/openam/selfservice/
H A DSelfServiceGuiceModule.java90 SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler,
94 configHandler, configProviderFactory, serviceFactory);
100 SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler,
104 configHandler, configProviderFactory, serviceFactory);
110 SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler,
114 configHandler, configProviderFactory, serviceFactory);
89 getUserRegistrationService( SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler, ServiceConfigProviderFactory configProviderFactory) argument
99 getForgottenPasswordService( SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler, ServiceConfigProviderFactory configProviderFactory) argument
109 getForgottenUsernameService( SelfServiceFactory serviceFactory, ConsoleConfigHandler configHandler, ServiceConfigProviderFactory configProviderFactory) argument
H A DSelfServiceRequestHandler.java85 private final SelfServiceFactory serviceFactory; field in class:SelfServiceRequestHandler
104 SelfServiceFactory serviceFactory) {
110 this.serviceFactory = serviceFactory;
188 return serviceFactory.getService(realm, serviceConfigProvider.getServiceConfig(consoleConfig, context, realm));
102 SelfServiceRequestHandler(Class<? extends ConsoleConfigBuilder<C>> consoleConfigBuilderType, ConsoleConfigHandler consoleConfigHandler, ServiceConfigProviderFactory providerFactory, SelfServiceFactory serviceFactory) argument
/forgerock/openam/openam-selfservice/src/test/java/org/forgerock/openam/selfservice/
H A DSelfServiceRequestHandlerTest.java63 private SelfServiceFactory serviceFactory; field in class:SelfServiceRequestHandlerTest
90 consoleConfigHandler, providerFactory, serviceFactory);
108 given(serviceFactory.getService("/", config)).willReturn(underlyingService);
127 given(serviceFactory.getService("/", config)).willReturn(underlyingService);
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/
H A DScriptResource.java73 private final ScriptingServiceFactory serviceFactory; field in class:ScriptResource
89 this.serviceFactory = scriptConfigService;
142 final ScriptConfiguration sc = serviceFactory
156 serviceFactory.create(getContextSubject(context), getRealm(context)).delete(resourceId);
170 configs = serviceFactory.create(getContextSubject(context), getRealm(context)).getAll();
174 configs = serviceFactory.create(getContextSubject(context), getRealm(context)).get(stringQueryFilter);
195 serviceFactory.create(getContextSubject(context), getRealm(context)).get(resourceId))));
205 return newResultPromise(newResourceResponse(resourceId, null, asJson(serviceFactory
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/scripting/
H A DScriptedAuthModulesStep.java73 private final ScriptingServiceFactory serviceFactory; field in class:ScriptedAuthModulesStep
81 this.serviceFactory = scriptingServiceFactory;
164 ScriptingService service = serviceFactory.create(getAdminSubject(), realm);
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/
H A DScriptResource.java110 private final ScriptingServiceFactory serviceFactory; field in class:ScriptResource
126 this.serviceFactory = scriptConfigService;
201 final ScriptConfiguration sc = serviceFactory
230 serviceFactory.create(getRealm(context)).delete(resourceId);
248 configs = serviceFactory.create(getRealm(context)).getAll();
252 configs = serviceFactory.create(getRealm(context)).get(stringQueryFilter);
279 serviceFactory.create(getRealm(context)).get(resourceId))));
308 return newResultPromise(newResourceResponse(resourceId, null, asJson(serviceFactory
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/scripting/
H A DScriptedAuthModulesStep.java73 private final ScriptingServiceFactory serviceFactory; field in class:ScriptedAuthModulesStep
81 this.serviceFactory = scriptingServiceFactory;
164 ScriptingService service = serviceFactory.create(realm);

Completed in 103 milliseconds