You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2015/11/05 21:41:16 UTC

[37/60] [abbrv] [partial] storm git commit: Release 2.0.4-SNAPSHOT

http://git-wip-us.apache.org/repos/asf/storm/blob/e935da91/jstorm-client/src/main/java/backtype/storm/generated/JavaObject.java
----------------------------------------------------------------------
diff --git a/jstorm-client/src/main/java/backtype/storm/generated/JavaObject.java b/jstorm-client/src/main/java/backtype/storm/generated/JavaObject.java
deleted file mode 100644
index f6fe430..0000000
--- a/jstorm-client/src/main/java/backtype/storm/generated/JavaObject.java
+++ /dev/null
@@ -1,463 +0,0 @@
-/**
- * Autogenerated by Thrift Compiler (0.7.0)
- *
- * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
- */
-package backtype.storm.generated;
-
-import org.apache.commons.lang.builder.HashCodeBuilder;
-import java.util.List;
-import java.util.ArrayList;
-import java.util.Map;
-import java.util.HashMap;
-import java.util.EnumMap;
-import java.util.Set;
-import java.util.HashSet;
-import java.util.EnumSet;
-import java.util.Collections;
-import java.util.BitSet;
-import java.nio.ByteBuffer;
-import java.util.Arrays;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class JavaObject implements org.apache.thrift7.TBase<JavaObject, JavaObject._Fields>, java.io.Serializable, Cloneable {
-  private static final org.apache.thrift7.protocol.TStruct STRUCT_DESC = new org.apache.thrift7.protocol.TStruct("JavaObject");
-
-  private static final org.apache.thrift7.protocol.TField FULL_CLASS_NAME_FIELD_DESC = new org.apache.thrift7.protocol.TField("full_class_name", org.apache.thrift7.protocol.TType.STRING, (short)1);
-  private static final org.apache.thrift7.protocol.TField ARGS_LIST_FIELD_DESC = new org.apache.thrift7.protocol.TField("args_list", org.apache.thrift7.protocol.TType.LIST, (short)2);
-
-  private String full_class_name; // required
-  private List<JavaObjectArg> args_list; // required
-
-  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
-  public enum _Fields implements org.apache.thrift7.TFieldIdEnum {
-    FULL_CLASS_NAME((short)1, "full_class_name"),
-    ARGS_LIST((short)2, "args_list");
-
-    private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
-
-    static {
-      for (_Fields field : EnumSet.allOf(_Fields.class)) {
-        byName.put(field.getFieldName(), field);
-      }
-    }
-
-    /**
-     * Find the _Fields constant that matches fieldId, or null if its not found.
-     */
-    public static _Fields findByThriftId(int fieldId) {
-      switch(fieldId) {
-        case 1: // FULL_CLASS_NAME
-          return FULL_CLASS_NAME;
-        case 2: // ARGS_LIST
-          return ARGS_LIST;
-        default:
-          return null;
-      }
-    }
-
-    /**
-     * Find the _Fields constant that matches fieldId, throwing an exception
-     * if it is not found.
-     */
-    public static _Fields findByThriftIdOrThrow(int fieldId) {
-      _Fields fields = findByThriftId(fieldId);
-      if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
-      return fields;
-    }
-
-    /**
-     * Find the _Fields constant that matches name, or null if its not found.
-     */
-    public static _Fields findByName(String name) {
-      return byName.get(name);
-    }
-
-    private final short _thriftId;
-    private final String _fieldName;
-
-    _Fields(short thriftId, String fieldName) {
-      _thriftId = thriftId;
-      _fieldName = fieldName;
-    }
-
-    public short getThriftFieldId() {
-      return _thriftId;
-    }
-
-    public String getFieldName() {
-      return _fieldName;
-    }
-  }
-
-  // isset id assignments
-
-  public static final Map<_Fields, org.apache.thrift7.meta_data.FieldMetaData> metaDataMap;
-  static {
-    Map<_Fields, org.apache.thrift7.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift7.meta_data.FieldMetaData>(_Fields.class);
-    tmpMap.put(_Fields.FULL_CLASS_NAME, new org.apache.thrift7.meta_data.FieldMetaData("full_class_name", org.apache.thrift7.TFieldRequirementType.REQUIRED, 
-        new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.STRING)));
-    tmpMap.put(_Fields.ARGS_LIST, new org.apache.thrift7.meta_data.FieldMetaData("args_list", org.apache.thrift7.TFieldRequirementType.REQUIRED, 
-        new org.apache.thrift7.meta_data.ListMetaData(org.apache.thrift7.protocol.TType.LIST, 
-            new org.apache.thrift7.meta_data.StructMetaData(org.apache.thrift7.protocol.TType.STRUCT, JavaObjectArg.class))));
-    metaDataMap = Collections.unmodifiableMap(tmpMap);
-    org.apache.thrift7.meta_data.FieldMetaData.addStructMetaDataMap(JavaObject.class, metaDataMap);
-  }
-
-  public JavaObject() {
-  }
-
-  public JavaObject(
-    String full_class_name,
-    List<JavaObjectArg> args_list)
-  {
-    this();
-    this.full_class_name = full_class_name;
-    this.args_list = args_list;
-  }
-
-  /**
-   * Performs a deep copy on <i>other</i>.
-   */
-  public JavaObject(JavaObject other) {
-    if (other.is_set_full_class_name()) {
-      this.full_class_name = other.full_class_name;
-    }
-    if (other.is_set_args_list()) {
-      List<JavaObjectArg> __this__args_list = new ArrayList<JavaObjectArg>();
-      for (JavaObjectArg other_element : other.args_list) {
-        __this__args_list.add(new JavaObjectArg(other_element));
-      }
-      this.args_list = __this__args_list;
-    }
-  }
-
-  public JavaObject deepCopy() {
-    return new JavaObject(this);
-  }
-
-  @Override
-  public void clear() {
-    this.full_class_name = null;
-    this.args_list = null;
-  }
-
-  public String get_full_class_name() {
-    return this.full_class_name;
-  }
-
-  public void set_full_class_name(String full_class_name) {
-    this.full_class_name = full_class_name;
-  }
-
-  public void unset_full_class_name() {
-    this.full_class_name = null;
-  }
-
-  /** Returns true if field full_class_name is set (has been assigned a value) and false otherwise */
-  public boolean is_set_full_class_name() {
-    return this.full_class_name != null;
-  }
-
-  public void set_full_class_name_isSet(boolean value) {
-    if (!value) {
-      this.full_class_name = null;
-    }
-  }
-
-  public int get_args_list_size() {
-    return (this.args_list == null) ? 0 : this.args_list.size();
-  }
-
-  public java.util.Iterator<JavaObjectArg> get_args_list_iterator() {
-    return (this.args_list == null) ? null : this.args_list.iterator();
-  }
-
-  public void add_to_args_list(JavaObjectArg elem) {
-    if (this.args_list == null) {
-      this.args_list = new ArrayList<JavaObjectArg>();
-    }
-    this.args_list.add(elem);
-  }
-
-  public List<JavaObjectArg> get_args_list() {
-    return this.args_list;
-  }
-
-  public void set_args_list(List<JavaObjectArg> args_list) {
-    this.args_list = args_list;
-  }
-
-  public void unset_args_list() {
-    this.args_list = null;
-  }
-
-  /** Returns true if field args_list is set (has been assigned a value) and false otherwise */
-  public boolean is_set_args_list() {
-    return this.args_list != null;
-  }
-
-  public void set_args_list_isSet(boolean value) {
-    if (!value) {
-      this.args_list = null;
-    }
-  }
-
-  public void setFieldValue(_Fields field, Object value) {
-    switch (field) {
-    case FULL_CLASS_NAME:
-      if (value == null) {
-        unset_full_class_name();
-      } else {
-        set_full_class_name((String)value);
-      }
-      break;
-
-    case ARGS_LIST:
-      if (value == null) {
-        unset_args_list();
-      } else {
-        set_args_list((List<JavaObjectArg>)value);
-      }
-      break;
-
-    }
-  }
-
-  public Object getFieldValue(_Fields field) {
-    switch (field) {
-    case FULL_CLASS_NAME:
-      return get_full_class_name();
-
-    case ARGS_LIST:
-      return get_args_list();
-
-    }
-    throw new IllegalStateException();
-  }
-
-  /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
-  public boolean isSet(_Fields field) {
-    if (field == null) {
-      throw new IllegalArgumentException();
-    }
-
-    switch (field) {
-    case FULL_CLASS_NAME:
-      return is_set_full_class_name();
-    case ARGS_LIST:
-      return is_set_args_list();
-    }
-    throw new IllegalStateException();
-  }
-
-  @Override
-  public boolean equals(Object that) {
-    if (that == null)
-      return false;
-    if (that instanceof JavaObject)
-      return this.equals((JavaObject)that);
-    return false;
-  }
-
-  public boolean equals(JavaObject that) {
-    if (that == null)
-      return false;
-
-    boolean this_present_full_class_name = true && this.is_set_full_class_name();
-    boolean that_present_full_class_name = true && that.is_set_full_class_name();
-    if (this_present_full_class_name || that_present_full_class_name) {
-      if (!(this_present_full_class_name && that_present_full_class_name))
-        return false;
-      if (!this.full_class_name.equals(that.full_class_name))
-        return false;
-    }
-
-    boolean this_present_args_list = true && this.is_set_args_list();
-    boolean that_present_args_list = true && that.is_set_args_list();
-    if (this_present_args_list || that_present_args_list) {
-      if (!(this_present_args_list && that_present_args_list))
-        return false;
-      if (!this.args_list.equals(that.args_list))
-        return false;
-    }
-
-    return true;
-  }
-
-  @Override
-  public int hashCode() {
-    HashCodeBuilder builder = new HashCodeBuilder();
-
-    boolean present_full_class_name = true && (is_set_full_class_name());
-    builder.append(present_full_class_name);
-    if (present_full_class_name)
-      builder.append(full_class_name);
-
-    boolean present_args_list = true && (is_set_args_list());
-    builder.append(present_args_list);
-    if (present_args_list)
-      builder.append(args_list);
-
-    return builder.toHashCode();
-  }
-
-  public int compareTo(JavaObject other) {
-    if (!getClass().equals(other.getClass())) {
-      return getClass().getName().compareTo(other.getClass().getName());
-    }
-
-    int lastComparison = 0;
-    JavaObject typedOther = (JavaObject)other;
-
-    lastComparison = Boolean.valueOf(is_set_full_class_name()).compareTo(typedOther.is_set_full_class_name());
-    if (lastComparison != 0) {
-      return lastComparison;
-    }
-    if (is_set_full_class_name()) {
-      lastComparison = org.apache.thrift7.TBaseHelper.compareTo(this.full_class_name, typedOther.full_class_name);
-      if (lastComparison != 0) {
-        return lastComparison;
-      }
-    }
-    lastComparison = Boolean.valueOf(is_set_args_list()).compareTo(typedOther.is_set_args_list());
-    if (lastComparison != 0) {
-      return lastComparison;
-    }
-    if (is_set_args_list()) {
-      lastComparison = org.apache.thrift7.TBaseHelper.compareTo(this.args_list, typedOther.args_list);
-      if (lastComparison != 0) {
-        return lastComparison;
-      }
-    }
-    return 0;
-  }
-
-  public _Fields fieldForId(int fieldId) {
-    return _Fields.findByThriftId(fieldId);
-  }
-
-  public void read(org.apache.thrift7.protocol.TProtocol iprot) throws org.apache.thrift7.TException {
-    org.apache.thrift7.protocol.TField field;
-    iprot.readStructBegin();
-    while (true)
-    {
-      field = iprot.readFieldBegin();
-      if (field.type == org.apache.thrift7.protocol.TType.STOP) { 
-        break;
-      }
-      switch (field.id) {
-        case 1: // FULL_CLASS_NAME
-          if (field.type == org.apache.thrift7.protocol.TType.STRING) {
-            this.full_class_name = iprot.readString();
-          } else { 
-            org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-          }
-          break;
-        case 2: // ARGS_LIST
-          if (field.type == org.apache.thrift7.protocol.TType.LIST) {
-            {
-              org.apache.thrift7.protocol.TList _list0 = iprot.readListBegin();
-              this.args_list = new ArrayList<JavaObjectArg>(_list0.size);
-              for (int _i1 = 0; _i1 < _list0.size; ++_i1)
-              {
-                JavaObjectArg _elem2; // required
-                _elem2 = new JavaObjectArg();
-                _elem2.read(iprot);
-                this.args_list.add(_elem2);
-              }
-              iprot.readListEnd();
-            }
-          } else { 
-            org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-          }
-          break;
-        default:
-          org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-      }
-      iprot.readFieldEnd();
-    }
-    iprot.readStructEnd();
-    validate();
-  }
-
-  public void write(org.apache.thrift7.protocol.TProtocol oprot) throws org.apache.thrift7.TException {
-    validate();
-
-    oprot.writeStructBegin(STRUCT_DESC);
-    if (this.full_class_name != null) {
-      oprot.writeFieldBegin(FULL_CLASS_NAME_FIELD_DESC);
-      oprot.writeString(this.full_class_name);
-      oprot.writeFieldEnd();
-    }
-    if (this.args_list != null) {
-      oprot.writeFieldBegin(ARGS_LIST_FIELD_DESC);
-      {
-        oprot.writeListBegin(new org.apache.thrift7.protocol.TList(org.apache.thrift7.protocol.TType.STRUCT, this.args_list.size()));
-        for (JavaObjectArg _iter3 : this.args_list)
-        {
-          _iter3.write(oprot);
-        }
-        oprot.writeListEnd();
-      }
-      oprot.writeFieldEnd();
-    }
-    oprot.writeFieldStop();
-    oprot.writeStructEnd();
-  }
-
-  @Override
-  public String toString() {
-    StringBuilder sb = new StringBuilder("JavaObject(");
-    boolean first = true;
-
-    sb.append("full_class_name:");
-    if (this.full_class_name == null) {
-      sb.append("null");
-    } else {
-      sb.append(this.full_class_name);
-    }
-    first = false;
-    if (!first) sb.append(", ");
-    sb.append("args_list:");
-    if (this.args_list == null) {
-      sb.append("null");
-    } else {
-      sb.append(this.args_list);
-    }
-    first = false;
-    sb.append(")");
-    return sb.toString();
-  }
-
-  public void validate() throws org.apache.thrift7.TException {
-    // check for required fields
-    if (!is_set_full_class_name()) {
-      throw new org.apache.thrift7.protocol.TProtocolException("Required field 'full_class_name' is unset! Struct:" + toString());
-    }
-
-    if (!is_set_args_list()) {
-      throw new org.apache.thrift7.protocol.TProtocolException("Required field 'args_list' is unset! Struct:" + toString());
-    }
-
-  }
-
-  private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
-    try {
-      write(new org.apache.thrift7.protocol.TCompactProtocol(new org.apache.thrift7.transport.TIOStreamTransport(out)));
-    } catch (org.apache.thrift7.TException te) {
-      throw new java.io.IOException(te);
-    }
-  }
-
-  private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
-    try {
-      read(new org.apache.thrift7.protocol.TCompactProtocol(new org.apache.thrift7.transport.TIOStreamTransport(in)));
-    } catch (org.apache.thrift7.TException te) {
-      throw new java.io.IOException(te);
-    }
-  }
-
-}
-

