Uses of Class
org.ldaptive.SearchScope
-
Packages that use SearchScope Package Description org.ldaptive org.ldaptive.url -
-
Uses of SearchScope in org.ldaptive
Fields in org.ldaptive declared as SearchScope Modifier and Type Field Description private SearchScope
SearchRequest. searchScope
Search scope.Methods in org.ldaptive that return SearchScope Modifier and Type Method Description 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 SearchRequest(String dn, SearchScope scope, DerefAliases aliases, int size, Duration time, boolean types, Filter filter, String... attributes)
Creates a new search request. -
Uses of SearchScope in org.ldaptive.url
Fields in org.ldaptive.url declared as SearchScope Modifier and Type Field Description (package private) static SearchScope
Url. DEFAULT_SCOPE
Default scope, value isOBJECT
.private SearchScope
Url. scope
Search scope of the ldap url.Methods in org.ldaptive.url that return SearchScope Modifier and Type Method Description SearchScope
Url. getScope()
Returns the scope.private static SearchScope
DefaultUrlParser. parseScope(String scope)
Parses the supplied scope in string form.Constructors in org.ldaptive.url with parameters of type SearchScope Constructor Description Url(String scheme, String hostname, int port, String baseDn, String[] attributes, SearchScope scope, String filter)
Creates a new ldap url.
-