1 18 19 package sync4j.server.tools; 20 21 import sync4j.framework.protocol.IdGenerator; 22 import sync4j.framework.server.ID; 23 import sync4j.framework.server.store.*; 24 25 import sync4j.server.config.Configuration; 26 27 32 public final class GUIDGenerator extends IdSpaceGenerator 33 implements IdGenerator, java.io.Serializable { 34 35 private static final String ID_SPACE = "guid"; 37 38 40 42 47 public GUIDGenerator() { 48 super(ID_SPACE); 49 } 50 } 51 | Popular Tags |