| | |
| | | Entry backupDirEntry = getBackupDirectoryEntry(entryDN); |
| | | |
| | | AttributeType t = getSchema().getAttributeType(ATTR_BACKUP_DIRECTORY_PATH); |
| | | List<Attribute> attrList = backupDirEntry.getAttribute(t); |
| | | List<Attribute> attrList = backupDirEntry.getAllAttributes(t); |
| | | for (ByteString v : attrList.get(0)) |
| | | { |
| | | try |
| | |
| | | |
| | | if (scope != SearchScope.SINGLE_LEVEL) |
| | | { |
| | | List<Attribute> attrList = backupDirEntry.getAttribute(backupPathType); |
| | | List<Attribute> attrList = backupDirEntry.getAllAttributes(backupPathType); |
| | | returnEntries(searchOperation, backupDirDN, filter, attrList); |
| | | } |
| | | } |
| | |
| | | if (scope != SearchScope.BASE_OBJECT) |
| | | { |
| | | AttributeType t = getSchema().getAttributeType(ATTR_BACKUP_DIRECTORY_PATH); |
| | | List<Attribute> attrList = backupDirEntry.getAttribute(t); |
| | | List<Attribute> attrList = backupDirEntry.getAllAttributes(t); |
| | | returnEntries(searchOperation, baseDN, filter, attrList); |
| | | } |
| | | } |