mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

gbellato
25.35.2007 5349c97806bb0a00038d8dc3dee4254fad187649
opends/src/server/org/opends/server/replication/plugin/ReplLDIFInputStream.java
File was renamed from opends/src/server/org/opends/server/replication/plugin/SynchroLDIFInputStream.java
@@ -36,22 +36,22 @@
 * 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;
@@ -115,7 +115,7 @@
         throws IOException
  {
    // This method is not supposed to be called to make an LDIF import
    // for synchronization.
    // for replication.
    throw new IOException("Not implemented");
  }
}