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

gbellato
25.35.2007 5349c97806bb0a00038d8dc3dee4254fad187649
opends/src/server/org/opends/server/replication/plugin/ReplLDIFOutputStream.java
File was renamed from opends/src/server/org/opends/server/replication/plugin/SynchroLDIFOutputStream.java
@@ -34,19 +34,19 @@
 * This class creates an output stream that can be used to export entries
 * to a synchonization domain.
 */
public class SynchroLDIFOutputStream
public class ReplLDIFOutputStream
       extends OutputStream
{
  SynchronizationDomain domain;
  ReplicationDomain domain;
  String entryBuffer = "";
  /**
   * Creates a new SynchroLDIFOutputStream related to a synchronization
   * Creates a new ReplLDIFOutputStream related to a replication
   * domain.
   *
   * @param domain The synchronization domain
   * @param domain The replication domain
   */
  public SynchroLDIFOutputStream(SynchronizationDomain domain)
  public ReplLDIFOutputStream(ReplicationDomain domain)
  {
    this.domain = domain;
  }