| | |
| | | private boolean compressLDIF; |
| | | private boolean encryptLDIF; |
| | | private boolean signHash; |
| | | private boolean includeOperationalAttributes; |
| | | private ArrayList<String> includeAttributeStrings; |
| | | private ArrayList<String> excludeAttributeStrings; |
| | | private ArrayList<String> includeFilterStrings; |
| | |
| | | AttributeType typeIncludeBranch; |
| | | AttributeType typeExcludeBranch; |
| | | AttributeType typeWrapColumn; |
| | | AttributeType typeIncludeOperationalAttributes; |
| | | |
| | | |
| | | typeLdifFile = |
| | |
| | | getAttributeType(ATTR_TASK_EXPORT_EXCLUDE_BRANCH, true); |
| | | typeWrapColumn = |
| | | getAttributeType(ATTR_TASK_EXPORT_WRAP_COLUMN, true); |
| | | typeIncludeOperationalAttributes = |
| | | getAttributeType(ATTR_TASK_EXPORT_INCLUDE_OPERATIONAL_ATTRIBUTES, true); |
| | | |
| | | |
| | | List<Attribute> attrList; |
| | |
| | | attrList = taskEntry.getAttribute(typeWrapColumn); |
| | | wrapColumn = TaskUtils.getSingleValueInteger(attrList, 0); |
| | | |
| | | attrList = taskEntry.getAttribute(typeIncludeOperationalAttributes); |
| | | includeOperationalAttributes = TaskUtils.getBoolean(attrList, true); |
| | | |
| | | } |
| | | |
| | | |
| | |
| | | exportConfig.setIncludeFilters(includeFilters); |
| | | exportConfig.setSignHash(signHash); |
| | | exportConfig.setWrapColumn(wrapColumn); |
| | | exportConfig.setIncludeOperationalAttributes(includeOperationalAttributes); |
| | | |
| | | // FIXME -- Should this be conditional? |
| | | exportConfig.setInvokeExportPlugins(true); |