http://git-wip-us.apache.org/repos/asf/storm/blob/e935da91/jstorm-client/src/main/java/backtype/storm/generated/JavaObjectArg.java
----------------------------------------------------------------------
diff --git a/jstorm-client/src/main/java/backtype/storm/generated/JavaObjectArg.java b/jstorm-client/src/main/java/backtype/storm/generated/JavaObjectArg.java
deleted file mode 100644
index c9f6381..0000000
--- a/jstorm-client/src/main/java/backtype/storm/generated/JavaObjectArg.java
+++ /dev/null
@@ -1,532 +0,0 @@
-/**
- * Autogenerated by Thrift Compiler (0.7.0)
- *
- * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
- */
-package backtype.storm.generated;
-
-import org.apache.commons.lang.builder.HashCodeBuilder;
-import java.util.List;
-import java.util.ArrayList;
-import java.util.Map;
-import java.util.HashMap;
-import java.util.EnumMap;
-import java.util.Set;
-import java.util.HashSet;
-import java.util.EnumSet;
-import java.util.Collections;
-import java.util.BitSet;
-import java.nio.ByteBuffer;
-import java.util.Arrays;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class JavaObjectArg extends org.apache.thrift7.TUnion<JavaObjectArg, JavaObjectArg._Fields> {
-  private static final org.apache.thrift7.protocol.TStruct STRUCT_DESC = new org.apache.thrift7.protocol.TStruct("JavaObjectArg");
-  private static final org.apache.thrift7.protocol.TField INT_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("int_arg", org.apache.thrift7.protocol.TType.I32, (short)1);
-  private static final org.apache.thrift7.protocol.TField LONG_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("long_arg", org.apache.thrift7.protocol.TType.I64, (short)2);
-  private static final org.apache.thrift7.protocol.TField STRING_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("string_arg", org.apache.thrift7.protocol.TType.STRING, (short)3);
-  private static final org.apache.thrift7.protocol.TField BOOL_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("bool_arg", org.apache.thrift7.protocol.TType.BOOL, (short)4);
-  private static final org.apache.thrift7.protocol.TField BINARY_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("binary_arg", org.apache.thrift7.protocol.TType.STRING, (short)5);
-  private static final org.apache.thrift7.protocol.TField DOUBLE_ARG_FIELD_DESC = new org.apache.thrift7.protocol.TField("double_arg", org.apache.thrift7.protocol.TType.DOUBLE, (short)6);
-
-  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
-  public enum _Fields implements org.apache.thrift7.TFieldIdEnum {
-    INT_ARG((short)1, "int_arg"),
-    LONG_ARG((short)2, "long_arg"),
-    STRING_ARG((short)3, "string_arg"),
-    BOOL_ARG((short)4, "bool_arg"),
-    BINARY_ARG((short)5, "binary_arg"),
-    DOUBLE_ARG((short)6, "double_arg");
-
-    private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
-
-    static {
-      for (_Fields field : EnumSet.allOf(_Fields.class)) {
-        byName.put(field.getFieldName(), field);
-      }
-    }
-
-    /**
-     * Find the _Fields constant that matches fieldId, or null if its not found.
-     */
-    public static _Fields findByThriftId(int fieldId) {
-      switch(fieldId) {
-        case 1: // INT_ARG
-          return INT_ARG;
-        case 2: // LONG_ARG
-          return LONG_ARG;
-        case 3: // STRING_ARG
-          return STRING_ARG;
-        case 4: // BOOL_ARG
-          return BOOL_ARG;
-        case 5: // BINARY_ARG
-          return BINARY_ARG;
-        case 6: // DOUBLE_ARG
-          return DOUBLE_ARG;
-        default:
-          return null;
-      }
-    }
-
-    /**
-     * Find the _Fields constant that matches fieldId, throwing an exception
-     * if it is not found.
-     */
-    public static _Fields findByThriftIdOrThrow(int fieldId) {
-      _Fields fields = findByThriftId(fieldId);
-      if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
-      return fields;
-    }
-
-    /**
-     * Find the _Fields constant that matches name, or null if its not found.
-     */
-    public static _Fields findByName(String name) {
-      return byName.get(name);
-    }
-
-    private final short _thriftId;
-    private final String _fieldName;
-
-    _Fields(short thriftId, String fieldName) {
-      _thriftId = thriftId;
-      _fieldName = fieldName;
-    }
-
-    public short getThriftFieldId() {
-      return _thriftId;
-    }
-
-    public String getFieldName() {
-      return _fieldName;
-    }
-  }
-
-  public static final Map<_Fields, org.apache.thrift7.meta_data.FieldMetaData> metaDataMap;
-  static {
-    Map<_Fields, org.apache.thrift7.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift7.meta_data.FieldMetaData>(_Fields.class);
-    tmpMap.put(_Fields.INT_ARG, new org.apache.thrift7.meta_data.FieldMetaData("int_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, 
-        new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.I32)));
-    tmpMap.put(_Fields.LONG_ARG, new org.apache.thrift7.meta_data.FieldMetaData("long_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, 
-        new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.I64)));
-    tmpMap.put(_Fields.STRING_ARG, new org.apache.thrift7.meta_data.FieldMetaData("string_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, 
-        new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.STRING)));
-    tmpMap.put(_Fields.BOOL_ARG, new org.apache.thrift7.meta_data.FieldMetaData("bool_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, 
-        new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.BOOL)));
-    tmpMap.put(_Fields.BINARY_ARG, new org.apache.thrift7.meta_data.FieldMetaData("binary_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, 
-        new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.STRING        , true)));
-    tmpMap.put(_Fields.DOUBLE_ARG, new org.apache.thrift7.meta_data.FieldMetaData("double_arg", org.apache.thrift7.TFieldRequirementType.DEFAULT, 
-        new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.DOUBLE)));
-    metaDataMap = Collections.unmodifiableMap(tmpMap);
-    org.apache.thrift7.meta_data.FieldMetaData.addStructMetaDataMap(JavaObjectArg.class, metaDataMap);
-  }
-
-  public JavaObjectArg() {
-    super();
-  }
-
-  public JavaObjectArg(_Fields setField, Object value) {
-    super(setField, value);
-  }
-
-  public JavaObjectArg(JavaObjectArg other) {
-    super(other);
-  }
-  public JavaObjectArg deepCopy() {
-    return new JavaObjectArg(this);
-  }
-
-  public static JavaObjectArg int_arg(int value) {
-    JavaObjectArg x = new JavaObjectArg();
-    x.set_int_arg(value);
-    return x;
-  }
-
-  public static JavaObjectArg long_arg(long value) {
-    JavaObjectArg x = new JavaObjectArg();
-    x.set_long_arg(value);
-    return x;
-  }
-
-  public static JavaObjectArg string_arg(String value) {
-    JavaObjectArg x = new JavaObjectArg();
-    x.set_string_arg(value);
-    return x;
-  }
-
-  public static JavaObjectArg bool_arg(boolean value) {
-    JavaObjectArg x = new JavaObjectArg();
-    x.set_bool_arg(value);
-    return x;
-  }
-
-  public static JavaObjectArg binary_arg(ByteBuffer value) {
-    JavaObjectArg x = new JavaObjectArg();
-    x.set_binary_arg(value);
-    return x;
-  }
-
-  public static JavaObjectArg binary_arg(byte[] value) {
-    JavaObjectArg x = new JavaObjectArg();
-    x.set_binary_arg(ByteBuffer.wrap(value));
-    return x;
-  }
-
-  public static JavaObjectArg double_arg(double value) {
-    JavaObjectArg x = new JavaObjectArg();
-    x.set_double_arg(value);
-    return x;
-  }
-
-
-  @Override
-  protected void checkType(_Fields setField, Object value) throws ClassCastException {
-    switch (setField) {
-      case INT_ARG:
-        if (value instanceof Integer) {
-          break;
-        }
-        throw new ClassCastException("Was expecting value of type Integer for field 'int_arg', but got " + value.getClass().getSimpleName());
-      case LONG_ARG:
-        if (value instanceof Long) {
-          break;
-        }
-        throw new ClassCastException("Was expecting value of type Long for field 'long_arg', but got " + value.getClass().getSimpleName());
-      case STRING_ARG:
-        if (value instanceof String) {
-          break;
-        }
-        throw new ClassCastException("Was expecting value of type String for field 'string_arg', but got " + value.getClass().getSimpleName());
-      case BOOL_ARG:
-        if (value instanceof Boolean) {
-          break;
-        }
-        throw new ClassCastException("Was expecting value of type Boolean for field 'bool_arg', but got " + value.getClass().getSimpleName());
-      case BINARY_ARG:
-        if (value instanceof ByteBuffer) {
-          break;
-        }
-        throw new ClassCastException("Was expecting value of type ByteBuffer for field 'binary_arg', but got " + value.getClass().getSimpleName());
-      case DOUBLE_ARG:
-        if (value instanceof Double) {
-          break;
-        }
-        throw new ClassCastException("Was expecting value of type Double for field 'double_arg', but got " + value.getClass().getSimpleName());
-      default:
-        throw new IllegalArgumentException("Unknown field id " + setField);
-    }
-  }
-
-  @Override
-  protected Object readValue(org.apache.thrift7.protocol.TProtocol iprot, org.apache.thrift7.protocol.TField field) throws org.apache.thrift7.TException {
-    _Fields setField = _Fields.findByThriftId(field.id);
-    if (setField != null) {
-      switch (setField) {
-        case INT_ARG:
-          if (field.type == INT_ARG_FIELD_DESC.type) {
-            Integer int_arg;
-            int_arg = iprot.readI32();
-            return int_arg;
-          } else {
-            org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-            return null;
-          }
-        case LONG_ARG:
-          if (field.type == LONG_ARG_FIELD_DESC.type) {
-            Long long_arg;
-            long_arg = iprot.readI64();
-            return long_arg;
-          } else {
-            org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-            return null;
-          }
-        case STRING_ARG:
-          if (field.type == STRING_ARG_FIELD_DESC.type) {
-            String string_arg;
-            string_arg = iprot.readString();
-            return string_arg;
-          } else {
-            org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-            return null;
-          }
-        case BOOL_ARG:
-          if (field.type == BOOL_ARG_FIELD_DESC.type) {
-            Boolean bool_arg;
-            bool_arg = iprot.readBool();
-            return bool_arg;
-          } else {
-            org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-            return null;
-          }
-        case BINARY_ARG:
-          if (field.type == BINARY_ARG_FIELD_DESC.type) {
-            ByteBuffer binary_arg;
-            binary_arg = iprot.readBinary();
-            return binary_arg;
-          } else {
-            org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-            return null;
-          }
-        case DOUBLE_ARG:
-          if (field.type == DOUBLE_ARG_FIELD_DESC.type) {
-            Double double_arg;
-            double_arg = iprot.readDouble();
-            return double_arg;
-          } else {
-            org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-            return null;
-          }
-        default:
-          throw new IllegalStateException("setField wasn't null, but didn't match any of the case statements!");
-      }
-    } else {
-      org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-      return null;
-    }
-  }
-
-  @Override
-  protected void writeValue(org.apache.thrift7.protocol.TProtocol oprot) throws org.apache.thrift7.TException {
-    switch (setField_) {
-      case INT_ARG:
-        Integer int_arg = (Integer)value_;
-        oprot.writeI32(int_arg);
-        return;
-      case LONG_ARG:
-        Long long_arg = (Long)value_;
-        oprot.writeI64(long_arg);
-        return;
-      case STRING_ARG:
-        String string_arg = (String)value_;
-        oprot.writeString(string_arg);
-        return;
-      case BOOL_ARG:
-        Boolean bool_arg = (Boolean)value_;
-        oprot.writeBool(bool_arg);
-        return;
-      case BINARY_ARG:
-        ByteBuffer binary_arg = (ByteBuffer)value_;
-        oprot.writeBinary(binary_arg);
-        return;
-      case DOUBLE_ARG:
-        Double double_arg = (Double)value_;
-        oprot.writeDouble(double_arg);
-        return;
-      default:
-        throw new IllegalStateException("Cannot write union with unknown field " + setField_);
-    }
-  }
-
-  @Override
-  protected org.apache.thrift7.protocol.TField getFieldDesc(_Fields setField) {
-    switch (setField) {
-      case INT_ARG:
-        return INT_ARG_FIELD_DESC;
-      case LONG_ARG:
-        return LONG_ARG_FIELD_DESC;
-      case STRING_ARG:
-        return STRING_ARG_FIELD_DESC;
-      case BOOL_ARG:
-        return BOOL_ARG_FIELD_DESC;
-      case BINARY_ARG:
-        return BINARY_ARG_FIELD_DESC;
-      case DOUBLE_ARG:
-        return DOUBLE_ARG_FIELD_DESC;
-      default:
-        throw new IllegalArgumentException("Unknown field id " + setField);
-    }
-  }
-
-  @Override
-  protected org.apache.thrift7.protocol.TStruct getStructDesc() {
-    return STRUCT_DESC;
-  }
-
-  @Override
-  protected _Fields enumForId(short id) {
-    return _Fields.findByThriftIdOrThrow(id);
-  }
-
-  public _Fields fieldForId(int fieldId) {
-    return _Fields.findByThriftId(fieldId);
-  }
-
-
-  public int get_int_arg() {
-    if (getSetField() == _Fields.INT_ARG) {
-      return (Integer)getFieldValue();
-    } else {
-      throw new RuntimeException("Cannot get field 'int_arg' because union is currently set to " + getFieldDesc(getSetField()).name);
-    }
-  }
-
-  public void set_int_arg(int value) {
-    setField_ = _Fields.INT_ARG;
-    value_ = value;
-  }
-
-  public long get_long_arg() {
-    if (getSetField() == _Fields.LONG_ARG) {
-      return (Long)getFieldValue();
-    } else {
-      throw new RuntimeException("Cannot get field 'long_arg' because union is currently set to " + getFieldDesc(getSetField()).name);
-    }
-  }
-
-  public void set_long_arg(long value) {
-    setField_ = _Fields.LONG_ARG;
-    value_ = value;
-  }
-
-  public String get_string_arg() {
-    if (getSetField() == _Fields.STRING_ARG) {
-      return (String)getFieldValue();
-    } else {
-      throw new RuntimeException("Cannot get field 'string_arg' because union is currently set to " + getFieldDesc(getSetField()).name);
-    }
-  }
-
-  public void set_string_arg(String value) {
-    if (value == null) throw new NullPointerException();
-    setField_ = _Fields.STRING_ARG;
-    value_ = value;
-  }
-
-  public boolean get_bool_arg() {
-    if (getSetField() == _Fields.BOOL_ARG) {
-      return (Boolean)getFieldValue();
-    } else {
-      throw new RuntimeException("Cannot get field 'bool_arg' because union is currently set to " + getFieldDesc(getSetField()).name);
-    }
-  }
-
-  public void set_bool_arg(boolean value) {
-    setField_ = _Fields.BOOL_ARG;
-    value_ = value;
-  }
-
-  public byte[] get_binary_arg() {
-    set_binary_arg(org.apache.thrift7.TBaseHelper.rightSize(buffer_for_binary_arg()));
-    ByteBuffer b = buffer_for_binary_arg();
-    return b == null ? null : b.array();
-  }
-
-  public ByteBuffer buffer_for_binary_arg() {
-    if (getSetField() == _Fields.BINARY_ARG) {
-      return (ByteBuffer)getFieldValue();
-    } else {
-      throw new RuntimeException("Cannot get field 'binary_arg' because union is currently set to " + getFieldDesc(getSetField()).name);
-    }
-  }
-
-  public void set_binary_arg(byte[] value) {
-    set_binary_arg(ByteBuffer.wrap(value));
-  }
-
-  public void set_binary_arg(ByteBuffer value) {
-    if (value == null) throw new NullPointerException();
-    setField_ = _Fields.BINARY_ARG;
-    value_ = value;
-  }
-
-  public double get_double_arg() {
-    if (getSetField() == _Fields.DOUBLE_ARG) {
-      return (Double)getFieldValue();
-    } else {
-      throw new RuntimeException("Cannot get field 'double_arg' because union is currently set to " + getFieldDesc(getSetField()).name);
-    }
-  }
-
-  public void set_double_arg(double value) {
-    setField_ = _Fields.DOUBLE_ARG;
-    value_ = value;
-  }
-
-  public boolean is_set_int_arg() {
-    return setField_ == _Fields.INT_ARG;
-  }
-
-
-  public boolean is_set_long_arg() {
-    return setField_ == _Fields.LONG_ARG;
-  }
-
-
-  public boolean is_set_string_arg() {
-    return setField_ == _Fields.STRING_ARG;
-  }
-
-
-  public boolean is_set_bool_arg() {
-    return setField_ == _Fields.BOOL_ARG;
-  }
-
-
-  public boolean is_set_binary_arg() {
-    return setField_ == _Fields.BINARY_ARG;
-  }
-
-
-  public boolean is_set_double_arg() {
-    return setField_ == _Fields.DOUBLE_ARG;
-  }
-
-
-  public boolean equals(Object other) {
-    if (other instanceof JavaObjectArg) {
-      return equals((JavaObjectArg)other);
-    } else {
-      return false;
-    }
-  }
-
-  public boolean equals(JavaObjectArg other) {
-    return other != null && getSetField() == other.getSetField() && getFieldValue().equals(other.getFieldValue());
-  }
-
-  @Override
-  public int compareTo(JavaObjectArg other) {
-    int lastComparison = org.apache.thrift7.TBaseHelper.compareTo(getSetField(), other.getSetField());
-    if (lastComparison == 0) {
-      return org.apache.thrift7.TBaseHelper.compareTo(getFieldValue(), other.getFieldValue());
-    }
-    return lastComparison;
-  }
-
-
-  @Override
-  public int hashCode() {
-    HashCodeBuilder hcb = new HashCodeBuilder();
-    hcb.append(this.getClass().getName());
-    org.apache.thrift7.TFieldIdEnum setField = getSetField();
-    if (setField != null) {
-      hcb.append(setField.getThriftFieldId());
-      Object value = getFieldValue();
-      if (value instanceof org.apache.thrift7.TEnum) {
-        hcb.append(((org.apache.thrift7.TEnum)getFieldValue()).getValue());
-      } else {
-        hcb.append(value);
-      }
-    }
-    return hcb.toHashCode();
-  }
-  private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
-    try {
-      write(new org.apache.thrift7.protocol.TCompactProtocol(new org.apache.thrift7.transport.TIOStreamTransport(out)));
-    } catch (org.apache.thrift7.TException te) {
-      throw new java.io.IOException(te);
-    }
-  }
-
-
-  private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
-    try {
-      read(new org.apache.thrift7.protocol.TCompactProtocol(new org.apache.thrift7.transport.TIOStreamTransport(in)));
-    } catch (org.apache.thrift7.TException te) {
-      throw new java.io.IOException(te);
-    }
-  }
-
-
-}

