| File was renamed from opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplLDIFInputStream.java |
| | |
| | | * |
| | | * Copyright 2006-2008 Sun Microsystems, Inc. |
| | | */ |
| | | package org.opends.server.replication.plugin; |
| | | package org.opends.server.replication.service; |
| | | |
| | | |
| | | |
| | |
| | | * 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 ReplLDIFInputStream |
| | | public class ReplInputStream |
| | | extends InputStream |
| | | { |
| | | // Indicates whether this input stream has been closed. |
| | |
| | | |
| | | /** |
| | | * Creates a new ReplLDIFInputStream that will import entries |
| | | * for a synchronzation domain. |
| | | * for a synchronization domain. |
| | | * |
| | | * @param domain The replication domain |
| | | */ |
| | | public ReplLDIFInputStream(ReplicationDomain domain) |
| | | public ReplInputStream(ReplicationDomain domain) |
| | | { |
| | | this.domain = domain; |
| | | closed = false; |
| | | closed = false; |
| | | } |
| | | |
| | | /** |