| File was renamed from opends/src/server/org/opends/server/replication/server/ChangelogData.java |
| | |
| | | import org.opends.server.replication.protocol.UpdateMessage; |
| | | |
| | | /** |
| | | * SuperClass of DatabaseEntry used for data stored in the Changelog Databases. |
| | | * SuperClass of DatabaseEntry used for data stored in the ReplicationServer |
| | | * Databases. |
| | | */ |
| | | public class ChangelogData extends DatabaseEntry |
| | | public class ReplicationData extends DatabaseEntry |
| | | { |
| | | /** |
| | | * Creates a new ChangelogData object from an UpdateMessage. |
| | | * @param change the UpdateMessage used to create the ChangelogData. |
| | | * Creates a new ReplicationData object from an UpdateMessage. |
| | | * @param change the UpdateMessage used to create the ReplicationData. |
| | | */ |
| | | public ChangelogData(UpdateMessage change) |
| | | public ReplicationData(UpdateMessage change) |
| | | { |
| | | this.setData(change.getBytes()); |
| | | } |