1 18 19 20 package sync4j.framework.core; 21 22 23 32 public final class Replace 33 extends ModificationCommand 34 implements java.io.Serializable { 35 36 38 public static String COMMAND_NAME = "Replace"; 39 40 42 45 protected Replace() {} 46 47 58 public Replace( 59 final CmdID cmdID , 60 final boolean noResp, 61 final Cred cred , 62 final Meta meta , 63 final Item[] items ) { 64 super(cmdID, meta, items); 65 66 this.noResp = (noResp) ? new Boolean (noResp) : null; 67 setCred(cred); 68 } 69 70 71 73 78 public String getName() { 79 return Replace.COMMAND_NAME; 80 } 81 } 82 | Popular Tags |