| | |
| | | List<Attribute> uuidList = entry.getAttribute(entryUUIDType); |
| | | if (uuidList != null) |
| | | { |
| | | return new LDIFPluginResult(); |
| | | return LDIFPluginResult.SUCCESS; |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | |
| | | // We shouldn't ever need to return a non-success result. |
| | | return new LDIFPluginResult(); |
| | | return LDIFPluginResult.SUCCESS; |
| | | } |
| | | |
| | | |
| | |
| | | List<Attribute> uuidList = operationalAttributes.get(entryUUIDType); |
| | | if (uuidList != null) |
| | | { |
| | | return new PreOperationPluginResult(); |
| | | return PreOperationPluginResult.SUCCESS; |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | // Add the attribute to the entry and return. |
| | | addOperation.setAttribute(entryUUIDType, uuidList); |
| | | return new PreOperationPluginResult(); |
| | | return PreOperationPluginResult.SUCCESS; |
| | | } |
| | | } |
| | | |