blob: 36023d80cea6f7f1c4705c0624b13704cd31fc27 [file] [log] [blame]
/**
* RelationshipData.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
*/
package com.intellij.tasks.mantis.model;
public class RelationshipData implements java.io.Serializable {
private java.math.BigInteger id;
private com.intellij.tasks.mantis.model.ObjectRef type;
private java.math.BigInteger target_id;
public RelationshipData() {
}
public RelationshipData(
java.math.BigInteger id,
com.intellij.tasks.mantis.model.ObjectRef type,
java.math.BigInteger target_id) {
this.id = id;
this.type = type;
this.target_id = target_id;
}
/**
* Gets the id value for this RelationshipData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this RelationshipData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the type value for this RelationshipData.
*
* @return type
*/
public com.intellij.tasks.mantis.model.ObjectRef getType() {
return type;
}
/**
* Sets the type value for this RelationshipData.
*
* @param type
*/
public void setType(com.intellij.tasks.mantis.model.ObjectRef type) {
this.type = type;
}
/**
* Gets the target_id value for this RelationshipData.
*
* @return target_id
*/
public java.math.BigInteger getTarget_id() {
return target_id;
}
/**
* Sets the target_id value for this RelationshipData.
*
* @param target_id
*/
public void setTarget_id(java.math.BigInteger target_id) {
this.target_id = target_id;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof RelationshipData)) return false;
RelationshipData other = (RelationshipData) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.id==null && other.getId()==null) ||
(this.id!=null &&
this.id.equals(other.getId()))) &&
((this.type==null && other.getType()==null) ||
(this.type!=null &&
this.type.equals(other.getType()))) &&
((this.target_id==null && other.getTarget_id()==null) ||
(this.target_id!=null &&
this.target_id.equals(other.getTarget_id())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getId() != null) {
_hashCode += getId().hashCode();
}
if (getType() != null) {
_hashCode += getType().hashCode();
}
if (getTarget_id() != null) {
_hashCode += getTarget_id().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(RelationshipData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "RelationshipData"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("id");
elemField.setXmlName(new javax.xml.namespace.QName("", "id"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("type");
elemField.setXmlName(new javax.xml.namespace.QName("", "type"));
elemField.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "ObjectRef"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("target_id");
elemField.setXmlName(new javax.xml.namespace.QName("", "target_id"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
}
/**
* Return type metadata object
*/
public static org.apache.axis.description.TypeDesc getTypeDesc() {
return typeDesc;
}
/**
* Get Custom Serializer
*/
public static org.apache.axis.encoding.Serializer getSerializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.BeanSerializer(
_javaType, _xmlType, typeDesc);
}
/**
* Get Custom Deserializer
*/
public static org.apache.axis.encoding.Deserializer getDeserializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.BeanDeserializer(
_javaType, _xmlType, typeDesc);
}
}