http://git-wip-us.apache.org/repos/asf/airavata/blob/56efa8e5/airavata-api/airavata-api-stubs/src/main/java/org/apache/airavata/api/Airavata.java ---------------------------------------------------------------------- diff --git a/airavata-api/airavata-api-stubs/src/main/java/org/apache/airavata/api/Airavata.java b/airavata-api/airavata-api-stubs/src/main/java/org/apache/airavata/api/Airavata.java index f893bb6..ff7d330 100644 --- a/airavata-api/airavata-api-stubs/src/main/java/org/apache/airavata/api/Airavata.java +++ b/airavata-api/airavata-api-stubs/src/main/java/org/apache/airavata/api/Airavata.java @@ -128,6 +128,8 @@ import org.slf4j.LoggerFactory; */ public org.apache.airavata.model.workspace.Project getProject(String projectId) throws org.apache.airavata.model.error.InvalidRequestException, org.apache.airavata.model.error.AiravataClientException, org.apache.airavata.model.error.AiravataSystemException, org.apache.airavata.model.error.ProjectNotFoundException, org.apache.thrift.TException; + public boolean deleteProject(String projectId) throws org.apache.airavata.model.error.InvalidRequestException, org.apache.airavata.model.error.AiravataClientException, org.apache.airavata.model.error.AiravataSystemException, org.apache.airavata.model.error.ProjectNotFoundException, org.apache.thrift.TException; + /** * * Get all Project by user * * @@ -1527,6 +1529,8 @@ import org.slf4j.LoggerFactory; public void getProject(String projectId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException; + public void deleteProject(String projectId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException; + public void getAllUserProjects(String gatewayId, String userName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException; public void searchProjectsByProjectName(String gatewayId, String userName, String projectName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException; @@ -2171,6 +2175,41 @@ import org.slf4j.LoggerFactory; throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getProject failed: unknown result"); } + public boolean deleteProject(String projectId) throws org.apache.airavata.model.error.InvalidRequestException, org.apache.airavata.model.error.AiravataClientException, org.apache.airavata.model.error.AiravataSystemException, org.apache.airavata.model.error.ProjectNotFoundException, org.apache.thrift.TException + { + send_deleteProject(projectId); + return recv_deleteProject(); + } + + public void send_deleteProject(String projectId) throws org.apache.thrift.TException + { + deleteProject_args args = new deleteProject_args(); + args.setProjectId(projectId); + sendBase("deleteProject", args); + } + + public boolean recv_deleteProject() throws org.apache.airavata.model.error.InvalidRequestException, org.apache.airavata.model.error.AiravataClientException, org.apache.airavata.model.error.AiravataSystemException, org.apache.airavata.model.error.ProjectNotFoundException, org.apache.thrift.TException + { + deleteProject_result result = new deleteProject_result(); + receiveBase(result, "deleteProject"); + if (result.isSetSuccess()) { + return result.success; + } + if (result.ire != null) { + throw result.ire; + } + if (result.ace != null) { + throw result.ace; + } + if (result.ase != null) { + throw result.ase; + } + if (result.pnfe != null) { + throw result.pnfe; + } + throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "deleteProject failed: unknown result"); + } + public List<org.apache.airavata.model.workspace.Project> getAllUserProjects(String gatewayId, String userName) throws org.apache.airavata.model.error.InvalidRequestException, org.apache.airavata.model.error.AiravataClientException, org.apache.airavata.model.error.AiravataSystemException, org.apache.thrift.TException { send_getAllUserProjects(gatewayId, userName); @@ -5945,6 +5984,38 @@ import org.slf4j.LoggerFactory; } } + public void deleteProject(String projectId, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + checkReady(); + deleteProject_call method_call = new deleteProject_call(projectId, resultHandler, this, ___protocolFactory, ___transport); + this.___currentMethod = method_call; + ___manager.call(method_call); + } + + public static class deleteProject_call extends org.apache.thrift.async.TAsyncMethodCall { + private String projectId; + public deleteProject_call(String projectId, 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.projectId = projectId; + } + + public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { + prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("deleteProject", org.apache.thrift.protocol.TMessageType.CALL, 0)); + deleteProject_args args = new deleteProject_args(); + args.setProjectId(projectId); + args.write(prot); + prot.writeMessageEnd(); + } + + public boolean getResult() throws org.apache.airavata.model.error.InvalidRequestException, org.apache.airavata.model.error.AiravataClientException, org.apache.airavata.model.error.AiravataSystemException, org.apache.airavata.model.error.ProjectNotFoundException, 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_deleteProject(); + } + } + public void getAllUserProjects(String gatewayId, String userName, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { checkReady(); getAllUserProjects_call method_call = new getAllUserProjects_call(gatewayId, userName, resultHandler, this, ___protocolFactory, ___transport); @@ -9436,6 +9507,7 @@ import org.slf4j.LoggerFactory; processMap.put("createProject", new createProject()); processMap.put("updateProject", new updateProject()); processMap.put("getProject", new getProject()); + processMap.put("deleteProject", new deleteProject()); processMap.put("getAllUserProjects", new getAllUserProjects()); processMap.put("searchProjectsByProjectName", new searchProjectsByProjectName()); processMap.put("searchProjectsByProjectDesc", new searchProjectsByProjectDesc()); @@ -9911,6 +9983,37 @@ import org.slf4j.LoggerFactory; } } + public static class deleteProject<I extends Iface> extends org.apache.thrift.ProcessFunction<I, deleteProject_args> { + public deleteProject() { + super("deleteProject"); + } + + public deleteProject_args getEmptyArgsInstance() { + return new deleteProject_args(); + } + + protected boolean isOneway() { + return false; + } + + public deleteProject_result getResult(I iface, deleteProject_args args) throws org.apache.thrift.TException { + deleteProject_result result = new deleteProject_result(); + try { + result.success = iface.deleteProject(args.projectId); + result.setSuccessIsSet(true); + } catch (org.apache.airavata.model.error.InvalidRequestException ire) { + result.ire = ire; + } catch (org.apache.airavata.model.error.AiravataClientException ace) { + result.ace = ace; + } catch (org.apache.airavata.model.error.AiravataSystemException ase) { + result.ase = ase; + } catch (org.apache.airavata.model.error.ProjectNotFoundException pnfe) { + result.pnfe = pnfe; + } + return result; + } + } + public static class getAllUserProjects<I extends Iface> extends org.apache.thrift.ProcessFunction<I, getAllUserProjects_args> { public getAllUserProjects() { super("getAllUserProjects"); @@ -12837,6 +12940,7 @@ import org.slf4j.LoggerFactory; processMap.put("createProject", new createProject()); processMap.put("updateProject", new updateProject()); processMap.put("getProject", new getProject()); + processMap.put("deleteProject", new deleteProject()); processMap.put("getAllUserProjects", new getAllUserProjects()); processMap.put("searchProjectsByProjectName", new searchProjectsByProjectName()); processMap.put("searchProjectsByProjectDesc", new searchProjectsByProjectDesc()); @@ -13823,6 +13927,79 @@ import org.slf4j.LoggerFactory; } } + public static class deleteProject<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, deleteProject_args, Boolean> { + public deleteProject() { + super("deleteProject"); + } + + public deleteProject_args getEmptyArgsInstance() { + return new deleteProject_args(); + } + + public AsyncMethodCallback<Boolean> getResultHandler(final AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new AsyncMethodCallback<Boolean>() { + public void onComplete(Boolean o) { + deleteProject_result result = new deleteProject_result(); + result.success = o; + result.setSuccessIsSet(true); + 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; + deleteProject_result result = new deleteProject_result(); + if (e instanceof org.apache.airavata.model.error.InvalidRequestException) { + result.ire = (org.apache.airavata.model.error.InvalidRequestException) e; + result.setIreIsSet(true); + msg = result; + } + else if (e instanceof org.apache.airavata.model.error.AiravataClientException) { + result.ace = (org.apache.airavata.model.error.AiravataClientException) e; + result.setAceIsSet(true); + msg = result; + } + else if (e instanceof org.apache.airavata.model.error.AiravataSystemException) { + result.ase = (org.apache.airavata.model.error.AiravataSystemException) e; + result.setAseIsSet(true); + msg = result; + } + else if (e instanceof org.apache.airavata.model.error.ProjectNotFoundException) { + result.pnfe = (org.apache.airavata.model.error.ProjectNotFoundException) e; + result.setPnfeIsSet(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, deleteProject_args args, org.apache.thrift.async.AsyncMethodCallback<Boolean> resultHandler) throws TException { + iface.deleteProject(args.projectId,resultHandler); + } + } + public static class getAllUserProjects<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, getAllUserProjects_args, List<org.apache.airavata.model.workspace.Project>> { public getAllUserProjects() { super("getAllUserProjects"); @@ -20792,33 +20969,993 @@ import org.slf4j.LoggerFactory; static { Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); metaDataMap = Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getAPIVersion_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getAPIVersion_args.class, metaDataMap); + } + + public getAPIVersion_args() { + } + + /** + * Performs a deep copy on <i>other</i>. + */ + public getAPIVersion_args(getAPIVersion_args other) { + } + + public getAPIVersion_args deepCopy() { + return new getAPIVersion_args(this); + } + + @Override + public void clear() { + } + + public void setFieldValue(_Fields field, Object value) { + switch (field) { + } + } + + public Object getFieldValue(_Fields field) { + switch (field) { + } + 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) { + } + throw new IllegalStateException(); + } + + @Override + public boolean equals(Object that) { + if (that == null) + return false; + if (that instanceof getAPIVersion_args) + return this.equals((getAPIVersion_args)that); + return false; + } + + public boolean equals(getAPIVersion_args that) { + if (that == null) + return false; + + return true; + } + + @Override + public int hashCode() { + return 0; + } + + @Override + public int compareTo(getAPIVersion_args other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + 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("getAPIVersion_args("); + boolean first = true; + + 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 getAPIVersion_argsStandardSchemeFactory implements SchemeFactory { + public getAPIVersion_argsStandardScheme getScheme() { + return new getAPIVersion_argsStandardScheme(); + } + } + + private static class getAPIVersion_argsStandardScheme extends StandardScheme<getAPIVersion_args> { + + public void read(org.apache.thrift.protocol.TProtocol iprot, getAPIVersion_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) { + default: + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + iprot.readFieldEnd(); + } + iprot.readStructEnd(); + + // check for required fields of primitive type, which can't be checked in the validate method + struct.validate(); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot, getAPIVersion_args struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class getAPIVersion_argsTupleSchemeFactory implements SchemeFactory { + public getAPIVersion_argsTupleScheme getScheme() { + return new getAPIVersion_argsTupleScheme(); + } + } + + private static class getAPIVersion_argsTupleScheme extends TupleScheme<getAPIVersion_args> { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, getAPIVersion_args struct) throws org.apache.thrift.TException { + TTupleProtocol oprot = (TTupleProtocol) prot; + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, getAPIVersion_args struct) throws org.apache.thrift.TException { + TTupleProtocol iprot = (TTupleProtocol) prot; + } + } + + } + + public static class getAPIVersion_result implements org.apache.thrift.TBase<getAPIVersion_result, getAPIVersion_result._Fields>, java.io.Serializable, Cloneable, Comparable<getAPIVersion_result> { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getAPIVersion_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 IRE_FIELD_DESC = new org.apache.thrift.protocol.TField("ire", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField ACE_FIELD_DESC = new org.apache.thrift.protocol.TField("ace", org.apache.thrift.protocol.TType.STRUCT, (short)2); + private static final org.apache.thrift.protocol.TField ASE_FIELD_DESC = new org.apache.thrift.protocol.TField("ase", org.apache.thrift.protocol.TType.STRUCT, (short)3); + + private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); + static { + schemes.put(StandardScheme.class, new getAPIVersion_resultStandardSchemeFactory()); + schemes.put(TupleScheme.class, new getAPIVersion_resultTupleSchemeFactory()); + } + + public String success; // required + public org.apache.airavata.model.error.InvalidRequestException ire; // required + public org.apache.airavata.model.error.AiravataClientException ace; // required + public org.apache.airavata.model.error.AiravataSystemException ase; // required + + /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ + @SuppressWarnings("all") public enum _Fields implements org.apache.thrift.TFieldIdEnum { + SUCCESS((short)0, "success"), + IRE((short)1, "ire"), + ACE((short)2, "ace"), + ASE((short)3, "ase"); + + 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: // IRE + return IRE; + case 2: // ACE + return ACE; + case 3: // ASE + return ASE; + 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.IRE, new org.apache.thrift.meta_data.FieldMetaData("ire", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT))); + tmpMap.put(_Fields.ACE, new org.apache.thrift.meta_data.FieldMetaData("ace", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT))); + tmpMap.put(_Fields.ASE, new org.apache.thrift.meta_data.FieldMetaData("ase", 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(getAPIVersion_result.class, metaDataMap); + } + + public getAPIVersion_result() { + } + + public getAPIVersion_result( + String success, + org.apache.airavata.model.error.InvalidRequestException ire, + org.apache.airavata.model.error.AiravataClientException ace, + org.apache.airavata.model.error.AiravataSystemException ase) + { + this(); + this.success = success; + this.ire = ire; + this.ace = ace; + this.ase = ase; + } + + /** + * Performs a deep copy on <i>other</i>. + */ + public getAPIVersion_result(getAPIVersion_result other) { + if (other.isSetSuccess()) { + this.success = other.success; + } + if (other.isSetIre()) { + this.ire = new org.apache.airavata.model.error.InvalidRequestException(other.ire); + } + if (other.isSetAce()) { + this.ace = new org.apache.airavata.model.error.AiravataClientException(other.ace); + } + if (other.isSetAse()) { + this.ase = new org.apache.airavata.model.error.AiravataSystemException(other.ase); + } + } + + public getAPIVersion_result deepCopy() { + return new getAPIVersion_result(this); + } + + @Override + public void clear() { + this.success = null; + this.ire = null; + this.ace = null; + this.ase = null; + } + + public String getSuccess() { + return this.success; + } + + public getAPIVersion_result setSuccess(String success) { + this.success = success; + return this; + } + + public void unsetSuccess() { + this.success = null; + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return this.success != null; + } + + public void setSuccessIsSet(boolean value) { + if (!value) { + this.success = null; + } + } + + public org.apache.airavata.model.error.InvalidRequestException getIre() { + return this.ire; + } + + public getAPIVersion_result setIre(org.apache.airavata.model.error.InvalidRequestException ire) { + this.ire = ire; + return this; + } + + public void unsetIre() { + this.ire = null; + } + + /** Returns true if field ire is set (has been assigned a value) and false otherwise */ + public boolean isSetIre() { + return this.ire != null; + } + + public void setIreIsSet(boolean value) { + if (!value) { + this.ire = null; + } + } + + public org.apache.airavata.model.error.AiravataClientException getAce() { + return this.ace; + } + + public getAPIVersion_result setAce(org.apache.airavata.model.error.AiravataClientException ace) { + this.ace = ace; + return this; + } + + public void unsetAce() { + this.ace = null; + } + + /** Returns true if field ace is set (has been assigned a value) and false otherwise */ + public boolean isSetAce() { + return this.ace != null; + } + + public void setAceIsSet(boolean value) { + if (!value) { + this.ace = null; + } + } + + public org.apache.airavata.model.error.AiravataSystemException getAse() { + return this.ase; + } + + public getAPIVersion_result setAse(org.apache.airavata.model.error.AiravataSystemException ase) { + this.ase = ase; + return this; + } + + public void unsetAse() { + this.ase = null; + } + + /** Returns true if field ase is set (has been assigned a value) and false otherwise */ + public boolean isSetAse() { + return this.ase != null; + } + + public void setAseIsSet(boolean value) { + if (!value) { + this.ase = null; + } + } + + public void setFieldValue(_Fields field, Object value) { + switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((String)value); + } + break; + + case IRE: + if (value == null) { + unsetIre(); + } else { + setIre((org.apache.airavata.model.error.InvalidRequestException)value); + } + break; + + case ACE: + if (value == null) { + unsetAce(); + } else { + setAce((org.apache.airavata.model.error.AiravataClientException)value); + } + break; + + case ASE: + if (value == null) { + unsetAse(); + } else { + setAse((org.apache.airavata.model.error.AiravataSystemException)value); + } + break; + + } + } + + public Object getFieldValue(_Fields field) { + switch (field) { + case SUCCESS: + return getSuccess(); + + case IRE: + return getIre(); + + case ACE: + return getAce(); + + case ASE: + return getAse(); + + } + 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 isSetSuccess(); + case IRE: + return isSetIre(); + case ACE: + return isSetAce(); + case ASE: + return isSetAse(); + } + throw new IllegalStateException(); + } + + @Override + public boolean equals(Object that) { + if (that == null) + return false; + if (that instanceof getAPIVersion_result) + return this.equals((getAPIVersion_result)that); + return false; + } + + public boolean equals(getAPIVersion_result that) { + if (that == null) + return false; + + boolean this_present_success = true && this.isSetSuccess(); + boolean that_present_success = true && that.isSetSuccess(); + 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_ire = true && this.isSetIre(); + boolean that_present_ire = true && that.isSetIre(); + if (this_present_ire || that_present_ire) { + if (!(this_present_ire && that_present_ire)) + return false; + if (!this.ire.equals(that.ire)) + return false; + } + + boolean this_present_ace = true && this.isSetAce(); + boolean that_present_ace = true && that.isSetAce(); + if (this_present_ace || that_present_ace) { + if (!(this_present_ace && that_present_ace)) + return false; + if (!this.ace.equals(that.ace)) + return false; + } + + boolean this_present_ase = true && this.isSetAse(); + boolean that_present_ase = true && that.isSetAse(); + if (this_present_ase || that_present_ase) { + if (!(this_present_ase && that_present_ase)) + return false; + if (!this.ase.equals(that.ase)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + return 0; + } + + @Override + public int compareTo(getAPIVersion_result other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSuccess()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetIre()).compareTo(other.isSetIre()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetIre()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ire, other.ire); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetAce()).compareTo(other.isSetAce()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetAce()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ace, other.ace); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetAse()).compareTo(other.isSetAse()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetAse()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ase, other.ase); + 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("getAPIVersion_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("ire:"); + if (this.ire == null) { + sb.append("null"); + } else { + sb.append(this.ire); + } + first = false; + if (!first) sb.append(", "); + sb.append("ace:"); + if (this.ace == null) { + sb.append("null"); + } else { + sb.append(this.ace); + } + first = false; + if (!first) sb.append(", "); + sb.append("ase:"); + if (this.ase == null) { + sb.append("null"); + } else { + sb.append(this.ase); + } + 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 getAPIVersion_resultStandardSchemeFactory implements SchemeFactory { + public getAPIVersion_resultStandardScheme getScheme() { + return new getAPIVersion_resultStandardScheme(); + } + } + + private static class getAPIVersion_resultStandardScheme extends StandardScheme<getAPIVersion_result> { + + public void read(org.apache.thrift.protocol.TProtocol iprot, getAPIVersion_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.STRING) { + struct.success = iprot.readString(); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 1: // IRE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ire = new org.apache.airavata.model.error.InvalidRequestException(); + struct.ire.read(iprot); + struct.setIreIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // ACE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ace = new org.apache.airavata.model.error.AiravataClientException(); + struct.ace.read(iprot); + struct.setAceIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // ASE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.ase = new org.apache.airavata.model.error.AiravataSystemException(); + struct.ase.read(iprot); + struct.setAseIsSet(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(); + + // check for required fields of primitive type, which can't be checked in the validate method + struct.validate(); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot, getAPIVersion_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); + oprot.writeFieldEnd(); + } + if (struct.ire != null) { + oprot.writeFieldBegin(IRE_FIELD_DESC); + struct.ire.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ace != null) { + oprot.writeFieldBegin(ACE_FIELD_DESC); + struct.ace.write(oprot); + oprot.writeFieldEnd(); + } + if (struct.ase != null) { + oprot.writeFieldBegin(ASE_FIELD_DESC); + struct.ase.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class getAPIVersion_resultTupleSchemeFactory implements SchemeFactory { + public getAPIVersion_resultTupleScheme getScheme() { + return new getAPIVersion_resultTupleScheme(); + } + } + + private static class getAPIVersion_resultTupleScheme extends TupleScheme<getAPIVersion_result> { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, getAPIVersion_result struct) throws org.apache.thrift.TException { + TTupleProtocol oprot = (TTupleProtocol) prot; + BitSet optionals = new BitSet(); + if (struct.isSetSuccess()) { + optionals.set(0); + } + if (struct.isSetIre()) { + optionals.set(1); + } + if (struct.isSetAce()) { + optionals.set(2); + } + if (struct.isSetAse()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); + if (struct.isSetSuccess()) { + oprot.writeString(struct.success); + } + if (struct.isSetIre()) { + struct.ire.write(oprot); + } + if (struct.isSetAce()) { + struct.ace.write(oprot); + } + if (struct.isSetAse()) { + struct.ase.write(oprot); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, getAPIVersion_result struct) throws org.apache.thrift.TException { + TTupleProtocol iprot = (TTupleProtocol) prot; + BitSet incoming = iprot.readBitSet(4); + if (incoming.get(0)) { + struct.success = iprot.readString(); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { + struct.ire = new org.apache.airavata.model.error.InvalidRequestException(); + struct.ire.read(iprot); + struct.setIreIsSet(true); + } + if (incoming.get(2)) { + struct.ace = new org.apache.airavata.model.error.AiravataClientException(); + struct.ace.read(iprot); + struct.setAceIsSet(true); + } + if (incoming.get(3)) { + struct.ase = new org.apache.airavata.model.error.AiravataSystemException(); + struct.ase.read(iprot); + struct.setAseIsSet(true); + } + } + } + + } + + public static class addGateway_args implements org.apache.thrift.TBase<addGateway_args, addGateway_args._Fields>, java.io.Serializable, Cloneable, Comparable<addGateway_args> { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addGateway_args"); + + private static final org.apache.thrift.protocol.TField GATEWAY_FIELD_DESC = new org.apache.thrift.protocol.TField("gateway", org.apache.thrift.protocol.TType.STRUCT, (short)1); + + private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); + static { + schemes.put(StandardScheme.class, new addGateway_argsStandardSchemeFactory()); + schemes.put(TupleScheme.class, new addGateway_argsTupleSchemeFactory()); + } + + public org.apache.airavata.model.workspace.Gateway gateway; // required + + /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ + @SuppressWarnings("all") public enum _Fields implements org.apache.thrift.TFieldIdEnum { + GATEWAY((short)1, "gateway"); + + 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: // GATEWAY + return GATEWAY; + 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.GATEWAY, new org.apache.thrift.meta_data.FieldMetaData("gateway", org.apache.thrift.TFieldRequirementType.REQUIRED, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, org.apache.airavata.model.workspace.Gateway.class))); + metaDataMap = Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addGateway_args.class, metaDataMap); } - public getAPIVersion_args() { + public addGateway_args() { + } + + public addGateway_args( + org.apache.airavata.model.workspace.Gateway gateway) + { + this(); + this.gateway = gateway; } /** * Performs a deep copy on <i>other</i>. */ - public getAPIVersion_args(getAPIVersion_args other) { + public addGateway_args(addGateway_args other) { + if (other.isSetGateway()) { + this.gateway = new org.apache.airavata.model.workspace.Gateway(other.gateway); + } } - public getAPIVersion_args deepCopy() { - return new getAPIVersion_args(this); + public addGateway_args deepCopy() { + return new addGateway_args(this); } @Override public void clear() { + this.gateway = null; + } + + public org.apache.airavata.model.workspace.Gateway getGateway() { + return this.gateway; + } + + public addGateway_args setGateway(org.apache.airavata.model.workspace.Gateway gateway) { + this.gateway = gateway; + return this; + } + + public void unsetGateway() { + this.gateway = null; + } + + /** Returns true if field gateway is set (has been assigned a value) and false otherwise */ + public boolean isSetGateway() { + return this.gateway != null; + } + + public void setGatewayIsSet(boolean value) { + if (!value) { + this.gateway = null; + } } public void setFieldValue(_Fields field, Object value) { switch (field) { + case GATEWAY: + if (value == null) { + unsetGateway(); + } else { + setGateway((org.apache.airavata.model.workspace.Gateway)value); + } + break; + } } public Object getFieldValue(_Fields field) { switch (field) { + case GATEWAY: + return getGateway(); + } throw new IllegalStateException(); } @@ -20830,6 +21967,8 @@ import org.slf4j.LoggerFactory; } switch (field) { + case GATEWAY: + return isSetGateway(); } throw new IllegalStateException(); } @@ -20838,15 +21977,24 @@ import org.slf4j.LoggerFactory; public boolean equals(Object that) { if (that == null) return false; - if (that instanceof getAPIVersion_args) - return this.equals((getAPIVersion_args)that); + if (that instanceof addGateway_args) + return this.equals((addGateway_args)that); return false; } - public boolean equals(getAPIVersion_args that) { + public boolean equals(addGateway_args that) { if (that == null) return false; + boolean this_present_gateway = true && this.isSetGateway(); + boolean that_present_gateway = true && that.isSetGateway(); + if (this_present_gateway || that_present_gateway) { + if (!(this_present_gateway && that_present_gateway)) + return false; + if (!this.gateway.equals(that.gateway)) + return false; + } + return true; } @@ -20856,13 +22004,23 @@ import org.slf4j.LoggerFactory; } @Override - public int compareTo(getAPIVersion_args other) { + public int compareTo(addGateway_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = Boolean.valueOf(isSetGateway()).compareTo(other.isSetGateway()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetGateway()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.gateway, other.gateway); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -20880,16 +22038,29 @@ import org.slf4j.LoggerFactory; @Override public String toString() { - StringBuilder sb = new StringBuilder("getAPIVersion_args("); + StringBuilder sb = new StringBuilder("addGateway_args("); boolean first = true; + sb.append("gateway:"); + if (this.gateway == null) { + sb.append("null"); + } else { + sb.append(this.gateway); + } + first = false; sb.append(")"); return sb.toString(); } public void validate() throws org.apache.thrift.TException { // check for required fields + if (gateway == null) { + throw new org.apache.thrift.protocol.TProtocolException("Required field 'gateway' was not present! Struct: " + toString()); + } // check for sub-struct validity + if (gateway != null) { + gateway.validate(); + } } private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { @@ -20908,15 +22079,15 @@ import org.slf4j.LoggerFactory; } } - private static class getAPIVersion_argsStandardSchemeFactory implements SchemeFactory { - public getAPIVersion_argsStandardScheme getScheme() { - return new getAPIVersion_argsStandardScheme(); + private static class addGateway_argsStandardSchemeFactory implements SchemeFactory { + public addGateway_argsStandardScheme getScheme() { + return new addGateway_argsStandardScheme(); } } - private static class getAPIVersion_argsStandardScheme extends StandardScheme<getAPIVersion_args> { + private static class addGateway_argsStandardScheme extends StandardScheme<addGateway_args> { - public void read(org.apache.thrift.protocol.TProtocol iprot, getAPIVersion_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, addGateway_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -20926,6 +22097,15 @@ import org.slf4j.LoggerFactory; break; } switch (schemeField.id) { + case 1: // GATEWAY + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.gateway = new org.apache.airavata.model.workspace.Gateway(); + struct.gateway.read(iprot); + struct.setGatewayIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -20937,39 +22117,48 @@ import org.slf4j.LoggerFactory; struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, getAPIVersion_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, addGateway_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.gateway != null) { + oprot.writeFieldBegin(GATEWAY_FIELD_DESC); + struct.gateway.write(oprot); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getAPIVersion_argsTupleSchemeFactory implements SchemeFactory { - public getAPIVersion_argsTupleScheme getScheme() { - return new getAPIVersion_argsTupleScheme(); + private static class addGateway_argsTupleSchemeFactory implements SchemeFactory { + public addGateway_argsTupleScheme getScheme() { + return new addGateway_argsTupleScheme(); } } - private static class getAPIVersion_argsTupleScheme extends TupleScheme<getAPIVersion_args> { + private static class addGateway_argsTupleScheme extends TupleScheme<addGateway_args> { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getAPIVersion_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, addGateway_args struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; + struct.gateway.write(oprot); } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getAPIVersion_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, addGateway_args struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; + struct.gateway = new org.apache.airavata.model.workspace.Gateway(); + struct.gateway.read(iprot); + struct.setGatewayIsSet(true); } } } - public static class getAPIVersion_result implements org.apache.thrift.TBase<getAPIVersion_result, getAPIVersion_result._Fields>, java.io.Serializable, Cloneable, Comparable<getAPIVersion_result> { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getAPIVersion_result"); + public static class addGateway_result implements org.apache.thrift.TBase<addGateway_result, addGateway_result._Fields>, java.io.Serializable, Cloneable, Comparable<addGateway_result> { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addGateway_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 IRE_FIELD_DESC = new org.apache.thrift.protocol.TField("ire", org.apache.thrift.protocol.TType.STRUCT, (short)1); @@ -20978,8 +22167,8 @@ import org.slf4j.LoggerFactory; private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); static { - schemes.put(StandardScheme.class, new getAPIVersion_resultStandardSchemeFactory()); - schemes.put(TupleScheme.class, new getAPIVersion_resultTupleSchemeFactory()); + schemes.put(StandardScheme.class, new addGateway_resultStandardSchemeFactory()); + schemes.put(TupleScheme.class, new addGateway_resultTupleSchemeFactory()); } public String success; // required @@ -21067,13 +22256,13 @@ import org.slf4j.LoggerFactory; tmpMap.put(_Fields.ASE, new org.apache.thrift.meta_data.FieldMetaData("ase", 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(getAPIVersion_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addGateway_result.class, metaDataMap); } - public getAPIVersion_result() { + public addGateway_result() { } - public getAPIVersion_result( + public addGateway_result( String success, org.apache.airavata.model.error.InvalidRequestException ire, org.apache.airavata.model.error.AiravataClientException ace, @@ -21089,7 +22278,7 @@ import org.slf4j.LoggerFactory; /** * Performs a deep copy on <i>other</i>. */ - public getAPIVersion_result(getAPIVersion_result other) { + public addGateway_result(addGateway_result other) { if (other.isSetSuccess()) { this.success = other.success; } @@ -21104,8 +22293,8 @@ import org.slf4j.LoggerFactory; } } - public getAPIVersion_result deepCopy() { - return new getAPIVersion_result(this); + public addGateway_result deepCopy() { + return new addGateway_result(this); } @Override @@ -21120,7 +22309,7 @@ import org.slf4j.LoggerFactory; return this.success; } - public getAPIVersion_result setSuccess(String success) { + public addGateway_result setSuccess(String success) { this.success = success; return this; } @@ -21144,7 +22333,7 @@ import org.slf4j.LoggerFactory; return this.ire; } - public getAPIVersion_result setIre(org.apache.airavata.model.error.InvalidRequestException ire) { + public addGateway_result setIre(org.apache.airavata.model.error.InvalidRequestException ire) { this.ire = ire; return this; } @@ -21168,7 +22357,7 @@ import org.slf4j.LoggerFactory; return this.ace; } - public getAPIVersion_result setAce(org.apache.airavata.model.error.AiravataClientException ace) { + public addGateway_result setAce(org.apache.airavata.model.error.AiravataClientException ace) { this.ace = ace; return this; } @@ -21192,7 +22381,7 @@ import org.slf4j.LoggerFactory; return this.ase; } - public getAPIVersion_result setAse(org.apache.airavata.model.error.AiravataSystemException ase) { + public addGateway_result setAse(org.apache.airavata.model.error.AiravataSystemException ase) { this.ase = ase; return this; } @@ -21290,12 +22479,12 @@ import org.slf4j.LoggerFactory; public boolean equals(Object that) { if (that == null) return false; - if (that instanceof getAPIVersion_result) - return this.equals((getAPIVersion_result)that); + if (that instanceof addGateway_result) + return this.equals((addGateway_result)that); return false; } - public boolean equals(getAPIVersion_result that) { + public boolean equals(addGateway_result that) { if (that == null) return false; @@ -21344,7 +22533,7 @@ import org.slf4j.LoggerFactory; } @Override - public int compareTo(getAPIVersion_result other) { + public int compareTo(addGateway_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -21408,7 +22597,7 @@ import org.slf4j.LoggerFactory; @Override public String toString() { - StringBuilder sb = new StringBuilder("getAPIVersion_result("); + StringBuilder sb = new StringBuilder("addGateway_result("); boolean first = true; sb.append("success:"); @@ -21467,15 +22656,15 @@ import org.slf4j.LoggerFactory; } } - private static class getAPIVersion_resultStandardSchemeFactory implements SchemeFactory { - public getAPIVersion_resultStandardScheme getScheme() { - return new getAPIVersion_resultStandardScheme(); + private static class addGateway_resultStandardSchemeFactory implements SchemeFactory { + public addGateway_resultStandardScheme getScheme() { + return new addGateway_resultStandardScheme(); } } - private static class getAPIVersion_resultStandardScheme extends StandardScheme<getAPIVersion_result> { + private static class addGateway_resultStandardScheme extends StandardScheme<addGateway_result> { - public void read(org.apache.thrift.protocol.TProtocol iprot, getAPIVersion_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, addGateway_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -21531,7 +22720,7 @@ import org.slf4j.LoggerFactory; struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, getAPIVersion_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, addGateway_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -21561,16 +22750,16 @@ import org.slf4j.LoggerFactory; } - private static class getAPIVersion_resultTupleSchemeFactory implements SchemeFactory { - public getAPIVersion_resultTupleScheme getScheme() { - return new getAPIVersion_resultTupleScheme(); + private static class addGateway_resultTupleSchemeFactory implements SchemeFactory { + public addGateway_resultTupleScheme getScheme() { + return new addGateway_resultTupleScheme(); } } - private static class getAPIVersion_resultTupleScheme extends TupleScheme<getAPIVersion_result> { + private static class addGateway_resultTupleScheme extends TupleScheme<addGateway_result> { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getAPIVersion_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, addGateway_result struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; BitSet optionals = new BitSet(); if (struct.isSetSuccess()) { @@ -21601,7 +22790,7 @@ import org.slf4j.LoggerFactory; } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getAPIVersion_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, addGateway_result struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { @@ -21628,22 +22817,25 @@ import org.slf4j.LoggerFactory; } - public static class addGateway_args implements org.apache.thrift.TBase<addGateway_args, addGateway_args._Fields>, java.io.Serializable, Cloneable, Comparable<addGateway_args> { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addGateway_args"); + public static class updateGateway_args implements org.apache.thrift.TBase<updateGateway_args, updateGateway_args._Fields>, java.io.Serializable, Cloneable, Comparable<updateGateway_args> { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateGateway_args"); - private static final org.apache.thrift.protocol.TField GATEWAY_FIELD_DESC = new org.apache.thrift.protocol.TField("gateway", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField GATEWAY_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("gatewayId", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField UPDATED_GATEWAY_FIELD_DESC = new org.apache.thrift.protocol.TField("updatedGateway", 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 addGateway_argsStandardSchemeFactory()); - schemes.put(TupleScheme.class, new addGateway_argsTupleSchemeFactory()); + schemes.put(StandardScheme.class, new updateGateway_argsStandardSchemeFactory()); + schemes.put(TupleScheme.class, new updateGateway_argsTupleSchemeFactory()); } - public org.apache.airavata.model.workspace.Gateway gateway; // required + public String gatewayId; // required + public org.apache.airavata.model.workspace.Gateway updatedGateway; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ @SuppressWarnings("all") public enum _Fields implements org.apache.thrift.TFieldIdEnum { - GATEWAY((short)1, "gateway"); + GATEWAY_ID((short)1, "gatewayId"), + UPDATED_GATEWAY((short)2, "updatedGateway"); private static final Map<String, _Fields> byName = new HashMap<String, _Fields>(); @@ -21658,8 +22850,10 @@ import org.slf4j.LoggerFactory; */ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // GATEWAY - return GATEWAY; + case 1: // GATEWAY_ID + return GATEWAY_ID; + case 2: // UPDATED_GATEWAY + return UPDATED_GATEWAY; default: return null; } @@ -21703,71 +22897,111 @@ import org.slf4j.LoggerFactory; 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.GATEWAY, new org.apache.thrift.meta_data.FieldMetaData("gateway", org.apache.thrift.TFieldRequirementType.REQUIRED, + tmpMap.put(_Fields.GATEWAY_ID, new org.apache.thrift.meta_data.FieldMetaData("gatewayId", org.apache.thrift.TFieldRequirementType.REQUIRED, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.UPDATED_GATEWAY, new org.apache.thrift.meta_data.FieldMetaData("updatedGateway", org.apache.thrift.TFieldRequirementType.REQUIRED, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, org.apache.airavata.model.workspace.Gateway.class))); metaDataMap = Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(addGateway_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(updateGateway_args.class, metaDataMap); } - public addGateway_args() { + public updateGateway_args() { } - public addGateway_args( - org.apache.airavata.model.workspace.Gateway gateway) + public updateGateway_args( + String gatewayId, + org.apache.airavata.model.workspace.Gateway updatedGateway) { this(); - this.gateway = gateway; + this.gatewayId = gatewayId; + this.updatedGateway = updatedGateway; } /** * Performs a deep copy on <i>other</i>. */ - public addGateway_args(addGateway_args other) { - if (other.isSetGateway()) { - this.gateway = new org.apache.airavata.model.workspace.Gateway(other.gateway); + public updateGateway_args(updateGateway_args other) { + if (other.isSetGatewayId()) { + this.gatewayId = other.gatewayId; + } + if (other.isSetUpdatedGateway()) { + this.updatedGateway = new org.apache.airavata.model.workspace.Gateway(other.updatedGateway); } } - public addGateway_args deepCopy() { - return new addGateway_args(this); + public updateGateway_args deepCopy() { + return new updateGateway_args(this); } @Override public void clear() { - this.gateway = null; + this.gatewayId = null; + this.updatedGateway = null; } - public org.apache.airavata.model.workspace.Gateway getGateway() { - return this.gateway; + public String getGatewayId() { + return this.gatewayId; } - public addGateway_args setGateway(org.apache.airavata.model.workspace.Gateway gateway) { - this.gateway = gateway; + public updateGateway_args setGatewayId(String gatewayId) { + this.gatewayId = gatewayId; return this; } - public void unsetGateway() { - this.gateway = null; + public void unsetGatewayId() { + this.gatewayId = null; } - /** Returns true if field gateway is set (has been assigned a value) and false otherwise */ - public boolean isSetGateway() { - return this.gateway != null; + /** Returns true if field gatewayId is set (has been assigned a value) and false otherwise */ + public boolean isSetGatewayId() { + return this.gatewayId != null; } - public void setGatewayIsSet(boolean value) { + public void setGatewayIdIsSet(boolean value) { if (!value) { - this.gateway = null; + this.gatewayId = null; + } + } + + public org.apache.airavata.model.workspace.Gateway getUpdatedGateway() { + return this.updatedGateway; + } + + public updateGateway_args setUpdatedGateway(org.apache.airavata.model.workspace.Gateway updatedGateway) { + this.updatedGateway = updatedGateway; + return this; + } + + public void unsetUpdatedGateway() { + this.updatedGateway = null; + } + + /** Returns true if field updatedGateway is set (has been assigned a value) and false otherwise */ + public boolean isSetUpdatedGateway() { + return this.updatedGateway != null; + } + + public void setUpdatedGatewayIsSet(boolean value) { + if (!value) { + this.updatedGateway = null; } } public void setFieldValue(_Fields field, Object value) { switch (field) { - case GATEWAY: + case GATEWAY_ID: if (value == null) { - unsetGateway(); + unsetGatewayId(); } else { - setGateway((org.apache.airavata.model.workspace.Gateway)value); + setGatewayId((String)value); + } + break; + + case UPDATED_GATEWAY: + if (value == null) { + unsetUpdatedGateway(); + } else { + setUpdatedGateway((org.apache.airavata.model.workspace.Gateway)value); } break; @@ -21776,8 +23010,11 @@ import org.slf4j.LoggerFactory; public Object getFieldValue(_Fields field) { switch (field) { - case GATEWAY: - return getGateway(); + case GATEWAY_ID: + return getGatewayId(); + + case UPDATED_GATEWAY: + return getUpdatedGateway(); } throw new IllegalStateException(); @@ -21790,8 +23027,10 @@ import org.slf4j.LoggerFactory; } switch (field) { - case GATEWAY: - return isSetGateway(); + case GATEWAY_ID: + return isSetGatewayId(); + case UPDATED_GATEWAY: + return isSetUpdatedGateway(); } throw new IllegalStateException(); } @@ -21800,21 +23039,30 @@ import org.slf4j.LoggerFactory; public boolean equals(Object that) { if (that == null) return false; - if (that instanceof addGateway_args) - return this.equals((addGateway_args)that); + if (that instanceof updateGateway_args) + return this.equals((updateGateway_args)that); return false; } - public boolean equals(addGateway_args that) { + public boolean equals(updateGateway_args that) { if (that == null) return false; - boolean this_present_gateway = true && this.isSetGateway(); - boolean that_present_gateway = true && that.isSetGateway(); - if (this_present_gateway || that_present_gateway) { - if (!(this_present_gateway && that_present_gateway)) + boolean this_present_gatewayId = true && this.isSetGatewayId(); + boolean that_present_gatewayId = true && that.isSetGatewayId(); + if (this_present_gatewayId || that_present_gatewayId) { + if (!(this_present_gatewayId && that_present_gatewayId)) return false; - if (!this.gateway.equals(that.gateway)) + if (!this.gatewayId.equals(that.gatewayId)) + return false; + } + + boolean this_present_updatedGateway = true && this.isSetUpdatedGateway(); + boolean that_present_updatedGateway = true && that.isSetUpdatedGateway(); + if (this_present_updatedGateway || that_present_updatedGateway) { + if (!(this_present_updatedGateway && that_present_updatedGateway)) + return false; + if (!this.updatedGateway.equals(that.updatedGateway)) return false; } @@ -21827,19 +23075,29 @@ import org.slf4j.LoggerFactory; } @Override - public int compareTo(addGateway_args other) { + public int compareTo(updateGateway_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = Boolean.valueOf(isSetGateway()).compareTo(other.isSetGateway()); + lastComparison = Boolean.valueOf(isSetGatewayId()).compareTo(other.isSetGatewayId()); if (lastComparison != 0) { return lastComparison; } - if (isSetGateway()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.gateway, other.gateway); + if (isSetGatewayId()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.gatewayId, other.gatewayId); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetUpdatedGateway()).compareTo(other.isSetUpdatedGateway()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetUpdatedGateway()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.updatedGateway, other.updatedGateway); if (lastComparison != 0) { return lastComparison; } @@ -21861,14 +23119,22 @@ import org.slf4j.LoggerFactory; @Override public String toString() { - StringBuilder sb = new StringBuilder("addGateway_args("); + StringBuilder sb = new StringBuilder("updateGateway_args("); boolean first = true; - sb.append("gateway:"); - if (this.gateway == null) { + sb.append("gatewayId:"); + if (this.gatewayId == null) { sb.append("null"); } else { - sb.append(this.gateway); + sb.append(this.gatewayId); + } + first = false; + if (!first) sb.append(", "); + sb.append("updatedGateway:"); + if (this.updatedGateway == null) { + sb.append("null"); + } else { + sb.append(this.updatedGateway); } first = false; sb.append(")"); @@ -21877,12 +23143,15 @@ import org.slf4j.LoggerFactory; public void validate() throws org.apache.thrift.TException { // check for required fields - if (gateway == null) { - throw new org.apache.thrift.protocol.TProtocolException("Required field 'gateway' was not present! Struct: " + toString()); + if (gatewayId == null) { + throw new org.apache.thrift.protocol.TProtocolException("Required field 'gatewayId' was not present! Struct: " + toString()); + } + if (updatedGateway == null) { + throw new org.apache.thrift.protocol.TProtocolException("Required field 'updatedGateway' was not present! Struct: " + toString()); } // check for sub-struct validity - if (gateway != null) { - gateway.validate(); + if (updatedGateway != null) { + updatedGateway.validate(); } } @@ -21902,15 +23171,15 @@ import org.slf4j.LoggerFactory; } } - private static class addGateway_argsStandardSchemeFactory implements SchemeFactory { - public addGateway_argsStandardScheme getScheme() { - return new addGateway_argsStandardScheme(); + private static class updateGateway_argsStandardSchemeFactory implements SchemeFactory { + public updateGateway_argsStandardScheme getScheme() { + return new updateGateway_argsStandardScheme(); } } - private static class addGateway_argsStandardScheme extends StandardScheme<addGateway_args> { + private static class updateGateway_argsStandardScheme extends StandardScheme<updateGateway_args> { - public void read(org.apache.thrift.protocol.TProtocol iprot, addGateway_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, updateGateway_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -21920,11 +23189,19 @@ import org.slf4j.LoggerFactory; break; } switch (schemeField.id) { - case 1: // GATEWAY + case 1: // GATEWAY_ID + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.gatewayId = iprot.readString(); + struct.setGatewayIdIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // UPDATED_GATEWAY if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.gateway = new org.apache.airavata.model.workspace.Gateway(); - struct.gateway.read(iprot); - struct.setGatewayIsSet(true); + struct.updatedGateway = new org.apache.airavata.model.workspace.Gateway(); + struct.updatedGateway.read(iprot); + struct.setUpdatedGatewayIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -21940,13 +23217,18 @@ import org.slf4j.LoggerFactory; struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, addGateway_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, updateGateway_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.gateway != null) { - oprot.writeFieldBegin(GATEWAY_FIELD_DESC); - struct.gateway.write(oprot); + if (struct.gatewayId != null) { + oprot.writeFieldBegin(GATEWAY_ID_FIELD_DESC); + oprot.writeString(struct.gatewayId); + oprot.writeFieldEnd(); + } + if (struct.updatedGateway != null) { + oprot.writeFieldBegin(UPDATED_GATEWAY_FIELD_DESC); + struct.updatedGateway.write(oprot); oprot.writeFieldEnd(); } oprot.writeFieldStop(); @@ -21955,53 +23237,53 @@ import org.slf4j.LoggerFactory; } - private static class addGateway_argsTupleSchemeFactory implements SchemeFactory { - public addGateway_argsTupleScheme getScheme() { - return new addGateway_argsTupleScheme(); + private static class updateGateway_argsTupleSchemeFactory implements SchemeFactory { + public updateGateway_argsTupleScheme getScheme() { + return new updateGateway_argsTupleScheme(); } } - private static class addGateway_argsTupleScheme extends TupleScheme<addGateway_args> { + private static class updateGateway_argsTupleScheme extends TupleScheme<updateGateway_args> { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, addGateway_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, updateGateway_args struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; - struct.gateway.write(oprot); + oprot.writeString(struct.gatewayId); + struct.updatedGateway.write(oprot); } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, addGateway_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, updateGateway_args struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; - struct.gateway = new org.apache.airavata.model.workspace.Gateway(); - struct.gateway.read(iprot); - struct.setGatewayIsSet(true); + struct.gatewayId = iprot.readString(); + struct.setGatewayIdIsSet(true); + struct.updatedGateway = new org.apache.airavata.model.workspace.Gateway(); + struct.updatedGateway.read(iprot); + struct.setUpdatedGatewayIsSet(true); } } } - public static class addGateway_result implements org.apache.thrift.TBase<addGateway_result, addGateway_result._Fields>, java.io.Serializable, Cloneable, Comparable<addGateway_result> { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("addGateway_result"); + public static class updateGateway_result implements org.apache.thrift.TBase<updateGateway_result, updateGateway_result._Fields>, java.io.Serializable, Cloneable, Comparable<updateGateway_result> { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("updateGateway_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 IRE_FIELD_DESC = new org.apache.thrift.protocol.TField("ire", org.apache.thrift.protocol.TType.STRUCT, (short)1); private static final org.apache.thrift.protocol.TField ACE_FIELD_DESC = new org.apache.thrift.protocol.TField("ace", org.apache.thrift.protocol.TType.STRUCT, (short)2); private static final org.apache.thrift.protocol.TField ASE_FIELD_DESC = new org.apache.thrift.protocol.TField("ase", org.apache.thrift.protocol.TType.STRUCT, (short)3); private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); static { - schemes.put(StandardScheme.class, new addGateway_resultStandardSchemeFactory()); - schemes.put(TupleScheme.class, new addGateway_resultTupleSchemeFactory()); + schemes.put(StandardScheme.class, new updateGateway_resultStandardSchemeFactory()); + schemes.put(TupleScheme.class, new updateGateway_resultTupleSchemeFactory()); } - public String success; // required public org.apache.airavata.model.error.InvalidRequestException ire; // required public org.apache.airavata.model.error.AiravataClientException ace; // required public org.apache.airavata.model.error.AiravataSystemException ase; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ @SuppressWarnings("all") public enum _Fields implements org.apache.thrift.TFieldIdEnum { - SUCCESS((short)0, "success"), IRE((short)1, "ire"), ACE((short)2, "ace"), ASE((short)3, "ase"); @@ -22019,8 +23301,6 @@ import org.slf4j.LoggerFactory; */ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // IRE return IRE; case 2: // ACE @@ -22070,8 +23350,6 @@ import org.slf4j.LoggerFactory; 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.IRE, new org.apache.thrift.meta_data.FieldMetaData("ire", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT))); tmpMap.put(_Fields.ACE, new org.apache.thrift.meta_data.FieldMetaData("ace", org.apache.thrift.TFieldRequirementType.DEFAULT, @@ -22079,20 +23357,18 @@ import org.slf4j.LoggerFactory; tmpMap.put(_Fields.ASE, new org.apache.thrift.meta_data.FieldMetaData("ase", 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(addGateway_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(updateGateway_result.class, metaDataMap); } - public addGateway_result() { + public updateGateway_result() { } - public addGateway_result( - String success, + public updateGateway_result( org.apache.airavata.model.error.InvalidRequestException ire, org.apache.airavata.model.error.AiravataClientException ace, org.apache.airavata.model.error.AiravataSystemException ase) { this(); - this.success = success; this.ire = ire; this.ace = ace; this.ase = ase; @@ -22101,10 +23377,7 @@ import org.slf4j.LoggerFactory; /** * Performs a deep copy on <i>other</i>. */ - public addGateway_result(addGateway_result other) { - if (other.isSetSuccess()) { - this.success = other.success; - } + public updateGateway_result(updateGateway_result other) { if (other.isSetIre()) { this.ire = new org.apache.airavata.model.error.InvalidRequestException(other.ire); } @@ -22116,47 +23389,22 @@ import org.slf4j.LoggerFactory; } } - public addGateway_result deepCopy() { - return new addGateway_result(this); + public updateGateway_result deepCopy() { + return new updateGateway_result(this); } @Override public void clear() { - this.success = null; this.ire = null; this.ace = null; this.ase = null; } - public String getSuccess() { - return this.success; - } - - public addGateway_result setSuccess(String success) { - this.success = success; - return this; - } - - public void unsetSuccess() { - this.success = null; - } - - /** Returns true if field success is set (has been assigned a value) and false otherwise */ - public boolean isSetSuccess() { - return this.success != null; - } - - public void setSuccessIsSet(boolean value) { - if (!value) { - this.success = null; - } - } - public org.apache.airavata.model.error.InvalidRequestException getIre() { return this.ire; } - public addGateway_result setIre(org.apache.airavata.model.error.InvalidRequestException ire) { + public updateGateway_result setIre(org.apache.airavata.model.error.InvalidRequestException ire) { this.ire = ire; return this; } @@ -22180,7 +23428,7 @@ import org.slf4j.LoggerFactory; return this.ace; } - public addGateway_result setAce(org.apache.airavata.model.error.AiravataClientException ace) { + public updateGateway_result setAce(org.apache.airavata.model.error.AiravataClientException ace) { this.ace = ace; return this; } @@ -22204,7 +23452,7 @@ import org.slf4j.LoggerFactory; return this.ase; } - public addGateway_result setAse(org.apache.airavata.model.error.AiravataSystemException ase) { + public updateGateway_result setAse(org.apache.airavata.model.error.AiravataSystemException ase) { this.ase = ase; return this; } @@ -22226,14 +23474,6 @@ import org.slf4j.LoggerFactory; public void setFieldValue(_Fields field, Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((String)value); - } - break; - case IRE: if (value == null) { unsetIre(); @@ -22263,9 +23503,6 @@ import org.slf4j.LoggerFactory; public Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return getSuccess(); - case IRE: return getIre(); @@ -22286,8 +23523,6 @@ import org.slf4j.LoggerFactory; } switch (field) { - case SUCCESS: - return isSetSuccess(); case IRE: return isSetIre(); case ACE: @@ -22302,24 +23537,15 @@ import org.slf4j.LoggerFactory; public boolean equals(Object that) { if (that == null) return false; - if (that instanceof addGateway_result) - return this.equals((addGateway_result)that); + if (that instanceof updateGateway_result) + return this.equals((updateGateway_result)that); return false; } - public boolean equals(addGateway_result that) { + public boolean equals(updateGateway_result that) { if (that == null) retu
<TRUNCATED>
