| File was renamed from opends/src/server/org/opends/server/replication/plugin/SynchroLDIFInputStream.java |
| | |
| | | * This class creates an input stream that can be used to read entries generated |
| | | * by SynchroLDIF as if they were being read from another source like a file. |
| | | */ |
| | | public class SynchroLDIFInputStream |
| | | public class ReplLDIFInputStream |
| | | extends InputStream |
| | | { |
| | | // Indicates whether this input stream has been closed. |
| | | private boolean closed; |
| | | |
| | | // The synchronization domain associated to this import. |
| | | SynchronizationDomain domain; |
| | | // The domain associated to this import. |
| | | ReplicationDomain domain; |
| | | |
| | | /** |
| | | * Creates a new SynchroLDIFInputStream that will import entries |
| | | * Creates a new ReplLDIFInputStream that will import entries |
| | | * for a synchronzation domain. |
| | | * |
| | | * @param domain The synchronization domain |
| | | * @param domain The replication domain |
| | | */ |
| | | public SynchroLDIFInputStream(SynchronizationDomain domain) |
| | | public ReplLDIFInputStream(ReplicationDomain domain) |
| | | { |
| | | this.domain = domain; |
| | | closed = false; |
| | |
| | | throws IOException |
| | | { |
| | | // This method is not supposed to be called to make an LDIF import |
| | | // for synchronization. |
| | | // for replication. |
| | | throw new IOException("Not implemented"); |
| | | } |
| | | } |