Searched defs:query (Results 76 - 100 of 256) sorted by relevance

1234567891011

/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/query/
H A DQueryAttribute.java17 package org.forgerock.openam.entitlement.rest.query;
24 * An attribute that can be used in a query filter for querying policies.
/forgerock/openam/openam-examples/openam-example-api-descriptor/src/main/java/org/forgerock/openam/example/apidescriptor/
H A DExampleProvider.java85 public Promise<QueryResponse, ResourceException> query(Context context, QueryRequest request, method in class:ExampleProvider
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/saml/plugins/
H A DDefaultActionMapper.java87 public String getSSOTokenID(AuthorizationDecisionQuery query) { argument
88 if (query == null) {
91 SubjectConfirmation sc = query.getSubject().getSubjectConfirmation();
111 public Assertion getSSOAssertion(AuthorizationDecisionQuery query, argument
114 if (query == null) {
120 Evidence evi = query.getEvidence();
187 * It then query the Policy decision one action at a time. Currently,
192 public Map getAuthorizationDecisions(AuthorizationDecisionQuery query, argument
195 if ((query == null) || (token == null)) {
199 Evidence evidence = query
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/plugins/
H A DActionMapper.java69 * Returns the single sign on token id to OpenAM from the query.
71 * @param query The received <code>AuthorizationDecisionQuery</code>.
74 * from the query.
76 public String getSSOTokenID(AuthorizationDecisionQuery query); argument
82 * @param query The received <code>AuthorizationDecisionQuery</code>.
83 * @param sourceID The <code>SourceID</code> from which this query is
85 * @return Assertion The assertion contained inside the query.
87 public Assertion getSSOAssertion(AuthorizationDecisionQuery query, argument
94 * @param query The received <code>AuthorizationDecisionQuery</code>.
96 * @param sourceID The <code>sourceID</code> from which the query i
106 getAuthorizationDecisions(AuthorizationDecisionQuery query, Object token, String sourceID) argument
[all...]
H A DAttributeMapper.java53 * Returns the single sign on token ID to OpenAM from the query.
54 * @param query The received <code>AttributeQuery</code>.
57 public String getSSOTokenID(AttributeQuery query); argument
63 * @param query The received <code>AttributeQuery</code>.
64 * @return Assertion The assertion contained inside the query.
66 public Assertion getSSOAssertion(AttributeQuery query); argument
71 * @param query The received <code>AttributeQuery</code>.
72 * @param sourceID source ID for the site from which the query originated.
77 public List getAttributes(AttributeQuery query, String sourceID, argument
H A DDefaultAttributeMapper.java84 * @param query the <code>AttributeQuery</code> object.
87 public String getSSOTokenID(AttributeQuery query) { argument
88 if (query == null) {
91 SubjectConfirmation sc = query.getSubject().getSubjectConfirmation();
111 public Assertion getSSOAssertion(AttributeQuery query) { argument
112 if (query == null) {
115 SubjectConfirmation sc = query.getSubject().getSubjectConfirmation();
152 * This method first mapps the Subject in the query to a local site
157 * of the query. If there is no AttributeDesignator in the query,
167 getAttributes(AttributeQuery query, String sourceID, Object token) argument
[all...]
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DResourceSetWithPolicyQuery.java21 import org.forgerock.util.query.QueryFilter;
32 * Get the resource set query.
33 * @return The query.
35 public org.forgerock.util.query.QueryFilter<String> getResourceSetQuery() {
40 * Set the resource set query.
41 * @param query The query.
43 public void setResourceSetQuery(org.forgerock.util.query.QueryFilter<String> query) { argument
44 setFirstQuery(query);
59 setPolicyQuery(QueryFilter<JsonPointer> query) argument
[all...]
/forgerock/openidm-v4/openidm-repo-orientdb/src/main/java/org/forgerock/openidm/repo/orientdb/impl/query/
H A DConfiguredQueries.java24 package org.forgerock.openidm.repo.orientdb.impl.query;
40 * Configured and ad-hoc query support on OrientDB
44 * @param <Q> The query object type
54 static final String EVENT_RAW_QUERY_PREFIX = "openidm/internal/repo/orientdb/raw/query/";
58 // Pre-configured queries, key is query id
66 * Set the pre-configured queries, which are identified by a query identifier and can be
70 * query execution time.
72 * @param queries the complete list of configured queries, mapping from query id to the
73 * query expression which may optionally contain tokens in the form ${token-name}.
92 * @param queryId Id of the query t
209 public abstract U query(final String type, R request, ODatabaseDocumentTx database) throws BadRequestException; method in class:ConfiguredQueries
[all...]
H A DQueries.java24 package org.forgerock.openidm.repo.orientdb.impl.query;
45 import org.forgerock.util.query.QueryFilter;
52 import com.orientechnologies.orient.core.sql.query.OSQLSynchQuery;
55 * Configured and add-hoc query support on OrientDB
107 * Set the pre-configured queries, which are identified by a query identifier and can be
111 * query execution time.
113 * @param queries the complete list of configured queries, mapping from query id to the
114 * query expression which may optionally contain tokens in the form ${token-name}.
118 // Query all IDs is a mandatory query, default it and allow override.
119 if (!queries.containsKey("query
162 public List<ODocument> query(final String type, QueryRequest request, final ODatabaseDocumentTx database) method in class:Queries
[all...]
H A DTokenHandler.java24 package org.forgerock.openidm.repo.orientdb.impl.query;
50 // The OpenIDM query token is of format ${token-name}
89 * Replaces a query string with tokens of format ${token-name} with the values from the
92 * @param queryString the query with tokens
94 * @return the query with all tokens replace with their found values
95 * @throws BadRequestException if token in the query is not in the passed parameters
113 throw new BadRequestException("Missing entry in params passed to query for token " + tokenKey);
162 * Replaces a query string with tokens of format ${token-name} with the
170 * @param queryString the query with OpenIDM format tokens ${token}
171 * @return the query wit
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/
H A DCTSPersistentStore.java23 import org.forgerock.openam.sm.datalayer.api.query.PartialToken;
159 * @param query Non null filters which will be combined logically using AND.
160 * @return total number of tokens deleted by query.
164 int delete(Map<CoreTokenField, Object> query) throws CoreTokenException; argument
167 * Performs a synchronous query against the persistent store using the provided TokenFilter.
169 * The filter is assembled by the TokenFilterBuilder which provides the options on how to turn the query being
177 * @throws CoreTokenException If there was any error whilst performing the query.
180 Collection<Token> query(TokenFilter filter) throws CoreTokenException; method in interface:CTSPersistentStore
183 * Performs a partial Token query against the store synchronously. That is, a query whic
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/impl/query/reaper/
H A DReaperConnection.java16 package org.forgerock.openam.cts.impl.query.reaper;
33 * of the connection that will be used for the paged query against the LDAP server.
58 * assigns this to the delegate implementation. If the query has been exhausted then
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/impl/queue/
H A DTaskDispatcher.java32 import org.forgerock.openam.sm.datalayer.api.query.PartialToken;
165 * Perform a query against the persistent store and signal the results to the
168 * Note: Because a query has no associated Token ID, this function will select
170 * multiple query operations will be performed by the same {@link org.forgerock.openam.sm.datalayer.impl.SeriesTaskExecutorThread}.
181 public void query(TokenFilter tokenFilter, ResultHandler<Collection<Token>, ?> handler) throws CoreTokenException { method in class:TaskDispatcher
184 taskExecutor.execute(null, taskFactory.query(tokenFilter, handler));
191 * Perform a query against the persistent store and signal the results to the
194 * Note: Because a query has no associated Token ID, this function will select
196 * multiple query operations will be performed by the same {@link org.forgerock.openam.sm.datalayer.impl.SeriesTaskExecutorThread}.
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/api/
H A DTokenStorageAdapter.java23 import org.forgerock.openam.sm.datalayer.api.query.PartialToken;
70 * Performs a full-token query using the provided filter.
73 * @param query The non null filter specification.
76 Collection<Token> query(T connection, TokenFilter query) throws DataLayerException; argument
79 * Performs a partial query using the provided filter.
82 * @param query The non null filter specification.
85 Collection<PartialToken> partialQuery(T connection, TokenFilter query) throws DataLayerException; argument
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/tasks/
H A DTaskFactory.java24 import org.forgerock.openam.sm.datalayer.api.query.PartialToken;
74 * Used to signal a query against the persistence store.
77 * @return Non null Token query Task.
79 public Task query(TokenFilter filter, ResultHandler<Collection<Token>, ?> handler) { method in class:TaskFactory
84 * Used to signal an attribute based query against the persistence store.
87 * @return Non null Token query Task.
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOAuthTokenStore.java31 import org.forgerock.util.query.QueryFilter;
134 * Queries for OAuth2 tokens based on the specified query parameters.
136 * @param query The query parameters.
137 * @return A JsonValue of the query results.
138 * @throws CoreTokenException If there is a problem performing the query.
140 public JsonValue query(QueryFilter<CoreTokenField> query) throws CoreTokenException { argument
141 Collection<Token> tokens = cts.query(new TokenFilterBuilder().withQuery(query)
[all...]
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DAggregateQuery.java39 public void setFirstQuery(Q1 query) { argument
40 this.firstQuery = query;
47 public void setSecondQuery(Q2 query) { argument
48 this.secondQuery = query;
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/resources/
H A DResourceSetStore.java26 import org.forgerock.util.query.QueryFilter;
91 * @param query The criteria of the query.
95 Set<ResourceSetDescription> query(QueryFilter<String> query) throws ServerException; argument
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/impl/query/reaper/
H A DReaperConnectionTest.java16 package org.forgerock.openam.cts.impl.query.reaper;
H A DReaperImplTest.java16 package org.forgerock.openam.cts.impl.query.reaper;
35 import org.forgerock.openam.sm.datalayer.api.query.QueryBuilder;
36 import org.forgerock.openam.sm.datalayer.api.query.QueryFactory;
40 import org.forgerock.util.query.QueryFilterVisitor;
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/session/query/impl/
H A DRemoteSessionQuery.java17 package org.forgerock.openam.core.rest.session.query.impl;
39 import org.forgerock.openam.core.rest.session.query.SessionQueryType;
58 * Creates an instance which is configured to query the given server.
68 * Generates a SessionRequest and uses this to query the remote server.
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/resources/
H A DResourceSetStore.java27 import org.forgerock.util.query.QueryFilter;
92 * @param query The criteria of the query.
96 Set<ResourceSetDescription> query(QueryFilter<String> query) throws ServerException; argument
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOAuthTokenStore.java31 import org.forgerock.util.query.QueryFilter;
137 * Queries for OAuth2 tokens based on the specified query parameters.
139 * @param query The query parameters.
140 * @return A JsonValue of the query results.
141 * @throws CoreTokenException If there is a problem performing the query.
143 public JsonValue query(QueryFilter<CoreTokenField> query) throws CoreTokenException { argument
144 Collection<Token> tokens = cts.query(new TokenFilterBuilder().withQuery(query)
[all...]
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/resources/
H A DOpenAMResourceSetStore.java36 import org.forgerock.util.query.QueryFilter;
84 query(QueryFilter.equalTo(ResourceSetTokenField.RESOURCE_SET_ID, resourceSetId));
130 public Set<ResourceSetDescription> query(QueryFilter<String> query) throws ServerException { argument
133 results = delegate.query(QueryFilter.and(query,
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DAggregateQuery.java39 public void setFirstQuery(Q1 query) { argument
40 this.firstQuery = query;
47 public void setSecondQuery(Q2 query) { argument
48 this.secondQuery = query;

Completed in 189 milliseconds

1234567891011