You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by xi...@apache.org on 2017/07/18 07:44:58 UTC

[4/7] storm git commit: [STORM-2622] Add owner resource summary

http://git-wip-us.apache.org/repos/asf/storm/blob/e5d6d32b/storm-client/src/jvm/org/apache/storm/generated/Nimbus.java
----------------------------------------------------------------------
diff --git a/storm-client/src/jvm/org/apache/storm/generated/Nimbus.java b/storm-client/src/jvm/org/apache/storm/generated/Nimbus.java
index 22a7205..8ee5854 100644
--- a/storm-client/src/jvm/org/apache/storm/generated/Nimbus.java
+++ b/storm-client/src/jvm/org/apache/storm/generated/Nimbus.java
@@ -168,6 +168,8 @@ public class Nimbus {
 
     public TopologyHistoryInfo getTopologyHistory(String user) throws AuthorizationException, org.apache.thrift.TException;
 
+    public List<OwnerResourceSummary> getOwnerResourceSummaries(String owner) throws AuthorizationException, org.apache.thrift.TException;
+
   }
 
   public interface AsyncIface {
@@ -262,6 +264,8 @@ public class Nimbus {
 
     public void getTopologyHistory(String user, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
 
+    public void getOwnerResourceSummaries(String owner, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException;
+
   }
 
   public static class Client extends org.apache.thrift.TServiceClient implements Iface {
@@ -1492,6 +1496,32 @@ public class Nimbus {
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTopologyHistory failed: unknown result");
     }
 
+    public List<OwnerResourceSummary> getOwnerResourceSummaries(String owner) throws AuthorizationException, org.apache.thrift.TException
+    {
+      send_getOwnerResourceSummaries(owner);
+      return recv_getOwnerResourceSummaries();
+    }
+
+    public void send_getOwnerResourceSummaries(String owner) throws org.apache.thrift.TException
+    {
+      getOwnerResourceSummaries_args args = new getOwnerResourceSummaries_args();
+      args.set_owner(owner);
+      sendBase("getOwnerResourceSummaries", args);
+    }
+
+    public List<OwnerResourceSummary> recv_getOwnerResourceSummaries() throws AuthorizationException, org.apache.thrift.TException
+    {
+      getOwnerResourceSummaries_result result = new getOwnerResourceSummaries_result();
+      receiveBase(result, "getOwnerResourceSummaries");
+      if (result.is_set_success()) {
+        return result.success;
+      }
+      if (result.aze != null) {
+        throw result.aze;
+      }
+      throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getOwnerResourceSummaries failed: unknown result");
+    }
+
   }
   public static class AsyncClient extends org.apache.thrift.async.TAsyncClient implements AsyncIface {
     public static class Factory implements org.apache.thrift.async.TAsyncClientFactory<AsyncClient> {
@@ -3028,6 +3058,38 @@ public class Nimbus {
       }
     }
 
+    public void getOwnerResourceSummaries(String owner, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException {
+      checkReady();
+      getOwnerResourceSummaries_call method_call = new getOwnerResourceSummaries_call(owner, resultHandler, this, ___protocolFactory, ___transport);
+      this.___currentMethod = method_call;
+      ___manager.call(method_call);
+    }
+
+    public static class getOwnerResourceSummaries_call extends org.apache.thrift.async.TAsyncMethodCall {
+      private String owner;
+      public getOwnerResourceSummaries_call(String owner, org.apache.thrift.async.AsyncMethodCallback resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
+        super(client, protocolFactory, transport, resultHandler, false);
+        this.owner = owner;
+      }
+
+      public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
+        prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getOwnerResourceSummaries", org.apache.thrift.protocol.TMessageType.CALL, 0));
+        getOwnerResourceSummaries_args args = new getOwnerResourceSummaries_args();
+        args.set_owner(owner);
+        args.write(prot);
+        prot.writeMessageEnd();
+      }
+
+      public List<OwnerResourceSummary> getResult() throws AuthorizationException, org.apache.thrift.TException {
+        if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
+          throw new IllegalStateException("Method call not finished!");
+        }
+        org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
+        org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
+        return (new Client(prot)).recv_getOwnerResourceSummaries();
+      }
+    }
+
   }
 
   public static class Processor<I extends Iface> extends org.apache.thrift.TBaseProcessor<I> implements org.apache.thrift.TProcessor {
@@ -3086,6 +3148,7 @@ public class Nimbus {
       processMap.put("getTopology", new getTopology());
       processMap.put("getUserTopology", new getUserTopology());
       processMap.put("getTopologyHistory", new getTopologyHistory());
+      processMap.put("getOwnerResourceSummaries", new getOwnerResourceSummaries());
       return processMap;
     }
 
@@ -4206,6 +4269,30 @@ public class Nimbus {
       }
     }
 
+    public static class getOwnerResourceSummaries<I extends Iface> extends org.apache.thrift.ProcessFunction<I, getOwnerResourceSummaries_args> {
+      public getOwnerResourceSummaries() {
+        super("getOwnerResourceSummaries");
+      }
+
+      public getOwnerResourceSummaries_args getEmptyArgsInstance() {
+        return new getOwnerResourceSummaries_args();
+      }
+
+      protected boolean isOneway() {
+        return false;
+      }
+
+      public getOwnerResourceSummaries_result getResult(I iface, getOwnerResourceSummaries_args args) throws org.apache.thrift.TException {
+        getOwnerResourceSummaries_result result = new getOwnerResourceSummaries_result();
+        try {
+          result.success = iface.getOwnerResourceSummaries(args.owner);
+        } catch (AuthorizationException aze) {
+          result.aze = aze;
+        }
+        return result;
+      }
+    }
+
   }
 
   public static class AsyncProcessor<I extends AsyncIface> extends org.apache.thrift.TBaseAsyncProcessor<I> {
@@ -4264,6 +4351,7 @@ public class Nimbus {
       processMap.put("getTopology", new getTopology());
       processMap.put("getUserTopology", new getUserTopology());
       processMap.put("getTopologyHistory", new getTopologyHistory());
+      processMap.put("getOwnerResourceSummaries", new getOwnerResourceSummaries());
       return processMap;
     }
 
@@ -6925,6 +7013,63 @@ public class Nimbus {
       }
     }
 
+    public static class getOwnerResourceSummaries<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, getOwnerResourceSummaries_args, List<OwnerResourceSummary>> {
+      public getOwnerResourceSummaries() {
+        super("getOwnerResourceSummaries");
+      }
+
+      public getOwnerResourceSummaries_args getEmptyArgsInstance() {
+        return new getOwnerResourceSummaries_args();
+      }
+
+      public AsyncMethodCallback<List<OwnerResourceSummary>> getResultHandler(final AsyncFrameBuffer fb, final int seqid) {
+        final org.apache.thrift.AsyncProcessFunction fcall = this;
+        return new AsyncMethodCallback<List<OwnerResourceSummary>>() { 
+          public void onComplete(List<OwnerResourceSummary> o) {
+            getOwnerResourceSummaries_result result = new getOwnerResourceSummaries_result();
+            result.success = o;
+            try {
+              fcall.sendResponse(fb,result, org.apache.thrift.protocol.TMessageType.REPLY,seqid);
+              return;
+            } catch (Exception e) {
+              LOGGER.error("Exception writing to internal frame buffer", e);
+            }
+            fb.close();
+          }
+          public void onError(Exception e) {
+            byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
+            org.apache.thrift.TBase msg;
+            getOwnerResourceSummaries_result result = new getOwnerResourceSummaries_result();
+            if (e instanceof AuthorizationException) {
+                        result.aze = (AuthorizationException) e;
+                        result.set_aze_isSet(true);
+                        msg = result;
+            }
+             else 
+            {
+              msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
+              msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage());
+            }
+            try {
+              fcall.sendResponse(fb,msg,msgType,seqid);
+              return;
+            } catch (Exception ex) {
+              LOGGER.error("Exception writing to internal frame buffer", ex);
+            }
+            fb.close();
+          }
+        };
+      }
+
+      protected boolean isOneway() {
+        return false;
+      }
+
+      public void start(I iface, getOwnerResourceSummaries_args args, org.apache.thrift.async.AsyncMethodCallback<List<OwnerResourceSummary>> resultHandler) throws TException {
+        iface.getOwnerResourceSummaries(args.owner,resultHandler);
+      }
+    }
+
   }
 
   public static class submitTopology_args implements org.apache.thrift.TBase<submitTopology_args, submitTopology_args._Fields>, java.io.Serializable, Cloneable, Comparable<submitTopology_args>   {
@@ -43460,9 +43605,939 @@ public class Nimbus {
     public void validate() throws org.apache.thrift.TException {
       // check for required fields
       // check for sub-struct validity
-      if (success != null) {
-        success.validate();
-      }
+      if (success != null) {
+        success.validate();
+      }
+    }
+
+    private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+      try {
+        write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+      } catch (org.apache.thrift.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.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+      } catch (org.apache.thrift.TException te) {
+        throw new java.io.IOException(te);
+      }
+    }
+
+    private static class getComponentPageInfo_resultStandardSchemeFactory implements SchemeFactory {
+      public getComponentPageInfo_resultStandardScheme getScheme() {
+        return new getComponentPageInfo_resultStandardScheme();
+      }
+    }
+
+    private static class getComponentPageInfo_resultStandardScheme extends StandardScheme<getComponentPageInfo_result> {
+
+      public void read(org.apache.thrift.protocol.TProtocol iprot, getComponentPageInfo_result struct) throws org.apache.thrift.TException {
+        org.apache.thrift.protocol.TField schemeField;
+        iprot.readStructBegin();
+        while (true)
+        {
+          schemeField = iprot.readFieldBegin();
+          if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { 
+            break;
+          }
+          switch (schemeField.id) {
+            case 0: // SUCCESS
+              if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+                struct.success = new ComponentPageInfo();
+                struct.success.read(iprot);
+                struct.set_success_isSet(true);
+              } else { 
+                org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+              }
+              break;
+            case 1: // E
+              if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+                struct.e = new NotAliveException();
+                struct.e.read(iprot);
+                struct.set_e_isSet(true);
+              } else { 
+                org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+              }
+              break;
+            case 2: // AZE
+              if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+                struct.aze = new AuthorizationException();
+                struct.aze.read(iprot);
+                struct.set_aze_isSet(true);
+              } else { 
+                org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+              }
+              break;
+            default:
+              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+          }
+          iprot.readFieldEnd();
+        }
+        iprot.readStructEnd();
+        struct.validate();
+      }
+
+      public void write(org.apache.thrift.protocol.TProtocol oprot, getComponentPageInfo_result struct) throws org.apache.thrift.TException {
+        struct.validate();
+
+        oprot.writeStructBegin(STRUCT_DESC);
+        if (struct.success != null) {
+          oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
+          struct.success.write(oprot);
+          oprot.writeFieldEnd();
+        }
+        if (struct.e != null) {
+          oprot.writeFieldBegin(E_FIELD_DESC);
+          struct.e.write(oprot);
+          oprot.writeFieldEnd();
+        }
+        if (struct.aze != null) {
+          oprot.writeFieldBegin(AZE_FIELD_DESC);
+          struct.aze.write(oprot);
+          oprot.writeFieldEnd();
+        }
+        oprot.writeFieldStop();
+        oprot.writeStructEnd();
+      }
+
+    }
+
+    private static class getComponentPageInfo_resultTupleSchemeFactory implements SchemeFactory {
+      public getComponentPageInfo_resultTupleScheme getScheme() {
+        return new getComponentPageInfo_resultTupleScheme();
+      }
+    }
+
+    private static class getComponentPageInfo_resultTupleScheme extends TupleScheme<getComponentPageInfo_result> {
+
+      @Override
+      public void write(org.apache.thrift.protocol.TProtocol prot, getComponentPageInfo_result struct) throws org.apache.thrift.TException {
+        TTupleProtocol oprot = (TTupleProtocol) prot;
+        BitSet optionals = new BitSet();
+        if (struct.is_set_success()) {
+          optionals.set(0);
+        }
+        if (struct.is_set_e()) {
+          optionals.set(1);
+        }
+        if (struct.is_set_aze()) {
+          optionals.set(2);
+        }
+        oprot.writeBitSet(optionals, 3);
+        if (struct.is_set_success()) {
+          struct.success.write(oprot);
+        }
+        if (struct.is_set_e()) {
+          struct.e.write(oprot);
+        }
+        if (struct.is_set_aze()) {
+          struct.aze.write(oprot);
+        }
+      }
+
+      @Override
+      public void read(org.apache.thrift.protocol.TProtocol prot, getComponentPageInfo_result struct) throws org.apache.thrift.TException {
+        TTupleProtocol iprot = (TTupleProtocol) prot;
+        BitSet incoming = iprot.readBitSet(3);
+        if (incoming.get(0)) {
+          struct.success = new ComponentPageInfo();
+          struct.success.read(iprot);
+          struct.set_success_isSet(true);
+        }
+        if (incoming.get(1)) {
+          struct.e = new NotAliveException();
+          struct.e.read(iprot);
+          struct.set_e_isSet(true);
+        }
+        if (incoming.get(2)) {
+          struct.aze = new AuthorizationException();
+          struct.aze.read(iprot);
+          struct.set_aze_isSet(true);
+        }
+      }
+    }
+
+  }
+
+  public static class getTopologyConf_args implements org.apache.thrift.TBase<getTopologyConf_args, getTopologyConf_args._Fields>, java.io.Serializable, Cloneable, Comparable<getTopologyConf_args>   {
+    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTopologyConf_args");
+
+    private static final org.apache.thrift.protocol.TField ID_FIELD_DESC = new org.apache.thrift.protocol.TField("id", org.apache.thrift.protocol.TType.STRING, (short)1);
+
+    private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+    static {
+      schemes.put(StandardScheme.class, new getTopologyConf_argsStandardSchemeFactory());
+      schemes.put(TupleScheme.class, new getTopologyConf_argsTupleSchemeFactory());
+    }
+
+    private String id; // required
+
+    /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+    public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+      ID((short)1, "id");
+
+      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: // ID
+            return ID;
+          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.thrift.meta_data.FieldMetaData> metaDataMap;
+    static {
+      Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+      tmpMap.put(_Fields.ID, new org.apache.thrift.meta_data.FieldMetaData("id", org.apache.thrift.TFieldRequirementType.DEFAULT, 
+          new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
+      metaDataMap = Collections.unmodifiableMap(tmpMap);
+      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTopologyConf_args.class, metaDataMap);
+    }
+
+    public getTopologyConf_args() {
+    }
+
+    public getTopologyConf_args(
+      String id)
+    {
+      this();
+      this.id = id;
+    }
+
+    /**
+     * Performs a deep copy on <i>other</i>.
+     */
+    public getTopologyConf_args(getTopologyConf_args other) {
+      if (other.is_set_id()) {
+        this.id = other.id;
+      }
+    }
+
+    public getTopologyConf_args deepCopy() {
+      return new getTopologyConf_args(this);
+    }
+
+    @Override
+    public void clear() {
+      this.id = null;
+    }
+
+    public String get_id() {
+      return this.id;
+    }
+
+    public void set_id(String id) {
+      this.id = id;
+    }
+
+    public void unset_id() {
+      this.id = null;
+    }
+
+    /** Returns true if field id is set (has been assigned a value) and false otherwise */
+    public boolean is_set_id() {
+      return this.id != null;
+    }
+
+    public void set_id_isSet(boolean value) {
+      if (!value) {
+        this.id = null;
+      }
+    }
+
+    public void setFieldValue(_Fields field, Object value) {
+      switch (field) {
+      case ID:
+        if (value == null) {
+          unset_id();
+        } else {
+          set_id((String)value);
+        }
+        break;
+
+      }
+    }
+
+    public Object getFieldValue(_Fields field) {
+      switch (field) {
+      case ID:
+        return get_id();
+
+      }
+      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 ID:
+        return is_set_id();
+      }
+      throw new IllegalStateException();
+    }
+
+    @Override
+    public boolean equals(Object that) {
+      if (that == null)
+        return false;
+      if (that instanceof getTopologyConf_args)
+        return this.equals((getTopologyConf_args)that);
+      return false;
+    }
+
+    public boolean equals(getTopologyConf_args that) {
+      if (that == null)
+        return false;
+
+      boolean this_present_id = true && this.is_set_id();
+      boolean that_present_id = true && that.is_set_id();
+      if (this_present_id || that_present_id) {
+        if (!(this_present_id && that_present_id))
+          return false;
+        if (!this.id.equals(that.id))
+          return false;
+      }
+
+      return true;
+    }
+
+    @Override
+    public int hashCode() {
+      List<Object> list = new ArrayList<Object>();
+
+      boolean present_id = true && (is_set_id());
+      list.add(present_id);
+      if (present_id)
+        list.add(id);
+
+      return list.hashCode();
+    }
+
+    @Override
+    public int compareTo(getTopologyConf_args other) {
+      if (!getClass().equals(other.getClass())) {
+        return getClass().getName().compareTo(other.getClass().getName());
+      }
+
+      int lastComparison = 0;
+
+      lastComparison = Boolean.valueOf(is_set_id()).compareTo(other.is_set_id());
+      if (lastComparison != 0) {
+        return lastComparison;
+      }
+      if (is_set_id()) {
+        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.id, other.id);
+        if (lastComparison != 0) {
+          return lastComparison;
+        }
+      }
+      return 0;
+    }
+
+    public _Fields fieldForId(int fieldId) {
+      return _Fields.findByThriftId(fieldId);
+    }
+
+    public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+      schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+    }
+
+    public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+      schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+    }
+
+    @Override
+    public String toString() {
+      StringBuilder sb = new StringBuilder("getTopologyConf_args(");
+      boolean first = true;
+
+      sb.append("id:");
+      if (this.id == null) {
+        sb.append("null");
+      } else {
+        sb.append(this.id);
+      }
+      first = false;
+      sb.append(")");
+      return sb.toString();
+    }
+
+    public void validate() throws org.apache.thrift.TException {
+      // check for required fields
+      // check for sub-struct validity
+    }
+
+    private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
+      try {
+        write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
+      } catch (org.apache.thrift.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.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
+      } catch (org.apache.thrift.TException te) {
+        throw new java.io.IOException(te);
+      }
+    }
+
+    private static class getTopologyConf_argsStandardSchemeFactory implements SchemeFactory {
+      public getTopologyConf_argsStandardScheme getScheme() {
+        return new getTopologyConf_argsStandardScheme();
+      }
+    }
+
+    private static class getTopologyConf_argsStandardScheme extends StandardScheme<getTopologyConf_args> {
+
+      public void read(org.apache.thrift.protocol.TProtocol iprot, getTopologyConf_args struct) throws org.apache.thrift.TException {
+        org.apache.thrift.protocol.TField schemeField;
+        iprot.readStructBegin();
+        while (true)
+        {
+          schemeField = iprot.readFieldBegin();
+          if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { 
+            break;
+          }
+          switch (schemeField.id) {
+            case 1: // ID
+              if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
+                struct.id = iprot.readString();
+                struct.set_id_isSet(true);
+              } else { 
+                org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+              }
+              break;
+            default:
+              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
+          }
+          iprot.readFieldEnd();
+        }
+        iprot.readStructEnd();
+        struct.validate();
+      }
+
+      public void write(org.apache.thrift.protocol.TProtocol oprot, getTopologyConf_args struct) throws org.apache.thrift.TException {
+        struct.validate();
+
+        oprot.writeStructBegin(STRUCT_DESC);
+        if (struct.id != null) {
+          oprot.writeFieldBegin(ID_FIELD_DESC);
+          oprot.writeString(struct.id);
+          oprot.writeFieldEnd();
+        }
+        oprot.writeFieldStop();
+        oprot.writeStructEnd();
+      }
+
+    }
+
+    private static class getTopologyConf_argsTupleSchemeFactory implements SchemeFactory {
+      public getTopologyConf_argsTupleScheme getScheme() {
+        return new getTopologyConf_argsTupleScheme();
+      }
+    }
+
+    private static class getTopologyConf_argsTupleScheme extends TupleScheme<getTopologyConf_args> {
+
+      @Override
+      public void write(org.apache.thrift.protocol.TProtocol prot, getTopologyConf_args struct) throws org.apache.thrift.TException {
+        TTupleProtocol oprot = (TTupleProtocol) prot;
+        BitSet optionals = new BitSet();
+        if (struct.is_set_id()) {
+          optionals.set(0);
+        }
+        oprot.writeBitSet(optionals, 1);
+        if (struct.is_set_id()) {
+          oprot.writeString(struct.id);
+        }
+      }
+
+      @Override
+      public void read(org.apache.thrift.protocol.TProtocol prot, getTopologyConf_args struct) throws org.apache.thrift.TException {
+        TTupleProtocol iprot = (TTupleProtocol) prot;
+        BitSet incoming = iprot.readBitSet(1);
+        if (incoming.get(0)) {
+          struct.id = iprot.readString();
+          struct.set_id_isSet(true);
+        }
+      }
+    }
+
+  }
+
+  public static class getTopologyConf_result implements org.apache.thrift.TBase<getTopologyConf_result, getTopologyConf_result._Fields>, java.io.Serializable, Cloneable, Comparable<getTopologyConf_result>   {
+    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTopologyConf_result");
+
+    private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRING, (short)0);
+    private static final org.apache.thrift.protocol.TField E_FIELD_DESC = new org.apache.thrift.protocol.TField("e", org.apache.thrift.protocol.TType.STRUCT, (short)1);
+    private static final org.apache.thrift.protocol.TField AZE_FIELD_DESC = new org.apache.thrift.protocol.TField("aze", org.apache.thrift.protocol.TType.STRUCT, (short)2);
+
+    private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
+    static {
+      schemes.put(StandardScheme.class, new getTopologyConf_resultStandardSchemeFactory());
+      schemes.put(TupleScheme.class, new getTopologyConf_resultTupleSchemeFactory());
+    }
+
+    private String success; // required
+    private NotAliveException e; // required
+    private AuthorizationException aze; // required
+
+    /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
+    public enum _Fields implements org.apache.thrift.TFieldIdEnum {
+      SUCCESS((short)0, "success"),
+      E((short)1, "e"),
+      AZE((short)2, "aze");
+
+      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 0: // SUCCESS
+            return SUCCESS;
+          case 1: // E
+            return E;
+          case 2: // AZE
+            return AZE;
+          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.thrift.meta_data.FieldMetaData> metaDataMap;
+    static {
+      Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
+      tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, 
+          new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
+      tmpMap.put(_Fields.E, new org.apache.thrift.meta_data.FieldMetaData("e", org.apache.thrift.TFieldRequirementType.DEFAULT, 
+          new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+      tmpMap.put(_Fields.AZE, new org.apache.thrift.meta_data.FieldMetaData("aze", org.apache.thrift.TFieldRequirementType.DEFAULT, 
+          new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
+      metaDataMap = Collections.unmodifiableMap(tmpMap);
+      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTopologyConf_result.class, metaDataMap);
+    }
+
+    public getTopologyConf_result() {
+    }
+
+    public getTopologyConf_result(
+      String success,
+      NotAliveException e,
+      AuthorizationException aze)
+    {
+      this();
+      this.success = success;
+      this.e = e;
+      this.aze = aze;
+    }
+
+    /**
+     * Performs a deep copy on <i>other</i>.
+     */
+    public getTopologyConf_result(getTopologyConf_result other) {
+      if (other.is_set_success()) {
+        this.success = other.success;
+      }
+      if (other.is_set_e()) {
+        this.e = new NotAliveException(other.e);
+      }
+      if (other.is_set_aze()) {
+        this.aze = new AuthorizationException(other.aze);
+      }
+    }
+
+    public getTopologyConf_result deepCopy() {
+      return new getTopologyConf_result(this);
+    }
+
+    @Override
+    public void clear() {
+      this.success = null;
+      this.e = null;
+      this.aze = null;
+    }
+
+    public String get_success() {
+      return this.success;
+    }
+
+    public void set_success(String success) {
+      this.success = success;
+    }
+
+    public void unset_success() {
+      this.success = null;
+    }
+
+    /** Returns true if field success is set (has been assigned a value) and false otherwise */
+    public boolean is_set_success() {
+      return this.success != null;
+    }
+
+    public void set_success_isSet(boolean value) {
+      if (!value) {
+        this.success = null;
+      }
+    }
+
+    public NotAliveException get_e() {
+      return this.e;
+    }
+
+    public void set_e(NotAliveException e) {
+      this.e = e;
+    }
+
+    public void unset_e() {
+      this.e = null;
+    }
+
+    /** Returns true if field e is set (has been assigned a value) and false otherwise */
+    public boolean is_set_e() {
+      return this.e != null;
+    }
+
+    public void set_e_isSet(boolean value) {
+      if (!value) {
+        this.e = null;
+      }
+    }
+
+    public AuthorizationException get_aze() {
+      return this.aze;
+    }
+
+    public void set_aze(AuthorizationException aze) {
+      this.aze = aze;
+    }
+
+    public void unset_aze() {
+      this.aze = null;
+    }
+
+    /** Returns true if field aze is set (has been assigned a value) and false otherwise */
+    public boolean is_set_aze() {
+      return this.aze != null;
+    }
+
+    public void set_aze_isSet(boolean value) {
+      if (!value) {
+        this.aze = null;
+      }
+    }
+
+    public void setFieldValue(_Fields field, Object value) {
+      switch (field) {
+      case SUCCESS:
+        if (value == null) {
+          unset_success();
+        } else {
+          set_success((String)value);
+        }
+        break;
+
+      case E:
+        if (value == null) {
+          unset_e();
+        } else {
+          set_e((NotAliveException)value);
+        }
+        break;
+
+      case AZE:
+        if (value == null) {
+          unset_aze();
+        } else {
+          set_aze((AuthorizationException)value);
+        }
+        break;
+
+      }
+    }
+
+    public Object getFieldValue(_Fields field) {
+      switch (field) {
+      case SUCCESS:
+        return get_success();
+
+      case E:
+        return get_e();
+
+      case AZE:
+        return get_aze();
+
+      }
+      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 SUCCESS:
+        return is_set_success();
+      case E:
+        return is_set_e();
+      case AZE:
+        return is_set_aze();
+      }
+      throw new IllegalStateException();
+    }
+
+    @Override
+    public boolean equals(Object that) {
+      if (that == null)
+        return false;
+      if (that instanceof getTopologyConf_result)
+        return this.equals((getTopologyConf_result)that);
+      return false;
+    }
+
+    public boolean equals(getTopologyConf_result that) {
+      if (that == null)
+        return false;
+
+      boolean this_present_success = true && this.is_set_success();
+      boolean that_present_success = true && that.is_set_success();
+      if (this_present_success || that_present_success) {
+        if (!(this_present_success && that_present_success))
+          return false;
+        if (!this.success.equals(that.success))
+          return false;
+      }
+
+      boolean this_present_e = true && this.is_set_e();
+      boolean that_present_e = true && that.is_set_e();
+      if (this_present_e || that_present_e) {
+        if (!(this_present_e && that_present_e))
+          return false;
+        if (!this.e.equals(that.e))
+          return false;
+      }
+
+      boolean this_present_aze = true && this.is_set_aze();
+      boolean that_present_aze = true && that.is_set_aze();
+      if (this_present_aze || that_present_aze) {
+        if (!(this_present_aze && that_present_aze))
+          return false;
+        if (!this.aze.equals(that.aze))
+          return false;
+      }
+
+      return true;
+    }
+
+    @Override
+    public int hashCode() {
+      List<Object> list = new ArrayList<Object>();
+
+      boolean present_success = true && (is_set_success());
+      list.add(present_success);
+      if (present_success)
+        list.add(success);
+
+      boolean present_e = true && (is_set_e());
+      list.add(present_e);
+      if (present_e)
+        list.add(e);
+
+      boolean present_aze = true && (is_set_aze());
+      list.add(present_aze);
+      if (present_aze)
+        list.add(aze);
+
+      return list.hashCode();
+    }
+
+    @Override
+    public int compareTo(getTopologyConf_result other) {
+      if (!getClass().equals(other.getClass())) {
+        return getClass().getName().compareTo(other.getClass().getName());
+      }
+
+      int lastComparison = 0;
+
+      lastComparison = Boolean.valueOf(is_set_success()).compareTo(other.is_set_success());
+      if (lastComparison != 0) {
+        return lastComparison;
+      }
+      if (is_set_success()) {
+        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success);
+        if (lastComparison != 0) {
+          return lastComparison;
+        }
+      }
+      lastComparison = Boolean.valueOf(is_set_e()).compareTo(other.is_set_e());
+      if (lastComparison != 0) {
+        return lastComparison;
+      }
+      if (is_set_e()) {
+        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.e, other.e);
+        if (lastComparison != 0) {
+          return lastComparison;
+        }
+      }
+      lastComparison = Boolean.valueOf(is_set_aze()).compareTo(other.is_set_aze());
+      if (lastComparison != 0) {
+        return lastComparison;
+      }
+      if (is_set_aze()) {
+        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.aze, other.aze);
+        if (lastComparison != 0) {
+          return lastComparison;
+        }
+      }
+      return 0;
+    }
+
+    public _Fields fieldForId(int fieldId) {
+      return _Fields.findByThriftId(fieldId);
+    }
+
+    public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
+      schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+    }
+
+    public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
+      schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+      }
+
+    @Override
+    public String toString() {
+      StringBuilder sb = new StringBuilder("getTopologyConf_result(");
+      boolean first = true;
+
+      sb.append("success:");
+      if (this.success == null) {
+        sb.append("null");
+      } else {
+        sb.append(this.success);
+      }
+      first = false;
+      if (!first) sb.append(", ");
+      sb.append("e:");
+      if (this.e == null) {
+        sb.append("null");
+      } else {
+        sb.append(this.e);
+      }
+      first = false;
+      if (!first) sb.append(", ");
+      sb.append("aze:");
+      if (this.aze == null) {
+        sb.append("null");
+      } else {
+        sb.append(this.aze);
+      }
+      first = false;
+      sb.append(")");
+      return sb.toString();
+    }
+
+    public void validate() throws org.apache.thrift.TException {
+      // check for required fields
+      // check for sub-struct validity
     }
 
     private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
