| | |
| | | import org.opends.server.types.Entry; |
| | | import org.opends.server.types.LDIFImportConfig; |
| | | import org.opends.server.util.LDIFReader; |
| | | import org.opends.server.admin.std.server.JEBackendCfg; |
| | | import org.opends.server.admin.std.server.LocalDBBackendCfg; |
| | | |
| | | import java.util.concurrent.BlockingQueue; |
| | | import java.util.concurrent.atomic.AtomicLong; |
| | |
| | | /** |
| | | * The configuration of the destination backend. |
| | | */ |
| | | private JEBackendCfg config; |
| | | private LocalDBBackendCfg config; |
| | | |
| | | /** |
| | | * The requested LDIF import configuration. |
| | |
| | | * Set the configuration of the destination backend. |
| | | * @param config The destination backend configuration. |
| | | */ |
| | | public void setConfig(JEBackendCfg config) |
| | | public void setConfig(LocalDBBackendCfg config) |
| | | { |
| | | this.config = config; |
| | | } |
| | |
| | | * Get the configuration of the destination backend. |
| | | * @return The destination backend configuration. |
| | | */ |
| | | public JEBackendCfg getConfig() |
| | | public LocalDBBackendCfg getConfig() |
| | | { |
| | | return config; |
| | | } |