Searched defs:identityServices (Results 1 - 8 of 8) sorted by relevance

/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DCoreRestIdentityGuiceModule.java57 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
59 return new IdentityResourceV1(IdentityResourceV1.USER_TYPE, mailServerLoader, identityServices, coreWrapper,
68 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
70 return new IdentityResourceV2(IdentityResourceV2.USER_TYPE, mailServerLoader, identityServices, coreWrapper,
79 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
82 return new IdentityResourceV3(IdentityResourceV2.USER_TYPE, mailServerLoader, identityServices, coreWrapper,
91 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
93 return new IdentityResourceV1(IdentityResourceV1.GROUP_TYPE, mailServerLoader, identityServices, coreWrapper,
102 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
104 return new IdentityResourceV2(IdentityResourceV2.GROUP_TYPE, mailServerLoader, identityServices, coreWrappe
56 getUsersResourceV1(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, Set<UiRolePredicate> uiRolePredicates) argument
67 getUsersResourceV2(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
78 getUsersResource(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, @Named(�) Set<String> patchableAttributes, Set<UiRolePredicate> uiRolePredicates) argument
90 getGroupsResourceV1(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, Set<UiRolePredicate> uiRolePredicates) argument
101 getGroupsResourceV2(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
112 getGroupsResource(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
123 getAgentsResourceV1(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, Set<UiRolePredicate> uiRolePredicates) argument
134 getAgentsResourceV2(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
145 getAgentsResource(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
[all...]
H A DIdentityResourceV3.java82 private final IdentityServicesImpl identityServices; field in class:IdentityResourceV3
95 * @param identityServices
107 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
110 this.identityResourceV2 = new IdentityResourceV2(objectType, mailServerLoader, identityServices, coreWrapper,
113 this.identityServices = identityServices;
205 IdentityServicesImpl identityServices = getIdentityServices();
214 userDetails = identityServices.searchIdentityDetails(crestQuery,
223 userDetails = identityServices.searchIdentityDetails(crestQuery,
277 IdentityServicesImpl identityServices
106 IdentityResourceV3(String objectType, MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<String> patchableAttributes, Set<UiRolePredicate> uiRolePredicates) argument
[all...]
H A DIdentityResourceV1.java156 private final IdentityServicesImpl identityServices; field in class:IdentityResourceV1
167 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
169 this(objectType, null, null, mailServerLoader, identityServices, coreWrapper, restSecurityProvider,
192 MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper,
198 this.identityServices = identityServices;
675 List searchResults = identityServices.search(new CrestQuery("*"), searchAttributes, adminToken);
686 IdentityDetails identityDetails = identityServices.read(username,
893 identityServices.update(newDtls, admin);
897 IdentityDetails checkIdent = identityServices
166 IdentityResourceV1(String objectType, MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, Set<UiRolePredicate> uiRolePredicates) argument
191 IdentityResourceV1(String objectType, ServiceConfigManager mailmgr, ServiceConfig mailscm, MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, Set<UiRolePredicate> uiRolePredicates) argument
[all...]
H A DIdentityResourceV2.java168 private final IdentityServicesImpl identityServices; field in class:IdentityResourceV2
175 public IdentityResourceV2(String userType, MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, argument
178 this(userType, null, null, mailServerLoader, identityServices, coreWrapper, restSecurityProvider,
201 MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper,
208 this.identityResourceV1 = new IdentityResourceV1(userType, mailServerLoader, identityServices, coreWrapper,
210 this.identityServices = identityServices;
215 return identityServices;
729 IdentityDetails identityDetails = identityServices.read(username,
849 List<String> searchResults = identityServices
200 IdentityResourceV2(String userType, ServiceConfigManager mailmgr, ServiceConfig mailscm, MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
[all...]
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DIdentityResourceV3.java82 private final IdentityServicesImpl identityServices; field in class:IdentityResourceV3
95 * @param identityServices
107 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
110 this.identityResourceV2 = new IdentityResourceV2(objectType, mailServerLoader, identityServices, coreWrapper,
113 this.identityServices = identityServices;
205 IdentityServicesImpl identityServices = getIdentityServices();
214 userDetails = identityServices.searchIdentityDetails(crestQuery,
223 userDetails = identityServices.searchIdentityDetails(crestQuery,
282 IdentityServicesImpl identityServices
106 IdentityResourceV3(String objectType, MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<String> patchableAttributes, Set<UiRolePredicate> uiRolePredicates) argument
[all...]
H A DCoreRestGuiceModule.java192 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
194 return new IdentityResourceV1(IdentityResourceV1.USER_TYPE, mailServerLoader, identityServices, coreWrapper,
203 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
205 return new IdentityResourceV2(IdentityResourceV2.USER_TYPE, mailServerLoader, identityServices, coreWrapper,
214 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
217 return new IdentityResourceV3(IdentityResourceV2.USER_TYPE, mailServerLoader, identityServices, coreWrapper,
226 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
228 return new IdentityResourceV1(IdentityResourceV1.GROUP_TYPE, mailServerLoader, identityServices, coreWrapper,
237 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
239 return new IdentityResourceV2(IdentityResourceV2.GROUP_TYPE, mailServerLoader, identityServices, coreWrappe
191 getUsersResourceV1(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, Set<UiRolePredicate> uiRolePredicates) argument
202 getUsersResourceV2(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
213 getUsersResource(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, @Named(�) Set<String> patchableAttributes, Set<UiRolePredicate> uiRolePredicates) argument
225 getGroupsResourceV1(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, Set<UiRolePredicate> uiRolePredicates) argument
236 getGroupsResourceV2(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
247 getGroupsResource(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
258 getAgentsResourceV1(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, Set<UiRolePredicate> uiRolePredicates) argument
269 getAgentsResourceV2(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
280 getAgentsResource(MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
[all...]
H A DIdentityResourceV1.java159 private final IdentityServicesImpl identityServices; field in class:IdentityResourceV1
170 IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider,
172 this(objectType, null, null, mailServerLoader, identityServices, coreWrapper, restSecurityProvider,
195 MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper,
201 this.identityServices = identityServices;
678 List searchResults = identityServices.search(new CrestQuery("*"), searchAttributes, adminToken);
689 IdentityDetails identityDetails = identityServices.read(username,
898 identityServices.update(newDtls, admin);
902 IdentityDetails checkIdent = identityServices
169 IdentityResourceV1(String objectType, MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, Set<UiRolePredicate> uiRolePredicates) argument
194 IdentityResourceV1(String objectType, ServiceConfigManager mailmgr, ServiceConfig mailscm, MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, Set<UiRolePredicate> uiRolePredicates) argument
[all...]
H A DIdentityResourceV2.java162 private final IdentityServicesImpl identityServices; field in class:IdentityResourceV2
169 public IdentityResourceV2(String userType, MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, argument
172 this(userType, null, null, mailServerLoader, identityServices, coreWrapper, restSecurityProvider,
195 MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper,
204 this.identityResourceV1 = new IdentityResourceV1(userType, mailServerLoader, identityServices, coreWrapper,
206 this.identityServices = identityServices;
211 return identityServices;
737 List<String> searchResults = identityServices.search(new CrestQuery("*"), searchAttributes, adminToken);
748 IdentityDetails identityDetails = identityServices
194 IdentityResourceV2(String userType, ServiceConfigManager mailmgr, ServiceConfig mailscm, MailServerLoader mailServerLoader, IdentityServicesImpl identityServices, CoreWrapper coreWrapper, RestSecurityProvider restSecurityProvider, ConsoleConfigHandler configHandler, BaseURLProviderFactory baseURLProviderFactory, Set<UiRolePredicate> uiRolePredicates) argument
[all...]

Completed in 51 milliseconds