/* See LICENSE for licensing and NOTICE for copyright. */ package org.ldaptive; /** * Enum to define the type of search scope. * * @author Middleware Services */ public enum SearchScope { /** object level search. */ OBJECT, /** one level search. */ ONELEVEL, /** subtree search. */ SUBTREE }