1 24 25 package org.objectweb.cjdbc.controller.virtualdatabase.protocol; 26 27 import java.io.Serializable ; 28 29 47 public class ReplicateLogEntries implements Serializable 48 { 49 private static final long serialVersionUID = -2813776509468770586L; 50 51 private String checkpointName; 52 private String dumpCheckpointName; 53 private long checkpointId; 54 55 65 public ReplicateLogEntries(String checkpointName, String dumpCheckpointName, 66 long checkpointId) 67 { 68 this.dumpCheckpointName = dumpCheckpointName; 69 this.checkpointName = checkpointName; 70 this.checkpointId = checkpointId; 71 } 72 73 78 public String getCheckpointName() 79 { 80 return checkpointName; 81 } 82 83 88 public String getDumpCheckpointName() 89 { 90 return dumpCheckpointName; 91 } 92 93 98 public long getCheckpointId() 99 { 100 return checkpointId; 101 } 102 } | Popular Tags |