1 18 19 20 package sync4j.framework.core; 21 22 30 public final class Add 31 extends ModificationCommand 32 implements java.io.Serializable { 33 34 public static final String COMMAND_NAME = "Add"; 36 37 39 protected Add() {} 40 41 52 public Add(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 Add.COMMAND_NAME; 72 } 73 } 74 | Popular Tags |