| | |
| | | * CDDL HEADER END |
| | | * |
| | | * |
| | | * Portions Copyright 2006 Sun Microsystems, Inc. |
| | | * Portions Copyright 2006-2007 Sun Microsystems, Inc. |
| | | */ |
| | | package org.opends.server.tools; |
| | | |
| | |
| | | import org.opends.server.types.DereferencePolicy; |
| | | import org.opends.server.types.SearchScope; |
| | | |
| | | import static org.opends.server.loggers.Debug.*; |
| | | import static org.opends.server.messages.MessageHandler.*; |
| | | import static org.opends.server.messages.ToolMessages.*; |
| | | import static org.opends.server.types.DereferencePolicy.*; |
| | |
| | | */ |
| | | public class LDAPSearchOptions extends LDAPToolOptions |
| | | { |
| | | /** |
| | | * The fully-qualified name of this class for debugging purposes. |
| | | */ |
| | | private static final String CLASS_NAME = |
| | | "org.opends.server.tools.LDAPSearchOptions"; |
| | | |
| | | private DereferencePolicy dereferencePolicy = NEVER_DEREF_ALIASES; |
| | | private SearchScope searchScope = WHOLE_SUBTREE; |
| | |
| | | */ |
| | | public LDAPSearchOptions() |
| | | { |
| | | assert debugConstructor(CLASS_NAME); |
| | | } |
| | | |
| | | /** |