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

12

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/
H A DIdServices.java96 * @param crestQuery encapsulates _queryId or _queryFilter from the CREST endpoint.
101 IdSearchControl ctrl, String amOrgName, CrestQuery crestQuery)
100 search(SSOToken token, IdType type, IdSearchControl ctrl, String amOrgName, CrestQuery crestQuery) argument
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/operations/strategies/
H A DClientSdkOperations.java147 public Collection<PartialSession> getMatchingSessions(CrestQuery crestQuery) { argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/
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
H A DIdServices.java131 * @param crestQuery encapsulates _queryId or _queryFilter from the CREST endpoint.
136 IdSearchControl ctrl, String amOrgName, CrestQuery crestQuery)
135 search(SSOToken token, IdType type, IdSearchControl ctrl, String amOrgName, CrestQuery crestQuery) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/plugins/internal/
H A DAgentsRepo.java915 public RepoSearchResults search(SSOToken token, IdType type, CrestQuery crestQuery, int maxTime, argument
920 if (crestQuery.hasQueryFilter()) {
924 String pattern = crestQuery.getQueryId();
1276 CrestQuery crestQuery = new CrestQuery(name);
1277 RepoSearchResults results = search(token, type, crestQuery, 0, 0, null, true, 0, null, false);
1804 CrestQuery crestQuery = new CrestQuery("*");
1806 superAdminToken, IdType.AGENTONLY, crestQuery, 0, 0, null, true, 0, null, false);
H A DSpecialRepo.java545 public RepoSearchResults search(SSOToken token, IdType type, CrestQuery crestQuery, int maxTime, argument
550 if (crestQuery.hasQueryFilter()) {
557 String pattern = crestQuery.getQueryId();
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/plugins/internal/
H A DAgentsRepo.java932 public RepoSearchResults search(SSOToken token, IdType type, CrestQuery crestQuery, int maxTime, argument
937 if (crestQuery.hasQueryFilter()) {
941 String pattern = crestQuery.getQueryId();
1293 CrestQuery crestQuery = new CrestQuery(name);
1294 RepoSearchResults results = search(token, type, crestQuery, 0, 0, null, true, 0, null, false);
1828 CrestQuery crestQuery = new CrestQuery("*");
1830 superAdminToken, IdType.AGENTONLY, crestQuery, 0, 0, null, true, 0, null, false);
H A DSpecialRepo.java545 public RepoSearchResults search(SSOToken token, IdType type, CrestQuery crestQuery, int maxTime, argument
550 if (crestQuery.hasQueryFilter()) {
557 String pattern = crestQuery.getQueryId();
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idsvcs/opensso/
H A DIdentityServicesImpl.java430 * @param crestQuery A CREST Query object which will contain either a _queryId or a _queryFilter.
436 public List<String> search(CrestQuery crestQuery, Map<String, Set<String>> searchModifiers, SSOToken admin) argument
453 List<AMIdentity> objList = fetchAMIdentities(idType, crestQuery, false, repo, searchModifiers);
485 * @param crestQuery A CREST Query object which will contain either a _queryId or a _queryFilter.
491 public List<IdentityDetails> searchIdentityDetails(CrestQuery crestQuery, argument
507 List<AMIdentity> identities = fetchAMIdentities(idType, crestQuery, true, repo, searchModifiers);
988 private List<AMIdentity> fetchAMIdentities(IdType type, CrestQuery crestQuery, argument
1009 searchResults = repo.searchIdentities(type, crestQuery, searchControl);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idsvcs/opensso/
H A DIdentityServicesImpl.java433 * @param crestQuery A CREST Query object which will contain either a _queryId or a _queryFilter.
439 public List<String> search(CrestQuery crestQuery, Map<String, Set<String>> searchModifiers, SSOToken admin) argument
456 List<AMIdentity> objList = fetchAMIdentities(idType, crestQuery, false, repo, searchModifiers);
488 * @param crestQuery A CREST Query object which will contain either a _queryId or a _queryFilter.
494 public List<IdentityDetails> searchIdentityDetails(CrestQuery crestQuery, argument
510 List<AMIdentity> identities = fetchAMIdentities(idType, crestQuery, true, repo, searchModifiers);
991 private List<AMIdentity> fetchAMIdentities(IdType type, CrestQuery crestQuery, argument
1012 searchResults = repo.searchIdentities(type, crestQuery, searchControl);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/remote/
H A DIdRemoteServicesImpl.java325 CrestQuery crestQuery)
339 String pattern = crestQuery.getQueryId();
324 search(SSOToken token, IdType type, IdSearchControl ctrl, String amOrgName, CrestQuery crestQuery) argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/remote/
H A DIdRemoteServicesImpl.java326 CrestQuery crestQuery)
340 String pattern = crestQuery.getQueryId();
325 search(SSOToken token, IdType type, IdSearchControl ctrl, String amOrgName, CrestQuery crestQuery) argument
/forgerock/openam-v13/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/
H A DDJLDAPv3Repo.java1098 * @param crestQuery Either a string, coming from something like the CREST endpoint _queryId or a fully
1114 public RepoSearchResults search(SSOToken token, IdType type, CrestQuery crestQuery, int maxTime, argument
1121 + " crestQuery: " + crestQuery
1139 if (crestQuery.hasQueryId()) {
1140 first = Filter.valueOf(searchAttr + "=" + crestQuery.getQueryId());
1142 first = crestQuery.getQueryFilter().accept(new LdapFromJsonQueryFilterVisitor(), null);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdServicesImpl.java1469 CrestQuery crestQuery)
1534 results = idRepo.search(token, type, crestQuery, maxTime, maxResults, returnAttrs,
1580 + ":: using " + crestQuery
1635 CrestQuery crestQuery = new CrestQuery("*");
1636 RepoSearchResults res = specialRepo.search(token, type, crestQuery, 0, 0,
1660 CrestQuery crestQuery = new CrestQuery("*");
1661 RepoSearchResults res = repo.search(token, type, crestQuery,
1468 search(SSOToken token, IdType type, IdSearchControl ctrl, String amOrgName, CrestQuery crestQuery) argument
H A DIdRepoJAXRPCObjectImpl.java613 CrestQuery crestQuery = new CrestQuery(pattern);
614 return IdSearchResultsToMap(idServices.search(ssoToken, idtype, ctrl, amOrgName, crestQuery));
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdServicesImpl.java1443 CrestQuery crestQuery)
1508 results = idRepo.search(token, type, crestQuery, maxTime, maxResults, returnAttrs,
1554 + ":: using " + crestQuery
1609 CrestQuery crestQuery = new CrestQuery("*");
1610 RepoSearchResults res = specialRepo.search(token, type, crestQuery, 0, 0,
1634 CrestQuery crestQuery = new CrestQuery("*");
1635 RepoSearchResults res = repo.search(token, type, crestQuery,
1442 search(SSOToken token, IdType type, IdSearchControl ctrl, String amOrgName, CrestQuery crestQuery) argument
H A DIdRepoJAXRPCObjectImpl.java615 CrestQuery crestQuery = new CrestQuery(pattern);
616 return IdSearchResultsToMap(idServices.search(ssoToken, idtype, ctrl, amOrgName, crestQuery));
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/plugins/files/
H A DFilesRepo.java1045 public RepoSearchResults search(SSOToken token, IdType type, CrestQuery crestQuery, int maxTime, argument
1049 if (crestQuery.hasQueryId()) {
1050 return search(token, type, crestQuery.getQueryId(), maxTime, maxResults, returnAttrs,
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/plugins/files/
H A DFilesRepo.java1047 public RepoSearchResults search(SSOToken token, IdType type, CrestQuery crestQuery, int maxTime, argument
1051 if (crestQuery.hasQueryId()) {
1052 return search(token, type, crestQuery.getQueryId(), maxTime, maxResults, returnAttrs,
/forgerock/openam/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/
H A DDJLDAPv3Repo.java1108 * @param crestQuery Either a string, coming from something like the CREST endpoint _queryId or a fully
1124 public RepoSearchResults search(SSOToken token, IdType type, CrestQuery crestQuery, int maxTime, argument
1131 + " crestQuery: " + crestQuery
1149 if (crestQuery.hasQueryId()) {
1150 first = Filter.valueOf(searchAttr + "=" + crestQuery.getQueryId());
1152 first = crestQuery.getQueryFilter().accept(new LdapFromJsonQueryFilterVisitor(), null);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMSDKRepo.java774 CrestQuery crestQuery, int maxTime, int maxResults,
779 if (crestQuery.hasQueryId()) {
780 return search(token, type, crestQuery.getQueryId(), avPairs, recursive, maxResults,
773 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/am/sdk/
H A DAMSDKRepo.java774 CrestQuery crestQuery, int maxTime, int maxResults,
779 if (crestQuery.hasQueryId()) {
780 return search(token, type, crestQuery.getQueryId(), avPairs, recursive, maxResults,
773 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

Completed in 163 milliseconds

12