| | |
| | | BooleanArgument compressLDIF = null; |
| | | BooleanArgument displayUsage = null; |
| | | BooleanArgument encryptLDIF = null; |
| | | BooleanArgument excludeOperationalAttrs = null; |
| | | BooleanArgument signHash = null; |
| | | IntegerArgument wrapColumn = null; |
| | | StringArgument backendID = null; |
| | |
| | | argParser.addArgument(excludeFilterStrings); |
| | | |
| | | |
| | | excludeOperationalAttrs = |
| | | new BooleanArgument("excludeoperational", 'O', "excludeOperational", |
| | | MSGID_LDIFEXPORT_DESCRIPTION_EXCLUDE_OPERATIONAL); |
| | | argParser.addArgument(excludeOperationalAttrs); |
| | | |
| | | |
| | | wrapColumn = |
| | | new IntegerArgument("wrapcolumn", 'w', "wrapColumn", false, false, |
| | | true, "{wrapColumn}", 0, null, true, 0, false, 0, |
| | |
| | | exportConfig.setIncludeBranches(includeBranches); |
| | | exportConfig.setIncludeFilters(includeFilters); |
| | | exportConfig.setSignHash(signHash.isPresent()); |
| | | exportConfig.setIncludeOperationalAttributes( |
| | | (! excludeOperationalAttrs.isPresent())); |
| | | |
| | | // FIXME -- Should this be conditional? |
| | | exportConfig.setInvokeExportPlugins(true); |