Searched refs:crestQuery (Results 1 - 25 of 47) sorted by relevance

12

/forgerock/openam-v13/openam-datastore/src/test/java/org/forgerock/openam/idrepo/ldap/
H A DADMailBasedRepoTest.java62 CrestQuery crestQuery = new CrestQuery(DEMO_MAIL);
64 idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.OR_MOD, null, true);
72 CrestQuery crestQuery = new CrestQuery(DEMO_MAIL);
74 idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.OR_MOD, null, true);
H A DGenericRepoTest.java340 CrestQuery crestQuery = new CrestQuery("invalid");
342 idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.AND_MOD, null, true);
351 CrestQuery crestQuery = new CrestQuery("searchTester*");
353 idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.AND_MOD, null, true);
362 CrestQuery crestQuery = new CrestQuery("searchTester1");
364 idrepo.search(null, IdType.USER, crestQuery, 0, 0, asSet("sn"), false, IdRepo.AND_MOD, null, true);
381 CrestQuery crestQuery = new CrestQuery("*");
383 idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.AND_MOD, avPairs, true);
387 results = idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.OR_MOD, avPairs, true);
396 CrestQuery crestQuery
[all...]
/forgerock/openam/openam-datastore/src/test/java/org/forgerock/openam/idrepo/ldap/
H A DADMailBasedRepoTest.java62 CrestQuery crestQuery = new CrestQuery(DEMO_MAIL);
64 idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.OR_MOD, null, true);
72 CrestQuery crestQuery = new CrestQuery(DEMO_MAIL);
74 idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.OR_MOD, null, true);
H A DGenericRepoTest.java342 CrestQuery crestQuery = new CrestQuery("invalid");
344 idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.AND_MOD, null, true);
353 CrestQuery crestQuery = new CrestQuery("searchTester*");
355 idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.AND_MOD, null, true);
364 CrestQuery crestQuery = new CrestQuery("searchTester1");
366 idrepo.search(null, IdType.USER, crestQuery, 0, 0, asSet("sn"), false, IdRepo.AND_MOD, null, true);
383 CrestQuery crestQuery = new CrestQuery("*");
385 idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.AND_MOD, avPairs, true);
389 results = idrepo.search(null, IdType.USER, crestQuery, 0, 0, null, true, IdRepo.OR_MOD, avPairs, true);
398 CrestQuery crestQuery
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/
H A DAMIdentityRepository.java277 CrestQuery crestQuery = new CrestQuery(pattern);
278 return searchIdentities(type, crestQuery, crtl);
310 CrestQuery crestQuery = new CrestQuery(pattern);
311 return searchIdentities(type, crestQuery, ctrl);
325 * @param crestQuery
338 public IdSearchResults searchIdentities(IdType type, CrestQuery crestQuery, IdSearchControl ctrl) argument
345 if (crestQuery.hasQueryFilter()) {
355 String pattern = crestQuery.getQueryId();
379 idSearchResults = idServices.search(token, type, ctrl, organizationDN, crestQuery);
H A DIdRepo.java347 * @param crestQuery
366 CrestQuery crestQuery, int maxTime, int maxResults,
365 search(SSOToken token, IdType type, CrestQuery crestQuery, int maxTime, int maxResults, Set<String> returnAttrs, boolean returnAllAttrs, int filterOp, Map<String, Set<String>> avPairs, boolean recursive) argument
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/monitoring/
H A DMonitoredOperations.java96 public Collection<PartialSession> getMatchingSessions(CrestQuery crestQuery) throws SessionException { argument
97 return sessionOperations.getMatchingSessions(crestQuery);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/
H A DAMIdentityRepository.java278 CrestQuery crestQuery = new CrestQuery(pattern);
279 return searchIdentities(type, crestQuery, crtl);
311 CrestQuery crestQuery = new CrestQuery(pattern);
312 return searchIdentities(type, crestQuery, ctrl);
326 * @param crestQuery
339 public IdSearchResults searchIdentities(IdType type, CrestQuery crestQuery, IdSearchControl ctrl) argument
346 if (crestQuery.hasQueryFilter()) {
356 String pattern = crestQuery.getQueryId();
380 idSearchResults = idServices.search(token, type, ctrl, organizationDN, crestQuery);
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/operations/
H A DSessionOperations.java174 * @param crestQuery The CREST query based on which we should look for matching sessions.
178 Collection<PartialSession> getMatchingSessions(CrestQuery crestQuery) throws SessionException; argument
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionService.java216 * @param crestQuery The CREST query based on which we should look for matching sessions. May not be null.
221 public Collection<PartialSession> getMatchingSessions(Session caller, CrestQuery crestQuery) argument
224 Reject.ifNull(crestQuery, "CREST query may not be null");
225 return sessionOperationStrategy.getOperation(caller.getSessionID()).getMatchingSessions(crestQuery);
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DIdentityResourceV3.java213 CrestQuery crestQuery = new CrestQuery(queryFilter);
214 userDetails = identityServices.searchIdentityDetails(crestQuery,
222 CrestQuery crestQuery = new CrestQuery(queryId);
223 userDetails = identityServices.searchIdentityDetails(crestQuery,
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DIdentityResourceV3.java213 CrestQuery crestQuery = new CrestQuery(queryFilter);
214 userDetails = identityServices.searchIdentityDetails(crestQuery,
222 CrestQuery crestQuery = new CrestQuery(queryId);
223 userDetails = identityServices.searchIdentityDetails(crestQuery,
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/operations/strategies/
H A DStatelessOperations.java107 * @param crestQuery {@inheritDoc}
112 public Collection<PartialSession> getMatchingSessions(CrestQuery crestQuery) throws SessionException { argument
113 return localOperations.getMatchingSessions(crestQuery);
H A DLocalOperations.java329 public Collection<PartialSession> getMatchingSessions(CrestQuery crestQuery) throws SessionException { argument
330 return sessionQueryManager.getMatchingValidSessions(crestQuery);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/
H A DSessionQueryManager.java76 * @param crestQuery The CREST query based on which we should look for matching sessions.
80 public Collection<PartialSession> getMatchingValidSessions(CrestQuery crestQuery) throws SessionException { argument
82 return sessionPersistenceStore.searchPartialSessions(crestQuery);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/
H A DSessionPersistenceStore.java190 * @param crestQuery The CREST query based on which we should look for matching sessions.
194 public Collection<PartialSession> searchPartialSessions(CrestQuery crestQuery) throws CoreTokenException { argument
195 final QueryFilter<JsonPointer> queryFilter = crestQuery.getQueryFilter();
205 addFieldsToFilter(filterAttributeBuilder, crestQuery.getFields());
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/remote/
H A DIdRemoteCachedServicesImpl.java583 CrestQuery crestQuery)
600 if (crestQuery.hasQueryId()) {
601 String pattern = crestQuery.getQueryId();
652 answer = super.search(token, type, ctrl, orgName, crestQuery);
582 search(SSOToken token, IdType type, IdSearchControl ctrl, String orgName, CrestQuery crestQuery) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdCachedServicesImpl.java557 CrestQuery crestQuery)
573 if (crestQuery.hasQueryId()) {
575 String pattern = crestQuery.getQueryId();
623 return super.search(token, type, ctrl, orgName, crestQuery);
556 search(SSOToken token, IdType type, IdSearchControl ctrl, String orgName, CrestQuery crestQuery) argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/remote/
H A DIdRemoteCachedServicesImpl.java583 CrestQuery crestQuery)
600 if (crestQuery.hasQueryId()) {
601 String pattern = crestQuery.getQueryId();
652 answer = super.search(token, type, ctrl, orgName, crestQuery);
582 search(SSOToken token, IdType type, IdSearchControl ctrl, String orgName, CrestQuery crestQuery) argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdCachedServicesImpl.java557 CrestQuery crestQuery)
573 if (crestQuery.hasQueryId()) {
575 String pattern = crestQuery.getQueryId();
623 return super.search(token, type, ctrl, orgName, crestQuery);
556 search(SSOToken token, IdType type, IdSearchControl ctrl, String orgName, CrestQuery crestQuery) argument
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/session/
H A DSessionResourceV2.java366 CrestQuery crestQuery = new CrestQuery(request.getQueryId(), request.getQueryFilter(), request.getFields());
371 ssoTokenContext.getCallerSession(), crestQuery);
379 LOGGER.error("An error occurred whilst looking for matching sessions with filter '{}'", crestQuery, se);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/plugins/database/
H A DDatabaseRepo.java1304 * @param crestQuery
1340 public RepoSearchResults search(SSOToken token, IdType type, CrestQuery crestQuery, argument
1353 + " crestQuery=" + crestQuery + " maxTime=" + maxTime
1359 if (crestQuery.hasQueryId()) {
1360 return search(token, type, crestQuery.getQueryId(), maxTime, maxResults, returnAttrs,
1412 users = dao.search(userIDAttributeName, maxResults, crestQuery.getQueryFilter(),
1415 users = dao.searchForGroups(membershipIdAttributeName, maxResults, crestQuery.getQueryId(),
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/plugins/database/
H A DDatabaseRepo.java1305 * @param crestQuery
1341 public RepoSearchResults search(SSOToken token, IdType type, CrestQuery crestQuery, argument
1354 + " crestQuery=" + crestQuery + " maxTime=" + maxTime
1360 if (crestQuery.hasQueryId()) {
1361 return search(token, type, crestQuery.getQueryId(), maxTime, maxResults, returnAttrs,
1413 users = dao.search(userIDAttributeName, maxResults, crestQuery.getQueryFilter(),
1416 users = dao.searchForGroups(membershipIdAttributeName, maxResults, crestQuery.getQueryId(),
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/idm/
H A DIdServicesDecorator.java173 CrestQuery crestQuery)
176 return delegate.search(token, type, ctrl, amOrgName, crestQuery);
172 search(SSOToken token, IdType type, IdSearchControl ctrl, String amOrgName, CrestQuery crestQuery) argument
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/idm/
H A DIdServicesDecorator.java178 CrestQuery crestQuery)
181 return delegate.search(token, type, ctrl, amOrgName, crestQuery);
177 search(SSOToken token, IdType type, IdSearchControl ctrl, String amOrgName, CrestQuery crestQuery) argument

Completed in 78 milliseconds

12