| | |
| | | try |
| | | { |
| | | modifyOperation.addModification(new Modification(ModificationType.REPLACE, |
| | | nameAttr)); |
| | | nameAttr, true)); |
| | | } |
| | | catch (DirectoryException de) |
| | | { |
| | |
| | | try |
| | | { |
| | | modifyOperation.addModification(new Modification(ModificationType.REPLACE, |
| | | timeAttr)); |
| | | timeAttr, true)); |
| | | } |
| | | catch (DirectoryException de) |
| | | { |
| | |
| | | Attribute nameAttr = new Attribute(modifiersNameType, |
| | | OP_ATTR_MODIFIERS_NAME, nameValues); |
| | | modifyDNOperation.addModification(new Modification(ModificationType.REPLACE, |
| | | nameAttr)); |
| | | nameAttr, true)); |
| | | |
| | | |
| | | // Create the modifyTimestamp attribute. |
| | |
| | | Attribute timeAttr = new Attribute(modifyTimestampType, |
| | | OP_ATTR_MODIFY_TIMESTAMP, timeValues); |
| | | modifyDNOperation.addModification(new Modification(ModificationType.REPLACE, |
| | | timeAttr)); |
| | | timeAttr, true)); |
| | | |
| | | |
| | | // We shouldn't ever need to return a non-success result. |