http://git-wip-us.apache.org/repos/asf/storm/blob/e935da91/jstorm-client/src/main/java/backtype/storm/generated/KillOptions.java
----------------------------------------------------------------------
diff --git a/jstorm-client/src/main/java/backtype/storm/generated/KillOptions.java b/jstorm-client/src/main/java/backtype/storm/generated/KillOptions.java
deleted file mode 100644
index cf07150..0000000
--- a/jstorm-client/src/main/java/backtype/storm/generated/KillOptions.java
+++ /dev/null
@@ -1,320 +0,0 @@
-/**
- * Autogenerated by Thrift Compiler (0.7.0)
- *
- * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
- */
-package backtype.storm.generated;
-
-import org.apache.commons.lang.builder.HashCodeBuilder;
-import java.util.List;
-import java.util.ArrayList;
-import java.util.Map;
-import java.util.HashMap;
-import java.util.EnumMap;
-import java.util.Set;
-import java.util.HashSet;
-import java.util.EnumSet;
-import java.util.Collections;
-import java.util.BitSet;
-import java.nio.ByteBuffer;
-import java.util.Arrays;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class KillOptions implements org.apache.thrift7.TBase<KillOptions, KillOptions._Fields>, java.io.Serializable, Cloneable {
-  private static final org.apache.thrift7.protocol.TStruct STRUCT_DESC = new org.apache.thrift7.protocol.TStruct("KillOptions");
-
-  private static final org.apache.thrift7.protocol.TField WAIT_SECS_FIELD_DESC = new org.apache.thrift7.protocol.TField("wait_secs", org.apache.thrift7.protocol.TType.I32, (short)1);
-
-  private int wait_secs; // required
-
-  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
-  public enum _Fields implements org.apache.thrift7.TFieldIdEnum {
-    WAIT_SECS((short)1, "wait_secs");
-
-    private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
-
-    static {
-      for (_Fields field : EnumSet.allOf(_Fields.class)) {
-        byName.put(field.getFieldName(), field);
-      }
-    }
-
-    /**
-     * Find the _Fields constant that matches fieldId, or null if its not found.
-     */
-    public static _Fields findByThriftId(int fieldId) {
-      switch(fieldId) {
-        case 1: // WAIT_SECS
-          return WAIT_SECS;
-        default:
-          return null;
-      }
-    }
-
-    /**
-     * Find the _Fields constant that matches fieldId, throwing an exception
-     * if it is not found.
-     */
-    public static _Fields findByThriftIdOrThrow(int fieldId) {
-      _Fields fields = findByThriftId(fieldId);
-      if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
-      return fields;
-    }
-
-    /**
-     * Find the _Fields constant that matches name, or null if its not found.
-     */
-    public static _Fields findByName(String name) {
-      return byName.get(name);
-    }
-
-    private final short _thriftId;
-    private final String _fieldName;
-
-    _Fields(short thriftId, String fieldName) {
-      _thriftId = thriftId;
-      _fieldName = fieldName;
-    }
-
-    public short getThriftFieldId() {
-      return _thriftId;
-    }
-
-    public String getFieldName() {
-      return _fieldName;
-    }
-  }
-
-  // isset id assignments
-  private static final int __WAIT_SECS_ISSET_ID = 0;
-  private BitSet __isset_bit_vector = new BitSet(1);
-
-  public static final Map<_Fields, org.apache.thrift7.meta_data.FieldMetaData> metaDataMap;
-  static {
-    Map<_Fields, org.apache.thrift7.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift7.meta_data.FieldMetaData>(_Fields.class);
-    tmpMap.put(_Fields.WAIT_SECS, new org.apache.thrift7.meta_data.FieldMetaData("wait_secs", org.apache.thrift7.TFieldRequirementType.OPTIONAL, 
-        new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.I32)));
-    metaDataMap = Collections.unmodifiableMap(tmpMap);
-    org.apache.thrift7.meta_data.FieldMetaData.addStructMetaDataMap(KillOptions.class, metaDataMap);
-  }
-
-  public KillOptions() {
-  }
-
-  /**
-   * Performs a deep copy on <i>other</i>.
-   */
-  public KillOptions(KillOptions other) {
-    __isset_bit_vector.clear();
-    __isset_bit_vector.or(other.__isset_bit_vector);
-    this.wait_secs = other.wait_secs;
-  }
-
-  public KillOptions deepCopy() {
-    return new KillOptions(this);
-  }
-
-  @Override
-  public void clear() {
-    set_wait_secs_isSet(false);
-    this.wait_secs = 0;
-  }
-
-  public int get_wait_secs() {
-    return this.wait_secs;
-  }
-
-  public void set_wait_secs(int wait_secs) {
-    this.wait_secs = wait_secs;
-    set_wait_secs_isSet(true);
-  }
-
-  public void unset_wait_secs() {
-    __isset_bit_vector.clear(__WAIT_SECS_ISSET_ID);
-  }
-
-  /** Returns true if field wait_secs is set (has been assigned a value) and false otherwise */
-  public boolean is_set_wait_secs() {
-    return __isset_bit_vector.get(__WAIT_SECS_ISSET_ID);
-  }
-
-  public void set_wait_secs_isSet(boolean value) {
-    __isset_bit_vector.set(__WAIT_SECS_ISSET_ID, value);
-  }
-
-  public void setFieldValue(_Fields field, Object value) {
-    switch (field) {
-    case WAIT_SECS:
-      if (value == null) {
-        unset_wait_secs();
-      } else {
-        set_wait_secs((Integer)value);
-      }
-      break;
-
-    }
-  }
-
-  public Object getFieldValue(_Fields field) {
-    switch (field) {
-    case WAIT_SECS:
-      return Integer.valueOf(get_wait_secs());
-
-    }
-    throw new IllegalStateException();
-  }
-
-  /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
-  public boolean isSet(_Fields field) {
-    if (field == null) {
-      throw new IllegalArgumentException();
-    }
-
-    switch (field) {
-    case WAIT_SECS:
-      return is_set_wait_secs();
-    }
-    throw new IllegalStateException();
-  }
-
-  @Override
-  public boolean equals(Object that) {
-    if (that == null)
-      return false;
-    if (that instanceof KillOptions)
-      return this.equals((KillOptions)that);
-    return false;
-  }
-
-  public boolean equals(KillOptions that) {
-    if (that == null)
-      return false;
-
-    boolean this_present_wait_secs = true && this.is_set_wait_secs();
-    boolean that_present_wait_secs = true && that.is_set_wait_secs();
-    if (this_present_wait_secs || that_present_wait_secs) {
-      if (!(this_present_wait_secs && that_present_wait_secs))
-        return false;
-      if (this.wait_secs != that.wait_secs)
-        return false;
-    }
-
-    return true;
-  }
-
-  @Override
-  public int hashCode() {
-    HashCodeBuilder builder = new HashCodeBuilder();
-
-    boolean present_wait_secs = true && (is_set_wait_secs());
-    builder.append(present_wait_secs);
-    if (present_wait_secs)
-      builder.append(wait_secs);
-
-    return builder.toHashCode();
-  }
-
-  public int compareTo(KillOptions other) {
-    if (!getClass().equals(other.getClass())) {
-      return getClass().getName().compareTo(other.getClass().getName());
-    }
-
-    int lastComparison = 0;
-    KillOptions typedOther = (KillOptions)other;
-
-    lastComparison = Boolean.valueOf(is_set_wait_secs()).compareTo(typedOther.is_set_wait_secs());
-    if (lastComparison != 0) {
-      return lastComparison;
-    }
-    if (is_set_wait_secs()) {
-      lastComparison = org.apache.thrift7.TBaseHelper.compareTo(this.wait_secs, typedOther.wait_secs);
-      if (lastComparison != 0) {
-        return lastComparison;
-      }
-    }
-    return 0;
-  }
-
-  public _Fields fieldForId(int fieldId) {
-    return _Fields.findByThriftId(fieldId);
-  }
-
-  public void read(org.apache.thrift7.protocol.TProtocol iprot) throws org.apache.thrift7.TException {
-    org.apache.thrift7.protocol.TField field;
-    iprot.readStructBegin();
-    while (true)
-    {
-      field = iprot.readFieldBegin();
-      if (field.type == org.apache.thrift7.protocol.TType.STOP) { 
-        break;
-      }
-      switch (field.id) {
-        case 1: // WAIT_SECS
-          if (field.type == org.apache.thrift7.protocol.TType.I32) {
-            this.wait_secs = iprot.readI32();
-            set_wait_secs_isSet(true);
-          } else { 
-            org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-          }
-          break;
-        default:
-          org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-      }
-      iprot.readFieldEnd();
-    }
-    iprot.readStructEnd();
-    validate();
-  }
-
-  public void write(org.apache.thrift7.protocol.TProtocol oprot) throws org.apache.thrift7.TException {
-    validate();
-
-    oprot.writeStructBegin(STRUCT_DESC);
-    if (is_set_wait_secs()) {
-      oprot.writeFieldBegin(WAIT_SECS_FIELD_DESC);
-      oprot.writeI32(this.wait_secs);
-      oprot.writeFieldEnd();
-    }
-    oprot.writeFieldStop();
-    oprot.writeStructEnd();
-  }
-
-  @Override
-  public String toString() {
-    StringBuilder sb = new StringBuilder("KillOptions(");
-    boolean first = true;
-
-    if (is_set_wait_secs()) {
-      sb.append("wait_secs:");
-      sb.append(this.wait_secs);
-      first = false;
-    }
-    sb.append(")");
-    return sb.toString();
-  }
-
-  public void validate() throws org.apache.thrift7.TException {
-    // check for required fields
-  }
-
-  private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
-    try {
-      write(new org.apache.thrift7.protocol.TCompactProtocol(new org.apache.thrift7.transport.TIOStreamTransport(out)));
-    } catch (org.apache.thrift7.TException te) {
-      throw new java.io.IOException(te);
-    }
-  }
-
-  private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
-    try {
-      // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
-      __isset_bit_vector = new BitSet(1);
-      read(new org.apache.thrift7.protocol.TCompactProtocol(new org.apache.thrift7.transport.TIOStreamTransport(in)));
-    } catch (org.apache.thrift7.TException te) {
-      throw new java.io.IOException(te);
-    }
-  }
-
-}
-

