| | |
| | | |
| | | import static org.opends.messages.UtilityMessages.*; |
| | | import static org.opends.server.util.StaticUtils.*; |
| | | import static org.opends.messages.BackendMessages.ERR_ADD_ENTRY_ALREADY_EXISTS; |
| | | import static org.opends.messages.BackendMessages.ERR_IMPORT_DUPLICATE_ENTRY; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.HashMap; |
| | |
| | | if (!addPending(entryDN)) |
| | | { |
| | | logger.trace("Skipping entry %s because the DN already exists.", entryDN); |
| | | logToSkipWriter(lines, ERR_ADD_ENTRY_ALREADY_EXISTS.get(entryDN)); |
| | | logToSkipWriter(lines, ERR_IMPORT_DUPLICATE_ENTRY.get(entryDN)); |
| | | continue; |
| | | } |
| | | } |