| | |
| | | BooleanArgument continueOnError; |
| | | BooleanArgument noop; |
| | | BooleanArgument showUsage; |
| | | BooleanArgument defaultAdd; |
| | | StringArgument assertionFilter; |
| | | StringArgument controlStr; |
| | | StringArgument filename; |
| | |
| | | continueOnError = continueOnErrorArgument(); |
| | | argParser.addArgument(continueOnError); |
| | | |
| | | /* Legacy argument in ForgeRock's OpenDJ to avoid failing when running older scripts. |
| | | The current behaviour is the opposite of Forgerock (defaultAdd false), |
| | | as we treat records with no changetype as add operations by default. */ |
| | | defaultAdd = defaultAddArgument(); |
| | | argParser.addArgument(defaultAdd); |
| | | |
| | | noop = noOpArgument(); |
| | | argParser.addArgument(noop); |
| | | |