Uses of Class
org.ldaptive.SearchScope
-
Packages that use SearchScope Package Description org.ldaptive -
-
Uses of SearchScope in org.ldaptive
Fields in org.ldaptive declared as SearchScope Modifier and Type Field Description protected static SearchScope
LdapURL. DEFAULT_SCOPE
Default scope, value isOBJECT
.private SearchScope
LdapURL. scope
Search scope of the ldap url.private SearchScope
SearchRequest. searchScope
Search scope.Methods in org.ldaptive that return SearchScope Modifier and Type Method Description SearchScope
LdapURL. getScope()
Returns the scope.SearchScope
SearchRequest. getSearchScope()
Gets the search scope.static SearchScope
SearchScope. valueOf(String name)
Returns the enum constant of this type with the specified name.static SearchScope[]
SearchScope. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.ldaptive with parameters of type SearchScope Modifier and Type Method Description SearchRequest.Builder
SearchRequest.Builder. scope(SearchScope scope)
Sets the search scope.void
SearchRequest. setSearchScope(SearchScope scope)
Sets the search scope.Constructors in org.ldaptive with parameters of type SearchScope Constructor Description LdapURL(String scheme, String hostname, int port, String baseDn, String[] attributes, SearchScope scope, String filter)
Creates a new ldap url.SearchRequest(String dn, SearchScope scope, DerefAliases aliases, int size, Duration time, boolean types, Filter filter, String... attributes)
Creates a new search request.
-