1 24 25 package org.objectweb.cjdbc.controller.virtualdatabase.protocol; 26 27 import java.io.Serializable ; 28 29 36 public class SetCheckpoint implements Serializable  37 { 38 private static final long serialVersionUID = -3457852098156752862L; 39 40 private String checkpointName; 41 42 47 public SetCheckpoint(String checkpointName) 48 { 49 this.checkpointName = checkpointName; 50 } 51 52 57 public String getCheckpointName() 58 { 59 return checkpointName; 60 } 61 } | Popular Tags |