http://git-wip-us.apache.org/repos/asf/storm/blob/e935da91/jstorm-client/src/main/java/backtype/storm/generated/MonitorOptions.java
----------------------------------------------------------------------
diff --git a/jstorm-client/src/main/java/backtype/storm/generated/MonitorOptions.java b/jstorm-client/src/main/java/backtype/storm/generated/MonitorOptions.java
deleted file mode 100644
index fa0adf3..0000000
--- a/jstorm-client/src/main/java/backtype/storm/generated/MonitorOptions.java
+++ /dev/null
@@ -1,320 +0,0 @@
-/**
- * Autogenerated by Thrift Compiler (0.7.0)
- *
- * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
- */
-package backtype.storm.generated;
-
-import org.apache.commons.lang.builder.HashCodeBuilder;
-import java.util.List;
-import java.util.ArrayList;
-import java.util.Map;
-import java.util.HashMap;
-import java.util.EnumMap;
-import java.util.Set;
-import java.util.HashSet;
-import java.util.EnumSet;
-import java.util.Collections;
-import java.util.BitSet;
-import java.nio.ByteBuffer;
-import java.util.Arrays;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class MonitorOptions implements org.apache.thrift7.TBase<MonitorOptions, MonitorOptions._Fields>, java.io.Serializable, Cloneable {
-  private static final org.apache.thrift7.protocol.TStruct STRUCT_DESC = new org.apache.thrift7.protocol.TStruct("MonitorOptions");
-
-  private static final org.apache.thrift7.protocol.TField IS_ENABLE_FIELD_DESC = new org.apache.thrift7.protocol.TField("isEnable", org.apache.thrift7.protocol.TType.BOOL, (short)1);
-
-  private boolean isEnable; // required
-
-  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
-  public enum _Fields implements org.apache.thrift7.TFieldIdEnum {
-    IS_ENABLE((short)1, "isEnable");
-
-    private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
-
-    static {
-      for (_Fields field : EnumSet.allOf(_Fields.class)) {
-        byName.put(field.getFieldName(), field);
-      }
-    }
-
-    /**
-     * Find the _Fields constant that matches fieldId, or null if its not found.
-     */
-    public static _Fields findByThriftId(int fieldId) {
-      switch(fieldId) {
-        case 1: // IS_ENABLE
-          return IS_ENABLE;
-        default:
-          return null;
-      }
-    }
-
-    /**
-     * Find the _Fields constant that matches fieldId, throwing an exception
-     * if it is not found.
-     */
-    public static _Fields findByThriftIdOrThrow(int fieldId) {
-      _Fields fields = findByThriftId(fieldId);
-      if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
-      return fields;
-    }
-
-    /**
-     * Find the _Fields constant that matches name, or null if its not found.
-     */
-    public static _Fields findByName(String name) {
-      return byName.get(name);
-    }
-
-    private final short _thriftId;
-    private final String _fieldName;
-
-    _Fields(short thriftId, String fieldName) {
-      _thriftId = thriftId;
-      _fieldName = fieldName;
-    }
-
-    public short getThriftFieldId() {
-      return _thriftId;
-    }
-
-    public String getFieldName() {
-      return _fieldName;
-    }
-  }
-
-  // isset id assignments
-  private static final int __ISENABLE_ISSET_ID = 0;
-  private BitSet __isset_bit_vector = new BitSet(1);
-
-  public static final Map<_Fields, org.apache.thrift7.meta_data.FieldMetaData> metaDataMap;
-  static {
-    Map<_Fields, org.apache.thrift7.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift7.meta_data.FieldMetaData>(_Fields.class);
-    tmpMap.put(_Fields.IS_ENABLE, new org.apache.thrift7.meta_data.FieldMetaData("isEnable", org.apache.thrift7.TFieldRequirementType.OPTIONAL, 
-        new org.apache.thrift7.meta_data.FieldValueMetaData(org.apache.thrift7.protocol.TType.BOOL)));
-    metaDataMap = Collections.unmodifiableMap(tmpMap);
-    org.apache.thrift7.meta_data.FieldMetaData.addStructMetaDataMap(MonitorOptions.class, metaDataMap);
-  }
-
-  public MonitorOptions() {
-  }
-
-  /**
-   * Performs a deep copy on <i>other</i>.
-   */
-  public MonitorOptions(MonitorOptions other) {
-    __isset_bit_vector.clear();
-    __isset_bit_vector.or(other.__isset_bit_vector);
-    this.isEnable = other.isEnable;
-  }
-
-  public MonitorOptions deepCopy() {
-    return new MonitorOptions(this);
-  }
-
-  @Override
-  public void clear() {
-    set_isEnable_isSet(false);
-    this.isEnable = false;
-  }
-
-  public boolean is_isEnable() {
-    return this.isEnable;
-  }
-
-  public void set_isEnable(boolean isEnable) {
-    this.isEnable = isEnable;
-    set_isEnable_isSet(true);
-  }
-
-  public void unset_isEnable() {
-    __isset_bit_vector.clear(__ISENABLE_ISSET_ID);
-  }
-
-  /** Returns true if field isEnable is set (has been assigned a value) and false otherwise */
-  public boolean is_set_isEnable() {
-    return __isset_bit_vector.get(__ISENABLE_ISSET_ID);
-  }
-
-  public void set_isEnable_isSet(boolean value) {
-    __isset_bit_vector.set(__ISENABLE_ISSET_ID, value);
-  }
-
-  public void setFieldValue(_Fields field, Object value) {
-    switch (field) {
-    case IS_ENABLE:
-      if (value == null) {
-        unset_isEnable();
-      } else {
-        set_isEnable((Boolean)value);
-      }
-      break;
-
-    }
-  }
-
-  public Object getFieldValue(_Fields field) {
-    switch (field) {
-    case IS_ENABLE:
-      return Boolean.valueOf(is_isEnable());
-
-    }
-    throw new IllegalStateException();
-  }
-
-  /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
-  public boolean isSet(_Fields field) {
-    if (field == null) {
-      throw new IllegalArgumentException();
-    }
-
-    switch (field) {
-    case IS_ENABLE:
-      return is_set_isEnable();
-    }
-    throw new IllegalStateException();
-  }
-
-  @Override
-  public boolean equals(Object that) {
-    if (that == null)
-      return false;
-    if (that instanceof MonitorOptions)
-      return this.equals((MonitorOptions)that);
-    return false;
-  }
-
-  public boolean equals(MonitorOptions that) {
-    if (that == null)
-      return false;
-
-    boolean this_present_isEnable = true && this.is_set_isEnable();
-    boolean that_present_isEnable = true && that.is_set_isEnable();
-    if (this_present_isEnable || that_present_isEnable) {
-      if (!(this_present_isEnable && that_present_isEnable))
-        return false;
-      if (this.isEnable != that.isEnable)
-        return false;
-    }
-
-    return true;
-  }
-
-  @Override
-  public int hashCode() {
-    HashCodeBuilder builder = new HashCodeBuilder();
-
-    boolean present_isEnable = true && (is_set_isEnable());
-    builder.append(present_isEnable);
-    if (present_isEnable)
-      builder.append(isEnable);
-
-    return builder.toHashCode();
-  }
-
-  public int compareTo(MonitorOptions other) {
-    if (!getClass().equals(other.getClass())) {
-      return getClass().getName().compareTo(other.getClass().getName());
-    }
-
-    int lastComparison = 0;
-    MonitorOptions typedOther = (MonitorOptions)other;
-
-    lastComparison = Boolean.valueOf(is_set_isEnable()).compareTo(typedOther.is_set_isEnable());
-    if (lastComparison != 0) {
-      return lastComparison;
-    }
-    if (is_set_isEnable()) {
-      lastComparison = org.apache.thrift7.TBaseHelper.compareTo(this.isEnable, typedOther.isEnable);
-      if (lastComparison != 0) {
-        return lastComparison;
-      }
-    }
-    return 0;
-  }
-
-  public _Fields fieldForId(int fieldId) {
-    return _Fields.findByThriftId(fieldId);
-  }
-
-  public void read(org.apache.thrift7.protocol.TProtocol iprot) throws org.apache.thrift7.TException {
-    org.apache.thrift7.protocol.TField field;
-    iprot.readStructBegin();
-    while (true)
-    {
-      field = iprot.readFieldBegin();
-      if (field.type == org.apache.thrift7.protocol.TType.STOP) { 
-        break;
-      }
-      switch (field.id) {
-        case 1: // IS_ENABLE
-          if (field.type == org.apache.thrift7.protocol.TType.BOOL) {
-            this.isEnable = iprot.readBool();
-            set_isEnable_isSet(true);
-          } else { 
-            org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-          }
-          break;
-        default:
-          org.apache.thrift7.protocol.TProtocolUtil.skip(iprot, field.type);
-      }
-      iprot.readFieldEnd();
-    }
-    iprot.readStructEnd();
-    validate();
-  }
-
-  public void write(org.apache.thrift7.protocol.TProtocol oprot) throws org.apache.thrift7.TException {
-    validate();
-
-    oprot.writeStructBegin(STRUCT_DESC);
-    if (is_set_isEnable()) {
-      oprot.writeFieldBegin(IS_ENABLE_FIELD_DESC);
-      oprot.writeBool(this.isEnable);
-      oprot.writeFieldEnd();
-    }
-    oprot.writeFieldStop();
-    oprot.writeStructEnd();
-  }
-
-  @Override
-  public String toString() {
-    StringBuilder sb = new StringBuilder("MonitorOptions(");
-    boolean first = true;
-
-    if (is_set_isEnable()) {
-      sb.append("isEnable:");
-      sb.append(this.isEnable);
-      first = false;
-    }
-    sb.append(")");
-    return sb.toString();
-  }
-
-  public void validate() throws org.apache.thrift7.TException {
-    // check for required fields
-  }
-
-  private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
-    try {
-      write(new org.apache.thrift7.protocol.TCompactProtocol(new org.apache.thrift7.transport.TIOStreamTransport(out)));
-    } catch (org.apache.thrift7.TException te) {
-      throw new java.io.IOException(te);
-    }
-  }
-
-  private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException {
-    try {
-      // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
-      __isset_bit_vector = new BitSet(1);
-      read(new org.apache.thrift7.protocol.TCompactProtocol(new org.apache.thrift7.transport.TIOStreamTransport(in)));
-    } catch (org.apache.thrift7.TException te) {
-      throw new java.io.IOException(te);
-    }
-  }
-
-}
-