1 18 19 package sync4j.framework.server; 20 21 import java.io.Serializable ; 22 23 29 public class ID implements Serializable { 30 31 private String idSpace = ""; 33 private int value = 0; 34 35 37 public ID(String idSpace) { 38 this.idSpace = idSpace; 39 } 40 41 public int getValue() { 42 return value; 43 } 44 45 public void setValue(int newValue) { 46 this.value = newValue; 47 } 48 49 public String getIdSpace() { 50 return idSpace; 51 } 52 53 public void setIdSpace(String idSpace) { 54 this.idSpace = idSpace; 55 } 56 57 } 58 | Popular Tags |