| File was renamed from opends/src/server/org/opends/server/replication/plugin/SynchroLDIFOutputStream.java |
| | |
| | | * 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; |
| | | } |