Uses of Class
org.forgerock.opendj.ldap.SearchScope
Packages that use SearchScope
Package
Description
This package contains utility methods to ease/unify development when using the OpenDJ LDAP SDK.
Classes and interfaces for core types including connections, entries, and
attributes.
Classes and interfaces for core LDAP requests/responses.
-
Uses of SearchScope in org.forgerock.openam.ldap
Methods in org.forgerock.openam.ldap that return SearchScopeModifier and TypeMethodDescriptionstatic SearchScopeLDAPUtils.getSearchScope(String scope, SearchScope defaultScope) Converts string representation of scope (as defined in the configuration) to the correspondingSearchScopeobject.Methods in org.forgerock.openam.ldap with parameters of type SearchScopeModifier and TypeMethodDescriptionstatic SearchScopeLDAPUtils.getSearchScope(String scope, SearchScope defaultScope) Converts string representation of scope (as defined in the configuration) to the correspondingSearchScopeobject. -
Uses of SearchScope in org.forgerock.opendj.ldap
Fields in org.forgerock.opendj.ldap declared as SearchScopeModifier and TypeFieldDescriptionstatic final SearchScopeSearchScope.BASE_OBJECTThe scope is constrained to the search base entry.static final SearchScopeSearchScope.SINGLE_LEVELThe scope is constrained to the immediate subordinates of the search base entry.static final SearchScopeSearchScope.SUBORDINATESThe scope is constrained to all the subordinates of the search base entry, but does not include the search base entry itself (as wholeSubtree does).static final SearchScopeSearchScope.WHOLE_SUBTREEThe scope is constrained to the search base entry and to all its subordinates.Methods in org.forgerock.opendj.ldap that return SearchScopeModifier and TypeMethodDescriptionLdapUrl.getScope()Returns the search scope associated with this LDAP URL.static SearchScopeSearchScope.valueOf(int intValue) Returns the search scope having the specified integer value as defined in RFC 4511 section 4.5.1.2.static SearchScopeReturns the search scope having the specified name as defined in RFC 4511 section 4.5.1.2.Methods in org.forgerock.opendj.ldap that return types with arguments of type SearchScopeModifier and TypeMethodDescriptionstatic List<SearchScope>SearchScope.values()Returns an unmodifiable list containing the set of available search scopes indexed on their integer value as defined in RFC 4511 section 4.5.1.2.Methods in org.forgerock.opendj.ldap with parameters of type SearchScopeModifier and TypeMethodDescriptionbooleanDn.isInScopeOf(String dn, SearchScope scope) Returnstrueif this DN matches the provided base DN and search scope.booleanDn.isInScopeOf(Dn dn, SearchScope scope) Returnstrueif this DN matches the provided base DN and search scope.AbstractConnection.search(String baseObject, SearchScope scope, String filter, String... attributeDescriptions) AbstractConnectionWrapper.search(String baseObject, SearchScope scope, String filter, String... attributeDescriptions) Searches the Directory Server using the provided search parameters.Connection.search(String baseObject, SearchScope scope, String filter, String... attributeDescriptions) Searches the Directory Server using the provided search parameters.AbstractConnection.searchSingleEntry(String baseObject, SearchScope scope, String filter, String... attributeDescriptions) AbstractConnectionWrapper.searchSingleEntry(String baseObject, SearchScope scope, String filter, String... attributeDescriptions) Searches the Directory Server for a single entry using the provided search parameters.Connection.searchSingleEntry(String baseObject, SearchScope scope, String filter, String... attributeDescriptions) Searches the Directory Server for a single entry using the provided search parameters.Constructors in org.forgerock.opendj.ldap with parameters of type SearchScope -
Uses of SearchScope in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return SearchScopeMethods in org.forgerock.opendj.ldap.messages with parameters of type SearchScopeModifier and TypeMethodDescriptionstatic SearchRequestRequests.newSearchRequest(String name, SearchScope scope) Creates a new search request using the provided distinguished name and scope.static SearchRequestRequests.newSearchRequest(String name, SearchScope scope, String filter, String... attributeDescriptions) Creates a new search request using the provided distinguished name, scope, and filter, decoded using the default schema.static SearchRequestRequests.newSearchRequest(Dn name, SearchScope scope) Creates a new search request using the provided distinguished name and scope.static SearchRequestRequests.newSearchRequest(Dn name, SearchScope scope, Filter filter, String... attributeDescriptions) Creates a new search request using the provided distinguished name, scope, and filter.static SearchRequestRequests.newSingleEntrySearchRequest(String name, SearchScope scope, String filter, String... attributeDescriptions) Creates a new search request for a single entry, using the provided distinguished name, scope, and filter, decoded using the default schema.static SearchRequestRequests.newSingleEntrySearchRequest(Dn name, SearchScope scope, Filter filter, String... attributeDescriptions) Creates a new search request for a single entry, using the provided distinguished name, scope, and filter.SearchRequest.setScope(SearchScope scope) Sets the scope of the search.