| | |
| | | abstract class AbstractLDIFStream |
| | | { |
| | | |
| | | final Set<AttributeDescription> excludeAttributes = |
| | | new HashSet<AttributeDescription>(); |
| | | final Set<AttributeDescription> excludeAttributes = new HashSet<AttributeDescription>(); |
| | | |
| | | boolean excludeOperationalAttributes = false; |
| | | |
| | | boolean excludeUserAttributes = false; |
| | | |
| | | final Set<AttributeDescription> includeAttributes = |
| | | new HashSet<AttributeDescription>(); |
| | | final Set<AttributeDescription> includeAttributes = new HashSet<AttributeDescription>(); |
| | | |
| | | Schema schema = Schema.getDefaultSchema(); |
| | | |
| | |
| | | |
| | | |
| | | final boolean isAttributeExcluded( |
| | | AttributeDescription attributeDescription) |
| | | final AttributeDescription attributeDescription) |
| | | { |
| | | if (!excludeAttributes.isEmpty() |
| | | && excludeAttributes.contains(attributeDescription)) |
| | |
| | | |
| | | |
| | | |
| | | final boolean isBranchExcluded(DN dn) |
| | | final boolean isBranchExcluded(final DN dn) |
| | | { |
| | | if (!excludeBranches.isEmpty()) |
| | | { |
| | |
| | | |
| | | |
| | | |
| | | final boolean isEntryExcluded(Entry entry) |
| | | final boolean isEntryExcluded(final Entry entry) |
| | | { |
| | | if (!excludeFilters.isEmpty()) |
| | | { |