org.apache.airavata.model.error.AiravataClientException Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Autogenerated by Thrift Compiler (0.9.3)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.airavata.model.error;
import org.apache.thrift.scheme.IScheme;
import org.apache.thrift.scheme.SchemeFactory;
import org.apache.thrift.scheme.StandardScheme;
import org.apache.thrift.scheme.TupleScheme;
import org.apache.thrift.protocol.TTupleProtocol;
import org.apache.thrift.protocol.TProtocolException;
import org.apache.thrift.EncodingUtils;
import org.apache.thrift.TException;
import org.apache.thrift.async.AsyncMethodCallback;
import org.apache.thrift.server.AbstractNonblockingServer.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.EnumMap;
import java.util.Set;
import java.util.HashSet;
import java.util.EnumSet;
import java.util.Collections;
import java.util.BitSet;
import java.nio.ByteBuffer;
import java.util.Arrays;
import javax.annotation.Generated;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
/**
* This exception is thrown by Airavata Services when a call fails as a result of
* a problem that a client may be able to resolve. For example, if the user
* attempts to execute an application on a resource gateway does not have access to.
*
* This exception would not be used for internal system errors that do not
* reflect user actions, but rather reflect a problem within the service that
* the client cannot resolve.
*
* airavataErrorType: The message type indicating the error that occurred.
* must be one of the values of AiravataErrorType.
*
* parameter: If the error applied to a particular input parameter, this will
* indicate which parameter.
*/
@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)", date = "2016-07-13")
public class AiravataClientException extends TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("AiravataClientException");
private static final org.apache.thrift.protocol.TField AIRAVATA_ERROR_TYPE_FIELD_DESC = new org.apache.thrift.protocol.TField("airavataErrorType", org.apache.thrift.protocol.TType.I32, (short)1);
private static final org.apache.thrift.protocol.TField PARAMETER_FIELD_DESC = new org.apache.thrift.protocol.TField("parameter", org.apache.thrift.protocol.TType.STRING, (short)2);
private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>();
static {
schemes.put(StandardScheme.class, new AiravataClientExceptionStandardSchemeFactory());
schemes.put(TupleScheme.class, new AiravataClientExceptionTupleSchemeFactory());
}
private AiravataErrorType airavataErrorType; // required
private String parameter; // optional
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
/**
*
* @see AiravataErrorType
*/
AIRAVATA_ERROR_TYPE((short)1, "airavataErrorType"),
PARAMETER((short)2, "parameter");
private static final Map byName = new HashMap();
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: // AIRAVATA_ERROR_TYPE
return AIRAVATA_ERROR_TYPE;
case 2: // PARAMETER
return PARAMETER;
default:
return null;
}
}
/**
* Find the _Fields constant that matches fieldId, throwing an exception
* if it is not found.
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
public static _Fields findByName(String name) {
return byName.get(name);
}
private final short _thriftId;
private final String _fieldName;
_Fields(short thriftId, String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public String getFieldName() {
return _fieldName;
}
}
// isset id assignments
private static final _Fields optionals[] = {_Fields.PARAMETER};
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.AIRAVATA_ERROR_TYPE, new org.apache.thrift.meta_data.FieldMetaData("airavataErrorType", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, AiravataErrorType.class)));
tmpMap.put(_Fields.PARAMETER, new org.apache.thrift.meta_data.FieldMetaData("parameter", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(AiravataClientException.class, metaDataMap);
}
public AiravataClientException() {
}
public AiravataClientException(
AiravataErrorType airavataErrorType)
{
this();
this.airavataErrorType = airavataErrorType;
}
/**
* Performs a deep copy on other.
*/
public AiravataClientException(AiravataClientException other) {
if (other.isSetAiravataErrorType()) {
this.airavataErrorType = other.airavataErrorType;
}
if (other.isSetParameter()) {
this.parameter = other.parameter;
}
}
public AiravataClientException deepCopy() {
return new AiravataClientException(this);
}
@Override
public void clear() {
this.airavataErrorType = null;
this.parameter = null;
}
/**
*
* @see AiravataErrorType
*/
public AiravataErrorType getAiravataErrorType() {
return this.airavataErrorType;
}
/**
*
* @see AiravataErrorType
*/
public void setAiravataErrorType(AiravataErrorType airavataErrorType) {
this.airavataErrorType = airavataErrorType;
}
public void unsetAiravataErrorType() {
this.airavataErrorType = null;
}
/** Returns true if field airavataErrorType is set (has been assigned a value) and false otherwise */
public boolean isSetAiravataErrorType() {
return this.airavataErrorType != null;
}
public void setAiravataErrorTypeIsSet(boolean value) {
if (!value) {
this.airavataErrorType = null;
}
}
public String getParameter() {
return this.parameter;
}
public void setParameter(String parameter) {
this.parameter = parameter;
}
public void unsetParameter() {
this.parameter = null;
}
/** Returns true if field parameter is set (has been assigned a value) and false otherwise */
public boolean isSetParameter() {
return this.parameter != null;
}
public void setParameterIsSet(boolean value) {
if (!value) {
this.parameter = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case AIRAVATA_ERROR_TYPE:
if (value == null) {
unsetAiravataErrorType();
} else {
setAiravataErrorType((AiravataErrorType)value);
}
break;
case PARAMETER:
if (value == null) {
unsetParameter();
} else {
setParameter((String)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case AIRAVATA_ERROR_TYPE:
return getAiravataErrorType();
case PARAMETER:
return getParameter();
}
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 AIRAVATA_ERROR_TYPE:
return isSetAiravataErrorType();
case PARAMETER:
return isSetParameter();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof AiravataClientException)
return this.equals((AiravataClientException)that);
return false;
}
public boolean equals(AiravataClientException that) {
if (that == null)
return false;
boolean this_present_airavataErrorType = true && this.isSetAiravataErrorType();
boolean that_present_airavataErrorType = true && that.isSetAiravataErrorType();
if (this_present_airavataErrorType || that_present_airavataErrorType) {
if (!(this_present_airavataErrorType && that_present_airavataErrorType))
return false;
if (!this.airavataErrorType.equals(that.airavataErrorType))
return false;
}
boolean this_present_parameter = true && this.isSetParameter();
boolean that_present_parameter = true && that.isSetParameter();
if (this_present_parameter || that_present_parameter) {
if (!(this_present_parameter && that_present_parameter))
return false;
if (!this.parameter.equals(that.parameter))
return false;
}
return true;
}
@Override
public int hashCode() {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy