public Command newInsert(
     Object object, String outIdentifier, boolean returnObject, String entryPoint) {
   InsertObjectCommand cmd = new InsertObjectCommand(object);
   cmd.setOutIdentifier(outIdentifier);
   cmd.setEntryPoint(entryPoint);
   cmd.setReturnObject(returnObject);
   return cmd;
 }
 public Command newInsert(Object object, String outIdentifier) {
   InsertObjectCommand cmd = new InsertObjectCommand(object);
   cmd.setOutIdentifier(outIdentifier);
   return cmd;
 }