| | |
| | | |
| | | // Retrieves the eventual generation-ID |
| | | AttributeType typeNewValue = getSchema().getAttributeType(ATTR_TASK_SET_GENERATION_ID_NEW_VALUE); |
| | | List<Attribute> attrList = taskEntry.getAttribute(typeNewValue); |
| | | List<Attribute> attrList = taskEntry.getAllAttributes(typeNewValue); |
| | | if (!attrList.isEmpty()) |
| | | { |
| | | try |
| | |
| | | |
| | | // Retrieves the replication domain |
| | | AttributeType typeDomainBase = getSchema().getAttributeType(ATTR_TASK_SET_GENERATION_ID_DOMAIN_DN); |
| | | attrList = taskEntry.getAttribute(typeDomainBase); |
| | | attrList = taskEntry.getAllAttributes(typeDomainBase); |
| | | domainString = TaskUtils.getSingleValueString(attrList); |
| | | |
| | | try |