1 18 19 20 package sync4j.framework.core; 21 22 29 public final class Copy 30 extends ModificationCommand 31 implements java.io.Serializable { 32 33 public static String COMMAND_NAME = "Copy"; 35 36 38 39 protected Copy() {} 40 41 52 public Copy(final CmdID cmdID, 53 final boolean noResp, 54 final Cred cred, 55 final Meta meta, 56 final Item[] items) { 57 super(cmdID, meta, items); 58 59 this.noResp = (noResp) ? new Boolean (noResp) : null; 60 setCred(cred); 61 } 62 63 65 70 public String getName() { 71 return Copy.COMMAND_NAME; 72 } 73 } | Popular Tags |