| | |
| | | import org.opends.server.types.LDIFExportConfig; |
| | | import org.opends.server.types.LDIFImportConfig; |
| | | import org.opends.server.types.Operation; |
| | | import org.forgerock.opendj.ldap.ResultCode; |
| | | import org.opends.server.util.AddChangeRecordEntry; |
| | | import org.opends.server.util.ChangeRecordEntry; |
| | | import org.opends.server.util.DeleteChangeRecordEntry; |
| | |
| | | import static org.opends.server.util.ServerConstants.*; |
| | | import static org.opends.server.util.StaticUtils.*; |
| | | |
| | | |
| | | |
| | | /** |
| | | * This class defines an LDIF connection handler, which can be used to watch for |
| | | * new LDIF files to be placed in a specified directory. If a new LDIF file is |
| | |
| | | implements ConfigurationChangeListener<LDIFConnectionHandlerCfg>, |
| | | AlertGenerator |
| | | { |
| | | /** |
| | | * The debug log tracer for this class. |
| | | */ |
| | | /** The debug log tracer for this class. */ |
| | | private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass(); |
| | | |
| | | |
| | |
| | | File newLDIFDirectory = new File(configuration.getLDIFDirectory()); |
| | | this.ldifDirectory = newLDIFDirectory; |
| | | currentConfig = configuration; |
| | | return new ConfigChangeResult(ResultCode.SUCCESS, false); |
| | | return new ConfigChangeResult(); |
| | | } |
| | | |
| | | |