@@ -43481,15 +44556,15 @@ public class Nimbus {
       }
     }
 
-    private static class getComponentPageInfo_resultStandardSchemeFactory implements SchemeFactory {
-      public getComponentPageInfo_resultStandardScheme getScheme() {
-        return new getComponentPageInfo_resultStandardScheme();
+    private static class getTopologyConf_resultStandardSchemeFactory implements SchemeFactory {
+      public getTopologyConf_resultStandardScheme getScheme() {
+        return new getTopologyConf_resultStandardScheme();
       }
     }
 
-    private static class getComponentPageInfo_resultStandardScheme extends StandardScheme<getComponentPageInfo_result> {
+    private static class getTopologyConf_resultStandardScheme extends StandardScheme<getTopologyConf_result> {
 
-      public void read(org.apache.thrift.protocol.TProtocol iprot, getComponentPageInfo_result struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol iprot, getTopologyConf_result struct) throws org.apache.thrift.TException {
         org.apache.thrift.protocol.TField schemeField;
         iprot.readStructBegin();
         while (true)
@@ -43500,9 +44575,8 @@ public class Nimbus {
           }
           switch (schemeField.id) {
             case 0: // SUCCESS
-              if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
-                struct.success = new ComponentPageInfo();
-                struct.success.read(iprot);
+              if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
+                struct.success = iprot.readString();
                 struct.set_success_isSet(true);
               } else { 
                 org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
@@ -43535,13 +44609,13 @@ public class Nimbus {
         struct.validate();
       }
 
-      public void write(org.apache.thrift.protocol.TProtocol oprot, getComponentPageInfo_result struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol oprot, getTopologyConf_result struct) throws org.apache.thrift.TException {
         struct.validate();
 
         oprot.writeStructBegin(STRUCT_DESC);
         if (struct.success != null) {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
-          struct.success.write(oprot);
+          oprot.writeString(struct.success);
           oprot.writeFieldEnd();
         }
         if (struct.e != null) {
@@ -43560,16 +44634,16 @@ public class Nimbus {
 
     }
 
-    private static class getComponentPageInfo_resultTupleSchemeFactory implements SchemeFactory {
-      public getComponentPageInfo_resultTupleScheme getScheme() {
-        return new getComponentPageInfo_resultTupleScheme();
+    private static class getTopologyConf_resultTupleSchemeFactory implements SchemeFactory {
+      public getTopologyConf_resultTupleScheme getScheme() {
+        return new getTopologyConf_resultTupleScheme();
       }
     }
 
-    private static class getComponentPageInfo_resultTupleScheme extends TupleScheme<getComponentPageInfo_result> {
+    private static class getTopologyConf_resultTupleScheme extends TupleScheme<getTopologyConf_result> {
 
       @Override
-      public void write(org.apache.thrift.protocol.TProtocol prot, getComponentPageInfo_result struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol prot, getTopologyConf_result struct) throws org.apache.thrift.TException {
         TTupleProtocol oprot = (TTupleProtocol) prot;
         BitSet optionals = new BitSet();
         if (struct.is_set_success()) {
@@ -43583,7 +44657,7 @@ public class Nimbus {
         }
         oprot.writeBitSet(optionals, 3);
         if (struct.is_set_success()) {
-          struct.success.write(oprot);
+          oprot.writeString(struct.success);
         }
         if (struct.is_set_e()) {
           struct.e.write(oprot);
@@ -43594,12 +44668,11 @@ public class Nimbus {
       }
 
       @Override
-      public void read(org.apache.thrift.protocol.TProtocol prot, getComponentPageInfo_result struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol prot, getTopologyConf_result struct) throws org.apache.thrift.TException {
         TTupleProtocol iprot = (TTupleProtocol) prot;
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
-          struct.success = new ComponentPageInfo();
-          struct.success.read(iprot);
+          struct.success = iprot.readString();
           struct.set_success_isSet(true);
         }
         if (incoming.get(1)) {
@@ -43617,15 +44690,15 @@ public class Nimbus {
 
   }
 
-  public static class getTopologyConf_args implements org.apache.thrift.TBase<getTopologyConf_args, getTopologyConf_args._Fields>, java.io.Serializable, Cloneable, Comparable<getTopologyConf_args>   {
-    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTopologyConf_args");
+  public static class getTopology_args implements org.apache.thrift.TBase<getTopology_args, getTopology_args._Fields>, java.io.Serializable, Cloneable, Comparable<getTopology_args>   {
+    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTopology_args");
 
     private static final org.apache.thrift.protocol.TField ID_FIELD_DESC = new org.apache.thrift.protocol.TField("id", org.apache.thrift.protocol.TType.STRING, (short)1);
 
     private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
     static {
-      schemes.put(StandardScheme.class, new getTopologyConf_argsStandardSchemeFactory());
-      schemes.put(TupleScheme.class, new getTopologyConf_argsTupleSchemeFactory());
+      schemes.put(StandardScheme.class, new getTopology_argsStandardSchemeFactory());
+      schemes.put(TupleScheme.class, new getTopology_argsTupleSchemeFactory());
     }
 
     private String id; // required
@@ -43695,13 +44768,13 @@ public class Nimbus {
       tmpMap.put(_Fields.ID, new org.apache.thrift.meta_data.FieldMetaData("id", org.apache.thrift.TFieldRequirementType.DEFAULT, 
           new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
       metaDataMap = Collections.unmodifiableMap(tmpMap);
-      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTopologyConf_args.class, metaDataMap);
+      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTopology_args.class, metaDataMap);
     }
 
-    public getTopologyConf_args() {
+    public getTopology_args() {
     }
 
-    public getTopologyConf_args(
+    public getTopology_args(
       String id)
     {
       this();
@@ -43711,14 +44784,14 @@ public class Nimbus {
     /**
      * Performs a deep copy on <i>other</i>.
      */
-    public getTopologyConf_args(getTopologyConf_args other) {
+    public getTopology_args(getTopology_args other) {
       if (other.is_set_id()) {
         this.id = other.id;
       }
     }
 
-    public getTopologyConf_args deepCopy() {
-      return new getTopologyConf_args(this);
+    public getTopology_args deepCopy() {
+      return new getTopology_args(this);
     }
 
     @Override
@@ -43788,12 +44861,12 @@ public class Nimbus {
     public boolean equals(Object that) {
       if (that == null)
         return false;
-      if (that instanceof getTopologyConf_args)
-        return this.equals((getTopologyConf_args)that);
+      if (that instanceof getTopology_args)
+        return this.equals((getTopology_args)that);
       return false;
     }
 
-    public boolean equals(getTopologyConf_args that) {
+    public boolean equals(getTopology_args that) {
       if (that == null)
         return false;
 
@@ -43822,7 +44895,7 @@ public class Nimbus {
     }
 
     @Override
-    public int compareTo(getTopologyConf_args other) {
+    public int compareTo(getTopology_args other) {
       if (!getClass().equals(other.getClass())) {
         return getClass().getName().compareTo(other.getClass().getName());
       }
@@ -43856,7 +44929,7 @@ public class Nimbus {
 
     @Override
     public String toString() {
-      StringBuilder sb = new StringBuilder("getTopologyConf_args(");
+      StringBuilder sb = new StringBuilder("getTopology_args(");
       boolean first = true;
 
       sb.append("id:");
@@ -43891,15 +44964,15 @@ public class Nimbus {
       }
     }
 
-    private static class getTopologyConf_argsStandardSchemeFactory implements SchemeFactory {
-      public getTopologyConf_argsStandardScheme getScheme() {
-        return new getTopologyConf_argsStandardScheme();
+    private static class getTopology_argsStandardSchemeFactory implements SchemeFactory {
+      public getTopology_argsStandardScheme getScheme() {
+        return new getTopology_argsStandardScheme();
       }
     }
 
-    private static class getTopologyConf_argsStandardScheme extends StandardScheme<getTopologyConf_args> {
+    private static class getTopology_argsStandardScheme extends StandardScheme<getTopology_args> {
 
-      public void read(org.apache.thrift.protocol.TProtocol iprot, getTopologyConf_args struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol iprot, getTopology_args struct) throws org.apache.thrift.TException {
         org.apache.thrift.protocol.TField schemeField;
         iprot.readStructBegin();
         while (true)
@@ -43926,7 +44999,7 @@ public class Nimbus {
         struct.validate();
       }
 
-      public void write(org.apache.thrift.protocol.TProtocol oprot, getTopologyConf_args struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol oprot, getTopology_args struct) throws org.apache.thrift.TException {
         struct.validate();
 
         oprot.writeStructBegin(STRUCT_DESC);
@@ -43941,16 +45014,16 @@ public class Nimbus {
 
     }
 
-    private static class getTopologyConf_argsTupleSchemeFactory implements SchemeFactory {
-      public getTopologyConf_argsTupleScheme getScheme() {
-        return new getTopologyConf_argsTupleScheme();
+    private static class getTopology_argsTupleSchemeFactory implements SchemeFactory {
+      public getTopology_argsTupleScheme getScheme() {
+        return new getTopology_argsTupleScheme();
       }
     }
 
-    private static class getTopologyConf_argsTupleScheme extends TupleScheme<getTopologyConf_args> {
+    private static class getTopology_argsTupleScheme extends TupleScheme<getTopology_args> {
 
       @Override
-      public void write(org.apache.thrift.protocol.TProtocol prot, getTopologyConf_args struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol prot, getTopology_args struct) throws org.apache.thrift.TException {
         TTupleProtocol oprot = (TTupleProtocol) prot;
         BitSet optionals = new BitSet();
         if (struct.is_set_id()) {
@@ -43963,7 +45036,7 @@ public class Nimbus {
       }
 
       @Override
-      public void read(org.apache.thrift.protocol.TProtocol prot, getTopologyConf_args struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol prot, getTopology_args struct) throws org.apache.thrift.TException {
         TTupleProtocol iprot = (TTupleProtocol) prot;
         BitSet incoming = iprot.readBitSet(1);
         if (incoming.get(0)) {
@@ -43975,20 +45048,20 @@ public class Nimbus {
 
   }
 
-  public static class getTopologyConf_result implements org.apache.thrift.TBase<getTopologyConf_result, getTopologyConf_result._Fields>, java.io.Serializable, Cloneable, Comparable<getTopologyConf_result>   {
-    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTopologyConf_result");
+  public static class getTopology_result implements org.apache.thrift.TBase<getTopology_result, getTopology_result._Fields>, java.io.Serializable, Cloneable, Comparable<getTopology_result>   {
+    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTopology_result");
 
-    private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRING, (short)0);
+    private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRUCT, (short)0);
     private static final org.apache.thrift.protocol.TField E_FIELD_DESC = new org.apache.thrift.protocol.TField("e", org.apache.thrift.protocol.TType.STRUCT, (short)1);
     private static final org.apache.thrift.protocol.TField AZE_FIELD_DESC = new org.apache.thrift.protocol.TField("aze", org.apache.thrift.protocol.TType.STRUCT, (short)2);
 
     private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
     static {
-      schemes.put(StandardScheme.class, new getTopologyConf_resultStandardSchemeFactory());
-      schemes.put(TupleScheme.class, new getTopologyConf_resultTupleSchemeFactory());
+      schemes.put(StandardScheme.class, new getTopology_resultStandardSchemeFactory());
+      schemes.put(TupleScheme.class, new getTopology_resultTupleSchemeFactory());
     }
 
-    private String success; // required
+    private StormTopology success; // required
     private NotAliveException e; // required
     private AuthorizationException aze; // required
 
@@ -44061,20 +45134,20 @@ public class Nimbus {
     static {
       Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
       tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, 
-          new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
+          new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, StormTopology.class)));
       tmpMap.put(_Fields.E, new org.apache.thrift.meta_data.FieldMetaData("e", org.apache.thrift.TFieldRequirementType.DEFAULT, 
           new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
       tmpMap.put(_Fields.AZE, new org.apache.thrift.meta_data.FieldMetaData("aze", org.apache.thrift.TFieldRequirementType.DEFAULT, 
           new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
       metaDataMap = Collections.unmodifiableMap(tmpMap);
-      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTopologyConf_result.class, metaDataMap);
+      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTopology_result.class, metaDataMap);
     }
 
-    public getTopologyConf_result() {
+    public getTopology_result() {
     }
 
-    public getTopologyConf_result(
-      String success,
+    public getTopology_result(
+      StormTopology success,
       NotAliveException e,
       AuthorizationException aze)
     {
@@ -44087,9 +45160,9 @@ public class Nimbus {
     /**
      * Performs a deep copy on <i>other</i>.
      */
-    public getTopologyConf_result(getTopologyConf_result other) {
+    public getTopology_result(getTopology_result other) {
       if (other.is_set_success()) {
-        this.success = other.success;
+        this.success = new StormTopology(other.success);
       }
       if (other.is_set_e()) {
         this.e = new NotAliveException(other.e);
@@ -44099,8 +45172,8 @@ public class Nimbus {
       }
     }
 
-    public getTopologyConf_result deepCopy() {
-      return new getTopologyConf_result(this);
+    public getTopology_result deepCopy() {
+      return new getTopology_result(this);
     }
 
     @Override
@@ -44110,11 +45183,11 @@ public class Nimbus {
       this.aze = null;
     }
 
-    public String get_success() {
+    public StormTopology get_success() {
       return this.success;
     }
 
-    public void set_success(String success) {
+    public void set_success(StormTopology success) {
       this.success = success;
     }
 
@@ -44185,7 +45258,7 @@ public class Nimbus {
         if (value == null) {
           unset_success();
         } else {
-          set_success((String)value);
+          set_success((StormTopology)value);
         }
         break;
 
@@ -44244,12 +45317,12 @@ public class Nimbus {
     public boolean equals(Object that) {
       if (that == null)
         return false;
-      if (that instanceof getTopologyConf_result)
-        return this.equals((getTopologyConf_result)that);
+      if (that instanceof getTopology_result)
+        return this.equals((getTopology_result)that);
       return false;
     }
 
-    public boolean equals(getTopologyConf_result that) {
+    public boolean equals(getTopology_result that) {
       if (that == null)
         return false;
 
@@ -44306,7 +45379,7 @@ public class Nimbus {
     }
 
     @Override
-    public int compareTo(getTopologyConf_result other) {
+    public int compareTo(getTopology_result other) {
       if (!getClass().equals(other.getClass())) {
         return getClass().getName().compareTo(other.getClass().getName());
       }
@@ -44360,7 +45433,7 @@ public class Nimbus {
 
     @Override
     public String toString() {
-      StringBuilder sb = new StringBuilder("getTopologyConf_result(");
+      StringBuilder sb = new StringBuilder("getTopology_result(");
       boolean first = true;
 
       sb.append("success:");
@@ -44393,6 +45466,9 @@ public class Nimbus {
     public void validate() throws org.apache.thrift.TException {
       // check for required fields
       // check for sub-struct validity
+      if (success != null) {
+        success.validate();
+      }
     }
 
     private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
@@ -44411,15 +45487,15 @@ public class Nimbus {
       }
     }
 
-    private static class getTopologyConf_resultStandardSchemeFactory implements SchemeFactory {
-      public getTopologyConf_resultStandardScheme getScheme() {
-        return new getTopologyConf_resultStandardScheme();
+    private static class getTopology_resultStandardSchemeFactory implements SchemeFactory {
+      public getTopology_resultStandardScheme getScheme() {
+        return new getTopology_resultStandardScheme();
       }
     }
 
-    private static class getTopologyConf_resultStandardScheme extends StandardScheme<getTopologyConf_result> {
+    private static class getTopology_resultStandardScheme extends StandardScheme<getTopology_result> {
 
-      public void read(org.apache.thrift.protocol.TProtocol iprot, getTopologyConf_result struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol iprot, getTopology_result struct) throws org.apache.thrift.TException {
         org.apache.thrift.protocol.TField schemeField;
         iprot.readStructBegin();
         while (true)
@@ -44430,8 +45506,9 @@ public class Nimbus {
           }
           switch (schemeField.id) {
             case 0: // SUCCESS
-              if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
-                struct.success = iprot.readString();
+              if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
+                struct.success = new StormTopology();
+                struct.success.read(iprot);
                 struct.set_success_isSet(true);
               } else { 
                 org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
@@ -44464,13 +45541,13 @@ public class Nimbus {
         struct.validate();
       }
 
-      public void write(org.apache.thrift.protocol.TProtocol oprot, getTopologyConf_result struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol oprot, getTopology_result struct) throws org.apache.thrift.TException {
         struct.validate();
 
         oprot.writeStructBegin(STRUCT_DESC);
         if (struct.success != null) {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
-          oprot.writeString(struct.success);
+          struct.success.write(oprot);
           oprot.writeFieldEnd();
         }
         if (struct.e != null) {
@@ -44489,16 +45566,16 @@ public class Nimbus {
 
     }
 
-    private static class getTopologyConf_resultTupleSchemeFactory implements SchemeFactory {
-      public getTopologyConf_resultTupleScheme getScheme() {
-        return new getTopologyConf_resultTupleScheme();
+    private static class getTopology_resultTupleSchemeFactory implements SchemeFactory {
+      public getTopology_resultTupleScheme getScheme() {
+        return new getTopology_resultTupleScheme();
       }
     }
 
-    private static class getTopologyConf_resultTupleScheme extends TupleScheme<getTopologyConf_result> {
+    private static class getTopology_resultTupleScheme extends TupleScheme<getTopology_result> {
 
       @Override
-      public void write(org.apache.thrift.protocol.TProtocol prot, getTopologyConf_result struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol prot, getTopology_result struct) throws org.apache.thrift.TException {
         TTupleProtocol oprot = (TTupleProtocol) prot;
         BitSet optionals = new BitSet();
         if (struct.is_set_success()) {
@@ -44512,7 +45589,7 @@ public class Nimbus {
         }
         oprot.writeBitSet(optionals, 3);
         if (struct.is_set_success()) {
-          oprot.writeString(struct.success);
+          struct.success.write(oprot);
         }
         if (struct.is_set_e()) {
           struct.e.write(oprot);
@@ -44523,11 +45600,12 @@ public class Nimbus {
       }
 
       @Override
-      public void read(org.apache.thrift.protocol.TProtocol prot, getTopologyConf_result struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol prot, getTopology_result struct) throws org.apache.thrift.TException {
         TTupleProtocol iprot = (TTupleProtocol) prot;
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
-          struct.success = iprot.readString();
+          struct.success = new StormTopology();
+          struct.success.read(iprot);
           struct.set_success_isSet(true);
         }
         if (incoming.get(1)) {
@@ -44545,15 +45623,15 @@ public class Nimbus {
 
   }
 
-  public static class getTopology_args implements org.apache.thrift.TBase<getTopology_args, getTopology_args._Fields>, java.io.Serializable, Cloneable, Comparable<getTopology_args>   {
-    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTopology_args");
+  public static class getUserTopology_args implements org.apache.thrift.TBase<getUserTopology_args, getUserTopology_args._Fields>, java.io.Serializable, Cloneable, Comparable<getUserTopology_args>   {
+    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getUserTopology_args");
 
     private static final org.apache.thrift.protocol.TField ID_FIELD_DESC = new org.apache.thrift.protocol.TField("id", org.apache.thrift.protocol.TType.STRING, (short)1);
 
     private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
     static {
-      schemes.put(StandardScheme.class, new getTopology_argsStandardSchemeFactory());
-      schemes.put(TupleScheme.class, new getTopology_argsTupleSchemeFactory());
+      schemes.put(StandardScheme.class, new getUserTopology_argsStandardSchemeFactory());
+      schemes.put(TupleScheme.class, new getUserTopology_argsTupleSchemeFactory());
     }
 
     private String id; // required
@@ -44623,13 +45701,13 @@ public class Nimbus {
       tmpMap.put(_Fields.ID, new org.apache.thrift.meta_data.FieldMetaData("id", org.apache.thrift.TFieldRequirementType.DEFAULT, 
           new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
       metaDataMap = Collections.unmodifiableMap(tmpMap);
-      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTopology_args.class, metaDataMap);
+      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getUserTopology_args.class, metaDataMap);
     }
 
-    public getTopology_args() {
+    public getUserTopology_args() {
     }
 
-    public getTopology_args(
+    public getUserTopology_args(
       String id)
     {
       this();
@@ -44639,14 +45717,14 @@ public class Nimbus {
     /**
      * Performs a deep copy on <i>other</i>.
      */
-    public getTopology_args(getTopology_args other) {
+    public getUserTopology_args(getUserTopology_args other) {
       if (other.is_set_id()) {
         this.id = other.id;
       }
     }
 
-    public getTopology_args deepCopy() {
-      return new getTopology_args(this);
+    public getUserTopology_args deepCopy() {
+      return new getUserTopology_args(this);
     }
 
     @Override
@@ -44716,12 +45794,12 @@ public class Nimbus {
     public boolean equals(Object that) {
       if (that == null)
         return false;
-      if (that instanceof getTopology_args)
-        return this.equals((getTopology_args)that);
+      if (that instanceof getUserTopology_args)
+        return this.equals((getUserTopology_args)that);
       return false;
     }
 
-    public boolean equals(getTopology_args that) {
+    public boolean equals(getUserTopology_args that) {
       if (that == null)
         return false;
 
@@ -44750,7 +45828,7 @@ public class Nimbus {
     }
 
     @Override
-    public int compareTo(getTopology_args other) {
+    public int compareTo(getUserTopology_args other) {
       if (!getClass().equals(other.getClass())) {
         return getClass().getName().compareTo(other.getClass().getName());
       }
@@ -44784,7 +45862,7 @@ public class Nimbus {
 
     @Override
     public String toString() {
-      StringBuilder sb = new StringBuilder("getTopology_args(");
+      StringBuilder sb = new StringBuilder("getUserTopology_args(");
       boolean first = true;
 
       sb.append("id:");
@@ -44819,15 +45897,15 @@ public class Nimbus {
       }
     }
 
-    private static class getTopology_argsStandardSchemeFactory implements SchemeFactory {
-      public getTopology_argsStandardScheme getScheme() {
-        return new getTopology_argsStandardScheme();
+    private static class getUserTopology_argsStandardSchemeFactory implements SchemeFactory {
+      public getUserTopology_argsStandardScheme getScheme() {
+        return new getUserTopology_argsStandardScheme();
       }
     }
 
-    private static class getTopology_argsStandardScheme extends StandardScheme<getTopology_args> {
+    private static class getUserTopology_argsStandardScheme extends StandardScheme<getUserTopology_args> {
 
-      public void read(org.apache.thrift.protocol.TProtocol iprot, getTopology_args struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol iprot, getUserTopology_args struct) throws org.apache.thrift.TException {
         org.apache.thrift.protocol.TField schemeField;
         iprot.readStructBegin();
         while (true)
@@ -44854,7 +45932,7 @@ public class Nimbus {
         struct.validate();
       }
 
-      public void write(org.apache.thrift.protocol.TProtocol oprot, getTopology_args struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol oprot, getUserTopology_args struct) throws org.apache.thrift.TException {
         struct.validate();
 
         oprot.writeStructBegin(STRUCT_DESC);
@@ -44869,16 +45947,16 @@ public class Nimbus {
 
     }
 
-    private static class getTopology_argsTupleSchemeFactory implements SchemeFactory {
-      public getTopology_argsTupleScheme getScheme() {
-        return new getTopology_argsTupleScheme();
+    private static class getUserTopology_argsTupleSchemeFactory implements SchemeFactory {
+      public getUserTopology_argsTupleScheme getScheme() {
+        return new getUserTopology_argsTupleScheme();
       }
     }
 
-    private static class getTopology_argsTupleScheme extends TupleScheme<getTopology_args> {
+    private static class getUserTopology_argsTupleScheme extends TupleScheme<getUserTopology_args> {
 
       @Override
-      public void write(org.apache.thrift.protocol.TProtocol prot, getTopology_args struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol prot, getUserTopology_args struct) throws org.apache.thrift.TException {
         TTupleProtocol oprot = (TTupleProtocol) prot;
         BitSet optionals = new BitSet();
         if (struct.is_set_id()) {
@@ -44891,7 +45969,7 @@ public class Nimbus {
       }
 
       @Override
-      public void read(org.apache.thrift.protocol.TProtocol prot, getTopology_args struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol prot, getUserTopology_args struct) throws org.apache.thrift.TException {
         TTupleProtocol iprot = (TTupleProtocol) prot;
         BitSet incoming = iprot.readBitSet(1);
         if (incoming.get(0)) {
@@ -44903,8 +45981,8 @@ public class Nimbus {
 
   }
 
-  public static class getTopology_result implements org.apache.thrift.TBase<getTopology_result, getTopology_result._Fields>, java.io.Serializable, Cloneable, Comparable<getTopology_result>   {
-    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTopology_result");
+  public static class getUserTopology_result implements org.apache.thrift.TBase<getUserTopology_result, getUserTopology_result._Fields>, java.io.Serializable, Cloneable, Comparable<getUserTopology_result>   {
+    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getUserTopology_result");
 
     private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRUCT, (short)0);
     private static final org.apache.thrift.protocol.TField E_FIELD_DESC = new org.apache.thrift.protocol.TField("e", org.apache.thrift.protocol.TType.STRUCT, (short)1);
@@ -44912,8 +45990,8 @@ public class Nimbus {
 
     private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
     static {
-      schemes.put(StandardScheme.class, new getTopology_resultStandardSchemeFactory());
-      schemes.put(TupleScheme.class, new getTopology_resultTupleSchemeFactory());
+      schemes.put(StandardScheme.class, new getUserTopology_resultStandardSchemeFactory());
+      schemes.put(TupleScheme.class, new getUserTopology_resultTupleSchemeFactory());
     }
 
     private StormTopology success; // required
@@ -44995,13 +46073,13 @@ public class Nimbus {
       tmpMap.put(_Fields.AZE, new org.apache.thrift.meta_data.FieldMetaData("aze", org.apache.thrift.TFieldRequirementType.DEFAULT, 
           new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT)));
       metaDataMap = Collections.unmodifiableMap(tmpMap);
-      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTopology_result.class, metaDataMap);
+      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getUserTopology_result.class, metaDataMap);
     }
 
-    public getTopology_result() {
+    public getUserTopology_result() {
     }
 
-    public getTopology_result(
+    public getUserTopology_result(
       StormTopology success,
       NotAliveException e,
       AuthorizationException aze)
@@ -45015,7 +46093,7 @@ public class Nimbus {
     /**
      * Performs a deep copy on <i>other</i>.
      */
-    public getTopology_result(getTopology_result other) {
+    public getUserTopology_result(getUserTopology_result other) {
       if (other.is_set_success()) {
         this.success = new StormTopology(other.success);
       }
@@ -45027,8 +46105,8 @@ public class Nimbus {
       }
     }
 
-    public getTopology_result deepCopy() {
-      return new getTopology_result(this);
+    public getUserTopology_result deepCopy() {
+      return new getUserTopology_result(this);
     }
 
     @Override
@@ -45172,12 +46250,12 @@ public class Nimbus {
     public boolean equals(Object that) {
       if (that == null)
         return false;
-      if (that instanceof getTopology_result)
-        return this.equals((getTopology_result)that);
+      if (that instanceof getUserTopology_result)
+        return this.equals((getUserTopology_result)that);
       return false;
     }
 
-    public boolean equals(getTopology_result that) {
+    public boolean equals(getUserTopology_result that) {
       if (that == null)
         return false;
 
@@ -45234,7 +46312,7 @@ public class Nimbus {
     }
 
     @Override
-    public int compareTo(getTopology_result other) {
+    public int compareTo(getUserTopology_result other) {
       if (!getClass().equals(other.getClass())) {
         return getClass().getName().compareTo(other.getClass().getName());
       }
@@ -45288,7 +46366,7 @@ public class Nimbus {
 
     @Override
     public String toString() {
-      StringBuilder sb = new StringBuilder("getTopology_result(");
+      StringBuilder sb = new StringBuilder("getUserTopology_result(");
       boolean first = true;
 
       sb.append("success:");
@@ -45342,15 +46420,15 @@ public class Nimbus {
       }
     }
 
-    private static class getTopology_resultStandardSchemeFactory implements SchemeFactory {
-      public getTopology_resultStandardScheme getScheme() {
-        return new getTopology_resultStandardScheme();
+    private static class getUserTopology_resultStandardSchemeFactory implements SchemeFactory {
+      public getUserTopology_resultStandardScheme getScheme() {
+        return new getUserTopology_resultStandardScheme();
       }
     }
 
-    private static class getTopology_resultStandardScheme extends StandardScheme<getTopology_result> {
+    private static class getUserTopology_resultStandardScheme extends StandardScheme<getUserTopology_result> {
 
-      public void read(org.apache.thrift.protocol.TProtocol iprot, getTopology_result struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol iprot, getUserTopology_result struct) throws org.apache.thrift.TException {
         org.apache.thrift.protocol.TField schemeField;
         iprot.readStructBegin();
         while (true)
@@ -45396,7 +46474,7 @@ public class Nimbus {
         struct.validate();
       }
 
-      public void write(org.apache.thrift.protocol.TProtocol oprot, getTopology_result struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol oprot, getUserTopology_result struct) throws org.apache.thrift.TException {
         struct.validate();
 
         oprot.writeStructBegin(STRUCT_DESC);
@@ -45421,16 +46499,16 @@ public class Nimbus {
 
     }
 
-    private static class getTopology_resultTupleSchemeFactory implements SchemeFactory {
-      public getTopology_resultTupleScheme getScheme() {
-        return new getTopology_resultTupleScheme();
+    private static class getUserTopology_resultTupleSchemeFactory implements SchemeFactory {
+      public getUserTopology_resultTupleScheme getScheme() {
+        return new getUserTopology_resultTupleScheme();
       }
     }
 
-    private static class getTopology_resultTupleScheme extends TupleScheme<getTopology_result> {
+    private static class getUserTopology_resultTupleScheme extends TupleScheme<getUserTopology_result> {
 
       @Override
-      public void write(org.apache.thrift.protocol.TProtocol prot, getTopology_result struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol prot, getUserTopology_result struct) throws org.apache.thrift.TException {
         TTupleProtocol oprot = (TTupleProtocol) prot;
         BitSet optionals = new BitSet();
         if (struct.is_set_success()) {
@@ -45455,7 +46533,7 @@ public class Nimbus {
       }
 
       @Override
-      public void read(org.apache.thrift.protocol.TProtocol prot, getTopology_result struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol prot, getUserTopology_result struct) throws org.apache.thrift.TException {
         TTupleProtocol iprot = (TTupleProtocol) prot;
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
@@ -45478,22 +46556,22 @@ public class Nimbus {
 
   }
 
-  public static class getUserTopology_args implements org.apache.thrift.TBase<getUserTopology_args, getUserTopology_args._Fields>, java.io.Serializable, Cloneable, Comparable<getUserTopology_args>   {
-    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getUserTopology_args");
+  public static class getTopologyHistory_args implements org.apache.thrift.TBase<getTopologyHistory_args, getTopologyHistory_args._Fields>, java.io.Serializable, Cloneable, Comparable<getTopologyHistory_args>   {
+    private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTopologyHistory_args");
 
-    private static final org.apache.thrift.protocol.TField ID_FIELD_DESC = new org.apache.thrift.protocol.TField("id", org.apache.thrift.protocol.TType.STRING, (short)1);
+    private static final org.apache.thrift.protocol.TField USER_FIELD_DESC = new org.apache.thrift.protocol.TField("user", org.apache.thrift.protocol.TType.STRING, (short)1);
 
     private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>();
     static {
-      schemes.put(StandardScheme.class, new getUserTopology_argsStandardSchemeFactory());
-      schemes.put(TupleScheme.class, new getUserTopology_argsTupleSchemeFactory());
+      schemes.put(StandardScheme.class, new getTopologyHistory_argsStandardSchemeFactory());
+      schemes.put(TupleScheme.class, new getTopologyHistory_argsTupleSchemeFactory());
     }
 
-    private String id; // required
+    private String user; // required
 
     /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
     public enum _Fields implements org.apache.thrift.TFieldIdEnum {
-      ID((short)1, "id");
+      USER((short)1, "user");
 
       private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
 
@@ -45508,8 +46586,8 @@ public class Nimbus {
        */
       public static _Fields findByThriftId(int fieldId) {
         switch(fieldId) {
-          case 1: // ID
-            return ID;
+          case 1: // USER
+            return USER;
           default:
             return null;
         }
@@ -45553,70 +46631,70 @@ public class Nimbus {
     public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
     static {
       Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
-      tmpMap.put(_Fields.ID, new org.apache.thrift.meta_data.FieldMetaData("id", org.apache.thrift.TFieldRequirementType.DEFAULT, 
+      tmpMap.put(_Fields.USER, new org.apache.thrift.meta_data.FieldMetaData("user", org.apache.thrift.TFieldRequirementType.DEFAULT, 
           new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
       metaDataMap = Collections.unmodifiableMap(tmpMap);
-      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getUserTopology_args.class, metaDataMap);
+      org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTopologyHistory_args.class, metaDataMap);
     }
 
-    public getUserTopology_args() {
+    public getTopologyHistory_args() {
     }
 
-    public getUserTopology_args(
-      String id)
+    public getTopologyHistory_args(
+      String user)
     {
       this();
-      this.id = id;
+      this.user = user;
     }
 
     /**
      * Performs a deep copy on <i>other</i>.
      */
-    public getUserTopology_args(getUserTopology_args other) {
-      if (other.is_set_id()) {
-        this.id = other.id;
+    public getTopologyHistory_args(getTopologyHistory_args other) {
+      if (other.is_set_user()) {
+        this.user = other.user;
       }
     }
 
-    public getUserTopology_args deepCopy() {
-      return new getUserTopology_args(this);
+    public getTopologyHistory_args deepCopy() {
+      return new getTopologyHistory_args(this);
     }
 
     @Override
     public void clear() {
-      this.id = null;
+      this.user = null;
     }
 
-    public String get_id() {
-      return this.id;
+    public String get_user() {
+      return this.user;
     }
 
-    public void set_id(String id) {
-      this.id = id;
+    public void set_user(String user) {
+      this.user = user;
     }
 
-    public void unset_id() {
-      this.id = null;
+    public void unset_user() {
+      this.user = null;
     }
 
-    /** Returns true if field id is set (has been assigned a value) and false otherwise */
-    public boolean is_set_id() {
-      return this.id != null;
+    /** Returns true if field user is set (has been assigned a value) and false otherwise */
+    public boolean is_set_user() {
+      return this.user != null;
     }
 
-    public void set_id_isSet(boolean value) {
+    public void set_user_isSet(boolean value) {
       if (!value) {
-        this.id = null;
+        this.user = null;
       }
     }
 
     public void setFieldValue(_Fields field, Object value) {
       switch (field) {
-      case ID:
+      case USER:
         if (value == null) {
-          unset_id();
+          unset_user();
         } else {
-          set_id((String)value);
+          set_user((String)value);
         }
         break;
 
@@ -45625,8 +46703,8 @@ public class Nimbus {
 
     public Object getFieldValue(_Fields field) {
       switch (field) {
-      case ID:
-        return get_id();
+      case USER:
+        return get_user();
 
       }
       throw new IllegalStateException();
@@ -45639,8 +46717,8 @@ public class Nimbus {
       }
 
       switch (field) {
-      case ID:
-        return is_set_id();
+      case USER:
+        return is_set_user();
       }
       throw new IllegalStateException();
     }
@@ -45649,21 +46727,21 @@ public class Nimbus {
     public boolean equals(Object that) {
       if (that == null)
         return false;
-      if (that instanceof getUserTopology_args)
-        return this.equals((getUserTopology_args)that);
+      if (that instanceof getTopologyHistory_args)
+        return this.equals((getTopologyHistory_args)that);
       return false;
     }
 
-    public boolean equals(getUserTopology_args that) {
+    public boolean equals(getTopologyHistory_args that) {
       if (that == null)
         return false;
 
-      boolean this_present_id = true && this.is_set_id();
-      boolean that_present_id = true && that.is_set_id();
-      if (this_present_id || that_present_id) {
-        if (!(this_present_id && that_present_id))
+      boolean this_present_user = true && this.is_set_user();
+      boolean that_present_user = true && that.is_set_user();
+      if (this_present_user || that_present_user) {
+        if (!(this_present_user && that_present_user))
           return false;
-        if (!this.id.equals(that.id))
+        if (!this.user.equals(that.user))
           return false;
       }
 
@@ -45674,28 +46752,28 @@ public class Nimbus {
     public int hashCode() {
       List<Object> list = new ArrayList<Object>();
 
-      boolean present_id = true && (is_set_id());
-      list.add(present_id);
-      if (present_id)
-        list.add(id);
+      boolean present_user = true && (is_set_user());
+      list.add(present_user);
+      if (present_user)
+        list.add(user);
 
       return list.hashCode();
     }
 
     @Override
-    public int compareTo(getUserTopology_args other) {
+    public int compareTo(getTopologyHistory_args other) {
       if (!getClass().equals(other.getClass())) {
         return getClass().getName().compareTo(other.getClass().getName());
       }
 
       int lastComparison = 0;
 
-      lastComparison = Boolean.valueOf(is_set_id()).compareTo(other.is_set_id());
+      lastComparison = Boolean.valueOf(is_set_user()).compareTo(other.is_set_user());
       if (lastComparison != 0) {
         return lastComparison;
       }
-      if (is_set_id()) {
-        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.id, other.id);
+      if (is_set_user()) {
+        lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.user, other.user);
         if (lastComparison != 0) {
           return lastComparison;
         }
@@ -45717,14 +46795,14 @@ public class Nimbus {
 
     @Override
     public String toString() {
-      StringBuilder sb = new StringBuilder("getUserTopology_args(");
+      StringBuilder sb = new StringBuilder("getTopologyHistory_args(");
       boolean first = true;
 
-      sb.append("id:");
-      if (this.id == null) {
+      sb.append("user:");
+      if (this.user == null) {
         sb.append("null");
       } else {
-        sb.append(this.id);
+        sb.append(this.user);
       }
       first = false;
       sb.append(")");
@@ -45752,15 +46830,15 @@ public class Nimbus {
       }
     }
 
-    private static class getUserTopology_argsStandardSchemeFactory implements SchemeFactory {
-      public getUserTopology_argsStandardScheme getScheme() {
-        return new getUserTopology_argsStandardScheme();
+    private static class getTopologyHistory_argsStandardSchemeFactory implements SchemeFactory {
+      public getTopologyHistory_argsStandardScheme getScheme() {
+        return new getTopologyHistory_argsStandardScheme();
       }
     }
 
-    private static class getUserTopology_argsStandardScheme extends StandardScheme<getUserTopology_args> {
+    private static class getTopologyHistory_argsStandardScheme extends StandardScheme<getTopologyHistory_args> {
 
-      public void read(org.apache.thrift.protocol.TProtocol iprot, getUserTopology_args struct) throws org.apache.thrift.TException {
+      public void read(org.apache.thrift.protocol.TProtocol iprot, getTopologyHistory_args struct) throws org.apache.thrift.TException {
         org.apache.thrift.protocol.TField schemeField;
         iprot.readStructBegin();
         while (true)
@@ -45770,10 +46848,10 @@ public class Nimbus {
             break;
           }
           switch (schemeField.id) {
-            case 1: // ID
+            case 1: // USER
               if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
-                struct.id = iprot.readString();
-                struct.set_id_isSet(true);
+                struct.user = iprot.readString();
+                struct.set_user_isSet(true);
               } else { 
                 org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
               }
@@ -45787,13 +46865,13 @@ public class Nimbus {
         struct.validate();
       }
 
-      public void write(org.apache.thrift.protocol.TProtocol oprot, getUserTopology_args struct) throws org.apache.thrift.TException {
+      public void write(org.apache.thrift.protocol.TProtocol oprot, getTopologyHistory_args struct) throws org.apache.thrift.TException {
         struct.validate();
 
         oprot.writeStructBegin(STRUCT_DESC);
-        if (struct.id != null) {
-          oprot.writeFieldBegin(ID_FIELD_DESC);
-          oprot.writeString(struct.id);
+        if (struct.user != null) {
+          oprot.writeFieldBegin(USER_FIELD_DESC);
+          oprot.writeString(struct.user);
           oprot.writeFieldEnd();
         }
         oprot.writeFieldStop();
@@ -45802,62 +46880,59 @@ public class Nimbus {
 
     }
 
-    private static class getUserTopology_argsTupleSchemeFactory implements SchemeFactory {
-      public getUserTopology_argsTupleScheme getScheme() {
-        return new getUserTopology_argsTupleScheme();
+    private static class getTopologyHistory_argsTupleSchemeFactory implements SchemeFactory {
+      public getTopologyHistory_argsTupleScheme getScheme() {
+        return new getTopologyHistory_argsTupleScheme();
       }
     }
 
-    private static class getUserTopology_argsTupleScheme extends TupleScheme<getUserTopology_args> {
+    private static 

<TRUNCATED>