Searched defs:scope (Results 1 - 25 of 351) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/
H A DIDynamicMembership.java78 * Sets the search scope used to evaluate this dynamic group.
80 * @param scope Search scope for evaluating members of the group. Use one of
86 public void setSearchScope(int scope); argument
89 * Gets the search scope used to evaluate this dynamic group.
91 * @return search scope for evaluating members of the group
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DNoneResponseTypeHandler.java32 public Map.Entry<String, Token> handle(String tokenType, Set<String> scope, argument
H A DResponseTypeHandler.java39 * @param scope The requested scope.
53 Map.Entry<String, Token> handle(String tokenType, Set<String> scope, ResourceOwner resourceOwner, argument
H A DAuthorizationCodeResponseTypeHandler.java50 public Map.Entry<String, Token> handle(String tokenType, Set<String> scope, argument
56 final AuthorizationCode authorizationCode = tokenStore.createAuthorizationCode(scope, resourceOwner,
H A DGrantTypeAccessTokenGenerator.java39 String resourceOwnerId, String redirectUri, Set<String> scope, String validatedClaims,
44 resourceOwnerId, redirectUri, scope, request, validatedClaims);
48 authorizationCode, resourceOwnerId, clientId, redirectUri, scope, refreshToken, nonce, validatedClaims,
38 generateAccessToken(OAuth2ProviderSettings providerSettings, String grantType, String clientId, String resourceOwnerId, String redirectUri, Set<String> scope, String validatedClaims, String authorizationCode, String nonce, OAuth2Request request) argument
H A DScopeValidator.java30 * Provided as extension points to allow the OAuth2 provider to customise the requested scope of authorize,
40 * Provided as an extension point to allow the OAuth2 provider to customise the scope requested when authorization
44 * @param scope The requested scope.
46 * @return The updated scope used in the remaining OAuth2 process.
47 * @throws InvalidScopeException If the requested scope is invalid, unknown, or malformed.
50 Set<String> validateAuthorizationScope(ClientRegistration clientRegistration, Set<String> scope, argument
54 * Provided as an extension point to allow the OAuth2 provider to customise the scope requested when an access token
58 * @param scope The requested scope
64 validateAccessTokenScope(ClientRegistration clientRegistration, Set<String> scope, OAuth2Request request) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/internal/
H A DRequests.java62 * scope, and filter.
67 * @param scope
68 * The scope of the search.
76 * If the {@code name}, {@code scope}, or {@code filter} were
79 public static SearchRequest newSearchRequest(final DN name, final SearchScope scope, argument
82 Reject.ifNull(name, scope, filter);
83 final SearchRequest request = new SearchRequest(name, scope, filter);
92 * scope, and filter, decoded using the default schema.
97 * @param scope
98 * The scope o
116 newSearchRequest(final String name, final SearchScope scope, final String filter, final String... attributeDescriptions) argument
144 newSearchRequest(final String name, final SearchScope scope, final String filter) argument
163 newSearchRequest(final DN name, final SearchScope scope, final String filter) argument
178 newSearchRequest(final DN name, final SearchScope scope) argument
[all...]
/forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/
H A DOpenIDMResolverFactory.java152 * @param scope variable scope the function was called from
156 private String processClassDelegate(VariableScope scope, ClassDelegate delegate) { argument
165 language = (String) ((Expression) field.getValue()).getValue(scope);
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DScripts.java46 Object exec(Map<String, Object> scope) throws ScriptException { argument
49 b.putAll(scope);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DNoneResponseTypeHandler.java34 public Map.Entry<String, Token> handle(String tokenType, Set<String> scope, argument
H A DResponseTypeHandler.java39 * @param scope The requested scope.
53 Map.Entry<String, Token> handle(String tokenType, Set<String> scope, ResourceOwner resourceOwner, argument
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
H A DIDynamicMembership.java78 * Sets the search scope used to evaluate this dynamic group.
80 * @param scope Search scope for evaluating members of the group. Use one of
86 public void setSearchScope(int scope); argument
89 * Gets the search scope used to evaluate this dynamic group.
91 * @return search scope for evaluating members of the group
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DDynamicGroupMemberList.java75 // The search scope to use when filtering the set of group members.
76 private final SearchScope scope; field in class:DynamicGroupMemberList
109 * @param scope The scope that should be enforced for all entries to
118 DN baseDN, SearchScope scope,
127 if (scope == null)
129 this.scope = SearchScope.WHOLE_SUBTREE;
133 this.scope = scope;
117 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
H A DFilteredStaticGroupMemberList.java94 // The search scope to apply against the base DN for the member subset.
95 private SearchScope scope; field in class:FilteredStaticGroupMemberList
109 * be considered to match the base and scope criteria.
110 * @param scope The search scope to apply against the base DN when
117 DN baseDN, SearchScope scope,
129 if (scope == null)
131 this.scope = SearchScope.WHOLE_SUBTREE;
135 this.scope = scope;
116 FilteredStaticGroupMemberList(DN groupDN, Set<ByteString> memberDNs, DN baseDN, SearchScope scope, SearchFilter filter) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DDynamicGroupMemberList.java74 // The search scope to use when filtering the set of group members.
75 private final SearchScope scope; field in class:DynamicGroupMemberList
108 * @param scope The scope that should be enforced for all entries to
117 DN baseDN, SearchScope scope,
126 if (scope == null)
128 this.scope = SearchScope.WHOLE_SUBTREE;
132 this.scope = scope;
116 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
H A DFilteredStaticGroupMemberList.java93 // The search scope to apply against the base DN for the member subset.
94 private SearchScope scope; field in class:FilteredStaticGroupMemberList
108 * be considered to match the base and scope criteria.
109 * @param scope The search scope to apply against the base DN when
116 DN baseDN, SearchScope scope,
128 if (scope == null)
130 this.scope = SearchScope.WHOLE_SUBTREE;
134 this.scope = scope;
115 FilteredStaticGroupMemberList(DN groupDN, Set<ByteString> memberDNs, DN baseDN, SearchScope scope, SearchFilter filter) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DDynamicGroupMemberList.java75 // The search scope to use when filtering the set of group members.
76 private final SearchScope scope; field in class:DynamicGroupMemberList
109 * @param scope The scope that should be enforced for all entries to
118 DN baseDN, SearchScope scope,
127 if (scope == null)
129 this.scope = SearchScope.WHOLE_SUBTREE;
133 this.scope = scope;
117 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
H A DFilteredStaticGroupMemberList.java94 // The search scope to apply against the base DN for the member subset.
95 private SearchScope scope; field in class:FilteredStaticGroupMemberList
109 * be considered to match the base and scope criteria.
110 * @param scope The search scope to apply against the base DN when
117 DN baseDN, SearchScope scope,
129 if (scope == null)
131 this.scope = SearchScope.WHOLE_SUBTREE;
135 this.scope = scope;
116 FilteredStaticGroupMemberList(DN groupDN, Set<ByteString> memberDNs, DN baseDN, SearchScope scope, SearchFilter filter) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DDynamicGroupMemberList.java75 // The search scope to use when filtering the set of group members.
76 private final SearchScope scope; field in class:DynamicGroupMemberList
109 * @param scope The scope that should be enforced for all entries to
118 DN baseDN, SearchScope scope,
127 if (scope == null)
129 this.scope = SearchScope.WHOLE_SUBTREE;
133 this.scope = scope;
117 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
H A DFilteredStaticGroupMemberList.java94 // The search scope to apply against the base DN for the member subset.
95 private SearchScope scope; field in class:FilteredStaticGroupMemberList
109 * be considered to match the base and scope criteria.
110 * @param scope The search scope to apply against the base DN when
117 DN baseDN, SearchScope scope,
129 if (scope == null)
131 this.scope = SearchScope.WHOLE_SUBTREE;
135 this.scope = scope;
116 FilteredStaticGroupMemberList(DN groupDN, Set<ByteString> memberDNs, DN baseDN, SearchScope scope, SearchFilter filter) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DDynamicGroupMemberList.java74 // The search scope to use when filtering the set of group members.
75 private final SearchScope scope; field in class:DynamicGroupMemberList
108 * @param scope The scope that should be enforced for all entries to
117 DN baseDN, SearchScope scope,
126 if (scope == null)
128 this.scope = SearchScope.WHOLE_SUBTREE;
132 this.scope = scope;
116 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
H A DFilteredStaticGroupMemberList.java93 // The search scope to apply against the base DN for the member subset.
94 private SearchScope scope; field in class:FilteredStaticGroupMemberList
108 * be considered to match the base and scope criteria.
109 * @param scope The search scope to apply against the base DN when
116 DN baseDN, SearchScope scope,
128 if (scope == null)
130 this.scope = SearchScope.WHOLE_SUBTREE;
134 this.scope = scope;
115 FilteredStaticGroupMemberList(DN groupDN, Set<ByteString> memberDNs, DN baseDN, SearchScope scope, SearchFilter filter) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DDynamicGroupMemberList.java75 /** The search scope to use when filtering the set of group members. */
76 private final SearchScope scope; field in class:DynamicGroupMemberList
109 * @param scope The scope that should be enforced for all entries to
118 DN baseDN, SearchScope scope,
127 if (scope == null)
129 this.scope = SearchScope.WHOLE_SUBTREE;
133 this.scope = scope;
117 DynamicGroupMemberList(DN groupDN, Set<LDAPURL> memberURLs, DN baseDN, SearchScope scope, SearchFilter filter) argument
H A DFilteredStaticGroupMemberList.java78 /** The search scope to apply against the base DN for the member subset. */
79 private SearchScope scope; field in class:FilteredStaticGroupMemberList
91 * be considered to match the base and scope criteria.
92 * @param scope The search scope to apply against the base DN when
98 public FilteredStaticGroupMemberList(DN groupDN, Set<CompactDn> memberDNs, DN baseDN, SearchScope scope, argument
107 this.scope = scope != null ? scope : SearchScope.WHOLE_SUBTREE;
139 // based on base DN and scope
[all...]
/forgerock/openam-v13/openam-ldap-utils/src/main/java/org/forgerock/openam/ldap/
H A DLDAPRequests.java91 * @param scope the search scope.
96 public static SearchRequest newSearchRequest(final DN name, final SearchScope scope, final Filter filter, argument
98 return Requests.newSearchRequest(name, scope, filter, attributeDescriptions)
109 * @param scope the search scope.
114 public static SearchRequest newSearchRequest(final String name, final SearchScope scope, final String filter, argument
116 return Requests.newSearchRequest(name, scope, filter, attributeDescriptions)
156 * @param scope the search scope
161 newSingleEntrySearchRequest(final String dn, final SearchScope scope, final String filter, final String... attributeDescriptions) argument
[all...]

Completed in 116 milliseconds

1234567891011>>