| | |
| | | import java.util.concurrent.atomic.AtomicLong; |
| | | |
| | | import static com.sun.opends.sdk.messages.Messages.*; |
| | | import static com.sun.opends.sdk.messages.Messages.ERR_ERROR_PARSING_ARGS; |
| | | import static com.sun.opends.sdk.tools.ToolConstants.*; |
| | | import static com.sun.opends.sdk.tools.ToolConstants.OPTION_LONG_BASEDN; |
| | | import static com.sun.opends.sdk.tools.ToolConstants.OPTION_SHORT_BASEDN; |
| | | import static com.sun.opends.sdk.tools.Utils.filterExitCode; |
| | | |
| | | /** |
| | |
| | | |
| | | private BooleanArgument verbose; |
| | | |
| | | private BooleanArgument scriptFriendly; |
| | | |
| | | |
| | | |
| | | |
| | |
| | | @Override |
| | | public boolean isScriptFriendly() |
| | | { |
| | | return false; |
| | | return scriptFriendly.isPresent(); |
| | | } |
| | | |
| | | |
| | |
| | | INFO_DESCRIPTION_VERBOSE.get()); |
| | | verbose.setPropertyName("verbose"); |
| | | argParser.addArgument(verbose); |
| | | |
| | | scriptFriendly = new BooleanArgument("scriptFriendly", 'S', |
| | | "scriptFriendly", INFO_DESCRIPTION_SCRIPT_FRIENDLY.get()); |
| | | scriptFriendly.setPropertyName("scriptFriendly"); |
| | | argParser.addArgument(scriptFriendly); |
| | | } |
| | | catch (final ArgumentException ae) |
| | | { |