Tasks. Mantis integration. Stubs generated instead library.

This commit is contained in:
Evgeny Zakrevsky
2012-10-09 19:43:26 +04:00
parent 8a2d32baf4
commit b47d6a26bb
26 changed files with 12056 additions and 9 deletions
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,231 @@
/**
* AccountData.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 AccountData implements java.io.Serializable {
private java.math.BigInteger id;
private java.lang.String name;
private java.lang.String real_name;
private java.lang.String email;
public AccountData() {
}
public AccountData(
java.math.BigInteger id,
java.lang.String name,
java.lang.String real_name,
java.lang.String email) {
this.id = id;
this.name = name;
this.real_name = real_name;
this.email = email;
}
/**
* Gets the id value for this AccountData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this AccountData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the name value for this AccountData.
*
* @return name
*/
public java.lang.String getName() {
return name;
}
/**
* Sets the name value for this AccountData.
*
* @param name
*/
public void setName(java.lang.String name) {
this.name = name;
}
/**
* Gets the real_name value for this AccountData.
*
* @return real_name
*/
public java.lang.String getReal_name() {
return real_name;
}
/**
* Sets the real_name value for this AccountData.
*
* @param real_name
*/
public void setReal_name(java.lang.String real_name) {
this.real_name = real_name;
}
/**
* Gets the email value for this AccountData.
*
* @return email
*/
public java.lang.String getEmail() {
return email;
}
/**
* Sets the email value for this AccountData.
*
* @param email
*/
public void setEmail(java.lang.String email) {
this.email = email;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof AccountData)) return false;
AccountData other = (AccountData) 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.name==null && other.getName()==null) ||
(this.name!=null &&
this.name.equals(other.getName()))) &&
((this.real_name==null && other.getReal_name()==null) ||
(this.real_name!=null &&
this.real_name.equals(other.getReal_name()))) &&
((this.email==null && other.getEmail()==null) ||
(this.email!=null &&
this.email.equals(other.getEmail())));
__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 (getName() != null) {
_hashCode += getName().hashCode();
}
if (getReal_name() != null) {
_hashCode += getReal_name().hashCode();
}
if (getEmail() != null) {
_hashCode += getEmail().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(AccountData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "AccountData"));
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("name");
elemField.setXmlName(new javax.xml.namespace.QName("", "name"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("real_name");
elemField.setXmlName(new javax.xml.namespace.QName("", "real_name"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("email");
elemField.setXmlName(new javax.xml.namespace.QName("", "email"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
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);
}
}
@@ -0,0 +1,342 @@
/**
* AttachmentData.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 AttachmentData implements java.io.Serializable {
private java.math.BigInteger id;
private java.lang.String filename;
private java.math.BigInteger size;
private java.lang.String content_type;
private java.util.Calendar date_submitted;
private org.apache.axis.types.URI download_url;
private java.math.BigInteger user_id;
public AttachmentData() {
}
public AttachmentData(
java.math.BigInteger id,
java.lang.String filename,
java.math.BigInteger size,
java.lang.String content_type,
java.util.Calendar date_submitted,
org.apache.axis.types.URI download_url,
java.math.BigInteger user_id) {
this.id = id;
this.filename = filename;
this.size = size;
this.content_type = content_type;
this.date_submitted = date_submitted;
this.download_url = download_url;
this.user_id = user_id;
}
/**
* Gets the id value for this AttachmentData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this AttachmentData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the filename value for this AttachmentData.
*
* @return filename
*/
public java.lang.String getFilename() {
return filename;
}
/**
* Sets the filename value for this AttachmentData.
*
* @param filename
*/
public void setFilename(java.lang.String filename) {
this.filename = filename;
}
/**
* Gets the size value for this AttachmentData.
*
* @return size
*/
public java.math.BigInteger getSize() {
return size;
}
/**
* Sets the size value for this AttachmentData.
*
* @param size
*/
public void setSize(java.math.BigInteger size) {
this.size = size;
}
/**
* Gets the content_type value for this AttachmentData.
*
* @return content_type
*/
public java.lang.String getContent_type() {
return content_type;
}
/**
* Sets the content_type value for this AttachmentData.
*
* @param content_type
*/
public void setContent_type(java.lang.String content_type) {
this.content_type = content_type;
}
/**
* Gets the date_submitted value for this AttachmentData.
*
* @return date_submitted
*/
public java.util.Calendar getDate_submitted() {
return date_submitted;
}
/**
* Sets the date_submitted value for this AttachmentData.
*
* @param date_submitted
*/
public void setDate_submitted(java.util.Calendar date_submitted) {
this.date_submitted = date_submitted;
}
/**
* Gets the download_url value for this AttachmentData.
*
* @return download_url
*/
public org.apache.axis.types.URI getDownload_url() {
return download_url;
}
/**
* Sets the download_url value for this AttachmentData.
*
* @param download_url
*/
public void setDownload_url(org.apache.axis.types.URI download_url) {
this.download_url = download_url;
}
/**
* Gets the user_id value for this AttachmentData.
*
* @return user_id
*/
public java.math.BigInteger getUser_id() {
return user_id;
}
/**
* Sets the user_id value for this AttachmentData.
*
* @param user_id
*/
public void setUser_id(java.math.BigInteger user_id) {
this.user_id = user_id;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof AttachmentData)) return false;
AttachmentData other = (AttachmentData) 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.filename==null && other.getFilename()==null) ||
(this.filename!=null &&
this.filename.equals(other.getFilename()))) &&
((this.size==null && other.getSize()==null) ||
(this.size!=null &&
this.size.equals(other.getSize()))) &&
((this.content_type==null && other.getContent_type()==null) ||
(this.content_type!=null &&
this.content_type.equals(other.getContent_type()))) &&
((this.date_submitted==null && other.getDate_submitted()==null) ||
(this.date_submitted!=null &&
this.date_submitted.equals(other.getDate_submitted()))) &&
((this.download_url==null && other.getDownload_url()==null) ||
(this.download_url!=null &&
this.download_url.equals(other.getDownload_url()))) &&
((this.user_id==null && other.getUser_id()==null) ||
(this.user_id!=null &&
this.user_id.equals(other.getUser_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 (getFilename() != null) {
_hashCode += getFilename().hashCode();
}
if (getSize() != null) {
_hashCode += getSize().hashCode();
}
if (getContent_type() != null) {
_hashCode += getContent_type().hashCode();
}
if (getDate_submitted() != null) {
_hashCode += getDate_submitted().hashCode();
}
if (getDownload_url() != null) {
_hashCode += getDownload_url().hashCode();
}
if (getUser_id() != null) {
_hashCode += getUser_id().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(AttachmentData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "AttachmentData"));
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("filename");
elemField.setXmlName(new javax.xml.namespace.QName("", "filename"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("size");
elemField.setXmlName(new javax.xml.namespace.QName("", "size"));
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("content_type");
elemField.setXmlName(new javax.xml.namespace.QName("", "content_type"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("date_submitted");
elemField.setXmlName(new javax.xml.namespace.QName("", "date_submitted"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("download_url");
elemField.setXmlName(new javax.xml.namespace.QName("", "download_url"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "anyURI"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("user_id");
elemField.setXmlName(new javax.xml.namespace.QName("", "user_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);
}
}
@@ -0,0 +1,749 @@
/**
* CustomFieldDefinitionData.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 CustomFieldDefinitionData implements java.io.Serializable {
private com.intellij.tasks.mantis.model.ObjectRef field;
private java.math.BigInteger type;
private java.lang.String possible_values;
private java.lang.String default_value;
private java.lang.String valid_regexp;
private java.math.BigInteger access_level_r;
private java.math.BigInteger access_level_rw;
private java.math.BigInteger length_min;
private java.math.BigInteger length_max;
private java.lang.Boolean advanced;
private java.lang.Boolean display_report;
private java.lang.Boolean display_update;
private java.lang.Boolean display_resolved;
private java.lang.Boolean display_closed;
private java.lang.Boolean require_report;
private java.lang.Boolean require_update;
private java.lang.Boolean require_resolved;
private java.lang.Boolean require_closed;
public CustomFieldDefinitionData() {
}
public CustomFieldDefinitionData(
com.intellij.tasks.mantis.model.ObjectRef field,
java.math.BigInteger type,
java.lang.String possible_values,
java.lang.String default_value,
java.lang.String valid_regexp,
java.math.BigInteger access_level_r,
java.math.BigInteger access_level_rw,
java.math.BigInteger length_min,
java.math.BigInteger length_max,
java.lang.Boolean advanced,
java.lang.Boolean display_report,
java.lang.Boolean display_update,
java.lang.Boolean display_resolved,
java.lang.Boolean display_closed,
java.lang.Boolean require_report,
java.lang.Boolean require_update,
java.lang.Boolean require_resolved,
java.lang.Boolean require_closed) {
this.field = field;
this.type = type;
this.possible_values = possible_values;
this.default_value = default_value;
this.valid_regexp = valid_regexp;
this.access_level_r = access_level_r;
this.access_level_rw = access_level_rw;
this.length_min = length_min;
this.length_max = length_max;
this.advanced = advanced;
this.display_report = display_report;
this.display_update = display_update;
this.display_resolved = display_resolved;
this.display_closed = display_closed;
this.require_report = require_report;
this.require_update = require_update;
this.require_resolved = require_resolved;
this.require_closed = require_closed;
}
/**
* Gets the field value for this CustomFieldDefinitionData.
*
* @return field
*/
public com.intellij.tasks.mantis.model.ObjectRef getField() {
return field;
}
/**
* Sets the field value for this CustomFieldDefinitionData.
*
* @param field
*/
public void setField(com.intellij.tasks.mantis.model.ObjectRef field) {
this.field = field;
}
/**
* Gets the type value for this CustomFieldDefinitionData.
*
* @return type
*/
public java.math.BigInteger getType() {
return type;
}
/**
* Sets the type value for this CustomFieldDefinitionData.
*
* @param type
*/
public void setType(java.math.BigInteger type) {
this.type = type;
}
/**
* Gets the possible_values value for this CustomFieldDefinitionData.
*
* @return possible_values
*/
public java.lang.String getPossible_values() {
return possible_values;
}
/**
* Sets the possible_values value for this CustomFieldDefinitionData.
*
* @param possible_values
*/
public void setPossible_values(java.lang.String possible_values) {
this.possible_values = possible_values;
}
/**
* Gets the default_value value for this CustomFieldDefinitionData.
*
* @return default_value
*/
public java.lang.String getDefault_value() {
return default_value;
}
/**
* Sets the default_value value for this CustomFieldDefinitionData.
*
* @param default_value
*/
public void setDefault_value(java.lang.String default_value) {
this.default_value = default_value;
}
/**
* Gets the valid_regexp value for this CustomFieldDefinitionData.
*
* @return valid_regexp
*/
public java.lang.String getValid_regexp() {
return valid_regexp;
}
/**
* Sets the valid_regexp value for this CustomFieldDefinitionData.
*
* @param valid_regexp
*/
public void setValid_regexp(java.lang.String valid_regexp) {
this.valid_regexp = valid_regexp;
}
/**
* Gets the access_level_r value for this CustomFieldDefinitionData.
*
* @return access_level_r
*/
public java.math.BigInteger getAccess_level_r() {
return access_level_r;
}
/**
* Sets the access_level_r value for this CustomFieldDefinitionData.
*
* @param access_level_r
*/
public void setAccess_level_r(java.math.BigInteger access_level_r) {
this.access_level_r = access_level_r;
}
/**
* Gets the access_level_rw value for this CustomFieldDefinitionData.
*
* @return access_level_rw
*/
public java.math.BigInteger getAccess_level_rw() {
return access_level_rw;
}
/**
* Sets the access_level_rw value for this CustomFieldDefinitionData.
*
* @param access_level_rw
*/
public void setAccess_level_rw(java.math.BigInteger access_level_rw) {
this.access_level_rw = access_level_rw;
}
/**
* Gets the length_min value for this CustomFieldDefinitionData.
*
* @return length_min
*/
public java.math.BigInteger getLength_min() {
return length_min;
}
/**
* Sets the length_min value for this CustomFieldDefinitionData.
*
* @param length_min
*/
public void setLength_min(java.math.BigInteger length_min) {
this.length_min = length_min;
}
/**
* Gets the length_max value for this CustomFieldDefinitionData.
*
* @return length_max
*/
public java.math.BigInteger getLength_max() {
return length_max;
}
/**
* Sets the length_max value for this CustomFieldDefinitionData.
*
* @param length_max
*/
public void setLength_max(java.math.BigInteger length_max) {
this.length_max = length_max;
}
/**
* Gets the advanced value for this CustomFieldDefinitionData.
*
* @return advanced
*/
public java.lang.Boolean getAdvanced() {
return advanced;
}
/**
* Sets the advanced value for this CustomFieldDefinitionData.
*
* @param advanced
*/
public void setAdvanced(java.lang.Boolean advanced) {
this.advanced = advanced;
}
/**
* Gets the display_report value for this CustomFieldDefinitionData.
*
* @return display_report
*/
public java.lang.Boolean getDisplay_report() {
return display_report;
}
/**
* Sets the display_report value for this CustomFieldDefinitionData.
*
* @param display_report
*/
public void setDisplay_report(java.lang.Boolean display_report) {
this.display_report = display_report;
}
/**
* Gets the display_update value for this CustomFieldDefinitionData.
*
* @return display_update
*/
public java.lang.Boolean getDisplay_update() {
return display_update;
}
/**
* Sets the display_update value for this CustomFieldDefinitionData.
*
* @param display_update
*/
public void setDisplay_update(java.lang.Boolean display_update) {
this.display_update = display_update;
}
/**
* Gets the display_resolved value for this CustomFieldDefinitionData.
*
* @return display_resolved
*/
public java.lang.Boolean getDisplay_resolved() {
return display_resolved;
}
/**
* Sets the display_resolved value for this CustomFieldDefinitionData.
*
* @param display_resolved
*/
public void setDisplay_resolved(java.lang.Boolean display_resolved) {
this.display_resolved = display_resolved;
}
/**
* Gets the display_closed value for this CustomFieldDefinitionData.
*
* @return display_closed
*/
public java.lang.Boolean getDisplay_closed() {
return display_closed;
}
/**
* Sets the display_closed value for this CustomFieldDefinitionData.
*
* @param display_closed
*/
public void setDisplay_closed(java.lang.Boolean display_closed) {
this.display_closed = display_closed;
}
/**
* Gets the require_report value for this CustomFieldDefinitionData.
*
* @return require_report
*/
public java.lang.Boolean getRequire_report() {
return require_report;
}
/**
* Sets the require_report value for this CustomFieldDefinitionData.
*
* @param require_report
*/
public void setRequire_report(java.lang.Boolean require_report) {
this.require_report = require_report;
}
/**
* Gets the require_update value for this CustomFieldDefinitionData.
*
* @return require_update
*/
public java.lang.Boolean getRequire_update() {
return require_update;
}
/**
* Sets the require_update value for this CustomFieldDefinitionData.
*
* @param require_update
*/
public void setRequire_update(java.lang.Boolean require_update) {
this.require_update = require_update;
}
/**
* Gets the require_resolved value for this CustomFieldDefinitionData.
*
* @return require_resolved
*/
public java.lang.Boolean getRequire_resolved() {
return require_resolved;
}
/**
* Sets the require_resolved value for this CustomFieldDefinitionData.
*
* @param require_resolved
*/
public void setRequire_resolved(java.lang.Boolean require_resolved) {
this.require_resolved = require_resolved;
}
/**
* Gets the require_closed value for this CustomFieldDefinitionData.
*
* @return require_closed
*/
public java.lang.Boolean getRequire_closed() {
return require_closed;
}
/**
* Sets the require_closed value for this CustomFieldDefinitionData.
*
* @param require_closed
*/
public void setRequire_closed(java.lang.Boolean require_closed) {
this.require_closed = require_closed;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof CustomFieldDefinitionData)) return false;
CustomFieldDefinitionData other = (CustomFieldDefinitionData) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.field==null && other.getField()==null) ||
(this.field!=null &&
this.field.equals(other.getField()))) &&
((this.type==null && other.getType()==null) ||
(this.type!=null &&
this.type.equals(other.getType()))) &&
((this.possible_values==null && other.getPossible_values()==null) ||
(this.possible_values!=null &&
this.possible_values.equals(other.getPossible_values()))) &&
((this.default_value==null && other.getDefault_value()==null) ||
(this.default_value!=null &&
this.default_value.equals(other.getDefault_value()))) &&
((this.valid_regexp==null && other.getValid_regexp()==null) ||
(this.valid_regexp!=null &&
this.valid_regexp.equals(other.getValid_regexp()))) &&
((this.access_level_r==null && other.getAccess_level_r()==null) ||
(this.access_level_r!=null &&
this.access_level_r.equals(other.getAccess_level_r()))) &&
((this.access_level_rw==null && other.getAccess_level_rw()==null) ||
(this.access_level_rw!=null &&
this.access_level_rw.equals(other.getAccess_level_rw()))) &&
((this.length_min==null && other.getLength_min()==null) ||
(this.length_min!=null &&
this.length_min.equals(other.getLength_min()))) &&
((this.length_max==null && other.getLength_max()==null) ||
(this.length_max!=null &&
this.length_max.equals(other.getLength_max()))) &&
((this.advanced==null && other.getAdvanced()==null) ||
(this.advanced!=null &&
this.advanced.equals(other.getAdvanced()))) &&
((this.display_report==null && other.getDisplay_report()==null) ||
(this.display_report!=null &&
this.display_report.equals(other.getDisplay_report()))) &&
((this.display_update==null && other.getDisplay_update()==null) ||
(this.display_update!=null &&
this.display_update.equals(other.getDisplay_update()))) &&
((this.display_resolved==null && other.getDisplay_resolved()==null) ||
(this.display_resolved!=null &&
this.display_resolved.equals(other.getDisplay_resolved()))) &&
((this.display_closed==null && other.getDisplay_closed()==null) ||
(this.display_closed!=null &&
this.display_closed.equals(other.getDisplay_closed()))) &&
((this.require_report==null && other.getRequire_report()==null) ||
(this.require_report!=null &&
this.require_report.equals(other.getRequire_report()))) &&
((this.require_update==null && other.getRequire_update()==null) ||
(this.require_update!=null &&
this.require_update.equals(other.getRequire_update()))) &&
((this.require_resolved==null && other.getRequire_resolved()==null) ||
(this.require_resolved!=null &&
this.require_resolved.equals(other.getRequire_resolved()))) &&
((this.require_closed==null && other.getRequire_closed()==null) ||
(this.require_closed!=null &&
this.require_closed.equals(other.getRequire_closed())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getField() != null) {
_hashCode += getField().hashCode();
}
if (getType() != null) {
_hashCode += getType().hashCode();
}
if (getPossible_values() != null) {
_hashCode += getPossible_values().hashCode();
}
if (getDefault_value() != null) {
_hashCode += getDefault_value().hashCode();
}
if (getValid_regexp() != null) {
_hashCode += getValid_regexp().hashCode();
}
if (getAccess_level_r() != null) {
_hashCode += getAccess_level_r().hashCode();
}
if (getAccess_level_rw() != null) {
_hashCode += getAccess_level_rw().hashCode();
}
if (getLength_min() != null) {
_hashCode += getLength_min().hashCode();
}
if (getLength_max() != null) {
_hashCode += getLength_max().hashCode();
}
if (getAdvanced() != null) {
_hashCode += getAdvanced().hashCode();
}
if (getDisplay_report() != null) {
_hashCode += getDisplay_report().hashCode();
}
if (getDisplay_update() != null) {
_hashCode += getDisplay_update().hashCode();
}
if (getDisplay_resolved() != null) {
_hashCode += getDisplay_resolved().hashCode();
}
if (getDisplay_closed() != null) {
_hashCode += getDisplay_closed().hashCode();
}
if (getRequire_report() != null) {
_hashCode += getRequire_report().hashCode();
}
if (getRequire_update() != null) {
_hashCode += getRequire_update().hashCode();
}
if (getRequire_resolved() != null) {
_hashCode += getRequire_resolved().hashCode();
}
if (getRequire_closed() != null) {
_hashCode += getRequire_closed().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(CustomFieldDefinitionData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "CustomFieldDefinitionData"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("field");
elemField.setXmlName(new javax.xml.namespace.QName("", "field"));
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("type");
elemField.setXmlName(new javax.xml.namespace.QName("", "type"));
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("possible_values");
elemField.setXmlName(new javax.xml.namespace.QName("", "possible_values"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("default_value");
elemField.setXmlName(new javax.xml.namespace.QName("", "default_value"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("valid_regexp");
elemField.setXmlName(new javax.xml.namespace.QName("", "valid_regexp"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("access_level_r");
elemField.setXmlName(new javax.xml.namespace.QName("", "access_level_r"));
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("access_level_rw");
elemField.setXmlName(new javax.xml.namespace.QName("", "access_level_rw"));
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("length_min");
elemField.setXmlName(new javax.xml.namespace.QName("", "length_min"));
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("length_max");
elemField.setXmlName(new javax.xml.namespace.QName("", "length_max"));
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("advanced");
elemField.setXmlName(new javax.xml.namespace.QName("", "advanced"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("display_report");
elemField.setXmlName(new javax.xml.namespace.QName("", "display_report"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("display_update");
elemField.setXmlName(new javax.xml.namespace.QName("", "display_update"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("display_resolved");
elemField.setXmlName(new javax.xml.namespace.QName("", "display_resolved"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("display_closed");
elemField.setXmlName(new javax.xml.namespace.QName("", "display_closed"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("require_report");
elemField.setXmlName(new javax.xml.namespace.QName("", "require_report"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("require_update");
elemField.setXmlName(new javax.xml.namespace.QName("", "require_update"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("require_resolved");
elemField.setXmlName(new javax.xml.namespace.QName("", "require_resolved"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("require_closed");
elemField.setXmlName(new javax.xml.namespace.QName("", "require_closed"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
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);
}
}
@@ -0,0 +1,157 @@
/**
* CustomFieldValueForIssueData.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 CustomFieldValueForIssueData implements java.io.Serializable {
private com.intellij.tasks.mantis.model.ObjectRef field;
private java.lang.String value;
public CustomFieldValueForIssueData() {
}
public CustomFieldValueForIssueData(
com.intellij.tasks.mantis.model.ObjectRef field,
java.lang.String value) {
this.field = field;
this.value = value;
}
/**
* Gets the field value for this CustomFieldValueForIssueData.
*
* @return field
*/
public com.intellij.tasks.mantis.model.ObjectRef getField() {
return field;
}
/**
* Sets the field value for this CustomFieldValueForIssueData.
*
* @param field
*/
public void setField(com.intellij.tasks.mantis.model.ObjectRef field) {
this.field = field;
}
/**
* Gets the value value for this CustomFieldValueForIssueData.
*
* @return value
*/
public java.lang.String getValue() {
return value;
}
/**
* Sets the value value for this CustomFieldValueForIssueData.
*
* @param value
*/
public void setValue(java.lang.String value) {
this.value = value;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof CustomFieldValueForIssueData)) return false;
CustomFieldValueForIssueData other = (CustomFieldValueForIssueData) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.field==null && other.getField()==null) ||
(this.field!=null &&
this.field.equals(other.getField()))) &&
((this.value==null && other.getValue()==null) ||
(this.value!=null &&
this.value.equals(other.getValue())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getField() != null) {
_hashCode += getField().hashCode();
}
if (getValue() != null) {
_hashCode += getValue().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(CustomFieldValueForIssueData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "CustomFieldValueForIssueData"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("field");
elemField.setXmlName(new javax.xml.namespace.QName("", "field"));
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("value");
elemField.setXmlName(new javax.xml.namespace.QName("", "value"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
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);
}
}
@@ -0,0 +1,342 @@
/**
* FilterData.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 FilterData implements java.io.Serializable {
private java.math.BigInteger id;
private com.intellij.tasks.mantis.model.AccountData owner;
private java.math.BigInteger project_id;
private java.lang.Boolean is_public;
private java.lang.String name;
private java.lang.String filter_string;
private java.lang.String url;
public FilterData() {
}
public FilterData(
java.math.BigInteger id,
com.intellij.tasks.mantis.model.AccountData owner,
java.math.BigInteger project_id,
java.lang.Boolean is_public,
java.lang.String name,
java.lang.String filter_string,
java.lang.String url) {
this.id = id;
this.owner = owner;
this.project_id = project_id;
this.is_public = is_public;
this.name = name;
this.filter_string = filter_string;
this.url = url;
}
/**
* Gets the id value for this FilterData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this FilterData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the owner value for this FilterData.
*
* @return owner
*/
public com.intellij.tasks.mantis.model.AccountData getOwner() {
return owner;
}
/**
* Sets the owner value for this FilterData.
*
* @param owner
*/
public void setOwner(com.intellij.tasks.mantis.model.AccountData owner) {
this.owner = owner;
}
/**
* Gets the project_id value for this FilterData.
*
* @return project_id
*/
public java.math.BigInteger getProject_id() {
return project_id;
}
/**
* Sets the project_id value for this FilterData.
*
* @param project_id
*/
public void setProject_id(java.math.BigInteger project_id) {
this.project_id = project_id;
}
/**
* Gets the is_public value for this FilterData.
*
* @return is_public
*/
public java.lang.Boolean getIs_public() {
return is_public;
}
/**
* Sets the is_public value for this FilterData.
*
* @param is_public
*/
public void setIs_public(java.lang.Boolean is_public) {
this.is_public = is_public;
}
/**
* Gets the name value for this FilterData.
*
* @return name
*/
public java.lang.String getName() {
return name;
}
/**
* Sets the name value for this FilterData.
*
* @param name
*/
public void setName(java.lang.String name) {
this.name = name;
}
/**
* Gets the filter_string value for this FilterData.
*
* @return filter_string
*/
public java.lang.String getFilter_string() {
return filter_string;
}
/**
* Sets the filter_string value for this FilterData.
*
* @param filter_string
*/
public void setFilter_string(java.lang.String filter_string) {
this.filter_string = filter_string;
}
/**
* Gets the url value for this FilterData.
*
* @return url
*/
public java.lang.String getUrl() {
return url;
}
/**
* Sets the url value for this FilterData.
*
* @param url
*/
public void setUrl(java.lang.String url) {
this.url = url;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof FilterData)) return false;
FilterData other = (FilterData) 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.owner==null && other.getOwner()==null) ||
(this.owner!=null &&
this.owner.equals(other.getOwner()))) &&
((this.project_id==null && other.getProject_id()==null) ||
(this.project_id!=null &&
this.project_id.equals(other.getProject_id()))) &&
((this.is_public==null && other.getIs_public()==null) ||
(this.is_public!=null &&
this.is_public.equals(other.getIs_public()))) &&
((this.name==null && other.getName()==null) ||
(this.name!=null &&
this.name.equals(other.getName()))) &&
((this.filter_string==null && other.getFilter_string()==null) ||
(this.filter_string!=null &&
this.filter_string.equals(other.getFilter_string()))) &&
((this.url==null && other.getUrl()==null) ||
(this.url!=null &&
this.url.equals(other.getUrl())));
__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 (getOwner() != null) {
_hashCode += getOwner().hashCode();
}
if (getProject_id() != null) {
_hashCode += getProject_id().hashCode();
}
if (getIs_public() != null) {
_hashCode += getIs_public().hashCode();
}
if (getName() != null) {
_hashCode += getName().hashCode();
}
if (getFilter_string() != null) {
_hashCode += getFilter_string().hashCode();
}
if (getUrl() != null) {
_hashCode += getUrl().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(FilterData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "FilterData"));
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("owner");
elemField.setXmlName(new javax.xml.namespace.QName("", "owner"));
elemField.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "AccountData"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("project_id");
elemField.setXmlName(new javax.xml.namespace.QName("", "project_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("is_public");
elemField.setXmlName(new javax.xml.namespace.QName("", "is_public"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("name");
elemField.setXmlName(new javax.xml.namespace.QName("", "name"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("filter_string");
elemField.setXmlName(new javax.xml.namespace.QName("", "filter_string"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("url");
elemField.setXmlName(new javax.xml.namespace.QName("", "url"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
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);
}
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,587 @@
/**
* IssueHeaderData.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 IssueHeaderData implements java.io.Serializable {
private java.math.BigInteger id;
private java.math.BigInteger view_state;
private java.util.Calendar last_updated;
private java.math.BigInteger project;
private java.lang.String category;
private java.math.BigInteger priority;
private java.math.BigInteger severity;
private java.math.BigInteger status;
private java.math.BigInteger reporter;
private java.lang.String summary;
private java.math.BigInteger handler;
private java.math.BigInteger resolution;
private java.math.BigInteger attachments_count;
private java.math.BigInteger notes_count;
public IssueHeaderData() {
}
public IssueHeaderData(
java.math.BigInteger id,
java.math.BigInteger view_state,
java.util.Calendar last_updated,
java.math.BigInteger project,
java.lang.String category,
java.math.BigInteger priority,
java.math.BigInteger severity,
java.math.BigInteger status,
java.math.BigInteger reporter,
java.lang.String summary,
java.math.BigInteger handler,
java.math.BigInteger resolution,
java.math.BigInteger attachments_count,
java.math.BigInteger notes_count) {
this.id = id;
this.view_state = view_state;
this.last_updated = last_updated;
this.project = project;
this.category = category;
this.priority = priority;
this.severity = severity;
this.status = status;
this.reporter = reporter;
this.summary = summary;
this.handler = handler;
this.resolution = resolution;
this.attachments_count = attachments_count;
this.notes_count = notes_count;
}
/**
* Gets the id value for this IssueHeaderData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this IssueHeaderData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the view_state value for this IssueHeaderData.
*
* @return view_state
*/
public java.math.BigInteger getView_state() {
return view_state;
}
/**
* Sets the view_state value for this IssueHeaderData.
*
* @param view_state
*/
public void setView_state(java.math.BigInteger view_state) {
this.view_state = view_state;
}
/**
* Gets the last_updated value for this IssueHeaderData.
*
* @return last_updated
*/
public java.util.Calendar getLast_updated() {
return last_updated;
}
/**
* Sets the last_updated value for this IssueHeaderData.
*
* @param last_updated
*/
public void setLast_updated(java.util.Calendar last_updated) {
this.last_updated = last_updated;
}
/**
* Gets the project value for this IssueHeaderData.
*
* @return project
*/
public java.math.BigInteger getProject() {
return project;
}
/**
* Sets the project value for this IssueHeaderData.
*
* @param project
*/
public void setProject(java.math.BigInteger project) {
this.project = project;
}
/**
* Gets the category value for this IssueHeaderData.
*
* @return category
*/
public java.lang.String getCategory() {
return category;
}
/**
* Sets the category value for this IssueHeaderData.
*
* @param category
*/
public void setCategory(java.lang.String category) {
this.category = category;
}
/**
* Gets the priority value for this IssueHeaderData.
*
* @return priority
*/
public java.math.BigInteger getPriority() {
return priority;
}
/**
* Sets the priority value for this IssueHeaderData.
*
* @param priority
*/
public void setPriority(java.math.BigInteger priority) {
this.priority = priority;
}
/**
* Gets the severity value for this IssueHeaderData.
*
* @return severity
*/
public java.math.BigInteger getSeverity() {
return severity;
}
/**
* Sets the severity value for this IssueHeaderData.
*
* @param severity
*/
public void setSeverity(java.math.BigInteger severity) {
this.severity = severity;
}
/**
* Gets the status value for this IssueHeaderData.
*
* @return status
*/
public java.math.BigInteger getStatus() {
return status;
}
/**
* Sets the status value for this IssueHeaderData.
*
* @param status
*/
public void setStatus(java.math.BigInteger status) {
this.status = status;
}
/**
* Gets the reporter value for this IssueHeaderData.
*
* @return reporter
*/
public java.math.BigInteger getReporter() {
return reporter;
}
/**
* Sets the reporter value for this IssueHeaderData.
*
* @param reporter
*/
public void setReporter(java.math.BigInteger reporter) {
this.reporter = reporter;
}
/**
* Gets the summary value for this IssueHeaderData.
*
* @return summary
*/
public java.lang.String getSummary() {
return summary;
}
/**
* Sets the summary value for this IssueHeaderData.
*
* @param summary
*/
public void setSummary(java.lang.String summary) {
this.summary = summary;
}
/**
* Gets the handler value for this IssueHeaderData.
*
* @return handler
*/
public java.math.BigInteger getHandler() {
return handler;
}
/**
* Sets the handler value for this IssueHeaderData.
*
* @param handler
*/
public void setHandler(java.math.BigInteger handler) {
this.handler = handler;
}
/**
* Gets the resolution value for this IssueHeaderData.
*
* @return resolution
*/
public java.math.BigInteger getResolution() {
return resolution;
}
/**
* Sets the resolution value for this IssueHeaderData.
*
* @param resolution
*/
public void setResolution(java.math.BigInteger resolution) {
this.resolution = resolution;
}
/**
* Gets the attachments_count value for this IssueHeaderData.
*
* @return attachments_count
*/
public java.math.BigInteger getAttachments_count() {
return attachments_count;
}
/**
* Sets the attachments_count value for this IssueHeaderData.
*
* @param attachments_count
*/
public void setAttachments_count(java.math.BigInteger attachments_count) {
this.attachments_count = attachments_count;
}
/**
* Gets the notes_count value for this IssueHeaderData.
*
* @return notes_count
*/
public java.math.BigInteger getNotes_count() {
return notes_count;
}
/**
* Sets the notes_count value for this IssueHeaderData.
*
* @param notes_count
*/
public void setNotes_count(java.math.BigInteger notes_count) {
this.notes_count = notes_count;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof IssueHeaderData)) return false;
IssueHeaderData other = (IssueHeaderData) 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.view_state==null && other.getView_state()==null) ||
(this.view_state!=null &&
this.view_state.equals(other.getView_state()))) &&
((this.last_updated==null && other.getLast_updated()==null) ||
(this.last_updated!=null &&
this.last_updated.equals(other.getLast_updated()))) &&
((this.project==null && other.getProject()==null) ||
(this.project!=null &&
this.project.equals(other.getProject()))) &&
((this.category==null && other.getCategory()==null) ||
(this.category!=null &&
this.category.equals(other.getCategory()))) &&
((this.priority==null && other.getPriority()==null) ||
(this.priority!=null &&
this.priority.equals(other.getPriority()))) &&
((this.severity==null && other.getSeverity()==null) ||
(this.severity!=null &&
this.severity.equals(other.getSeverity()))) &&
((this.status==null && other.getStatus()==null) ||
(this.status!=null &&
this.status.equals(other.getStatus()))) &&
((this.reporter==null && other.getReporter()==null) ||
(this.reporter!=null &&
this.reporter.equals(other.getReporter()))) &&
((this.summary==null && other.getSummary()==null) ||
(this.summary!=null &&
this.summary.equals(other.getSummary()))) &&
((this.handler==null && other.getHandler()==null) ||
(this.handler!=null &&
this.handler.equals(other.getHandler()))) &&
((this.resolution==null && other.getResolution()==null) ||
(this.resolution!=null &&
this.resolution.equals(other.getResolution()))) &&
((this.attachments_count==null && other.getAttachments_count()==null) ||
(this.attachments_count!=null &&
this.attachments_count.equals(other.getAttachments_count()))) &&
((this.notes_count==null && other.getNotes_count()==null) ||
(this.notes_count!=null &&
this.notes_count.equals(other.getNotes_count())));
__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 (getView_state() != null) {
_hashCode += getView_state().hashCode();
}
if (getLast_updated() != null) {
_hashCode += getLast_updated().hashCode();
}
if (getProject() != null) {
_hashCode += getProject().hashCode();
}
if (getCategory() != null) {
_hashCode += getCategory().hashCode();
}
if (getPriority() != null) {
_hashCode += getPriority().hashCode();
}
if (getSeverity() != null) {
_hashCode += getSeverity().hashCode();
}
if (getStatus() != null) {
_hashCode += getStatus().hashCode();
}
if (getReporter() != null) {
_hashCode += getReporter().hashCode();
}
if (getSummary() != null) {
_hashCode += getSummary().hashCode();
}
if (getHandler() != null) {
_hashCode += getHandler().hashCode();
}
if (getResolution() != null) {
_hashCode += getResolution().hashCode();
}
if (getAttachments_count() != null) {
_hashCode += getAttachments_count().hashCode();
}
if (getNotes_count() != null) {
_hashCode += getNotes_count().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(IssueHeaderData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "IssueHeaderData"));
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.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("view_state");
elemField.setXmlName(new javax.xml.namespace.QName("", "view_state"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("last_updated");
elemField.setXmlName(new javax.xml.namespace.QName("", "last_updated"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("project");
elemField.setXmlName(new javax.xml.namespace.QName("", "project"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("category");
elemField.setXmlName(new javax.xml.namespace.QName("", "category"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("priority");
elemField.setXmlName(new javax.xml.namespace.QName("", "priority"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("severity");
elemField.setXmlName(new javax.xml.namespace.QName("", "severity"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("status");
elemField.setXmlName(new javax.xml.namespace.QName("", "status"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("reporter");
elemField.setXmlName(new javax.xml.namespace.QName("", "reporter"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("summary");
elemField.setXmlName(new javax.xml.namespace.QName("", "summary"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("handler");
elemField.setXmlName(new javax.xml.namespace.QName("", "handler"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("resolution");
elemField.setXmlName(new javax.xml.namespace.QName("", "resolution"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("attachments_count");
elemField.setXmlName(new javax.xml.namespace.QName("", "attachments_count"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("notes_count");
elemField.setXmlName(new javax.xml.namespace.QName("", "notes_count"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "integer"));
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);
}
}
@@ -0,0 +1,416 @@
/**
* IssueNoteData.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 IssueNoteData implements java.io.Serializable {
private java.math.BigInteger id;
private com.intellij.tasks.mantis.model.AccountData reporter;
private java.lang.String text;
private com.intellij.tasks.mantis.model.ObjectRef view_state;
private java.util.Calendar date_submitted;
private java.util.Calendar last_modified;
private java.math.BigInteger time_tracking;
private java.math.BigInteger note_type;
private java.lang.String note_attr;
public IssueNoteData() {
}
public IssueNoteData(
java.math.BigInteger id,
com.intellij.tasks.mantis.model.AccountData reporter,
java.lang.String text,
com.intellij.tasks.mantis.model.ObjectRef view_state,
java.util.Calendar date_submitted,
java.util.Calendar last_modified,
java.math.BigInteger time_tracking,
java.math.BigInteger note_type,
java.lang.String note_attr) {
this.id = id;
this.reporter = reporter;
this.text = text;
this.view_state = view_state;
this.date_submitted = date_submitted;
this.last_modified = last_modified;
this.time_tracking = time_tracking;
this.note_type = note_type;
this.note_attr = note_attr;
}
/**
* Gets the id value for this IssueNoteData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this IssueNoteData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the reporter value for this IssueNoteData.
*
* @return reporter
*/
public com.intellij.tasks.mantis.model.AccountData getReporter() {
return reporter;
}
/**
* Sets the reporter value for this IssueNoteData.
*
* @param reporter
*/
public void setReporter(com.intellij.tasks.mantis.model.AccountData reporter) {
this.reporter = reporter;
}
/**
* Gets the text value for this IssueNoteData.
*
* @return text
*/
public java.lang.String getText() {
return text;
}
/**
* Sets the text value for this IssueNoteData.
*
* @param text
*/
public void setText(java.lang.String text) {
this.text = text;
}
/**
* Gets the view_state value for this IssueNoteData.
*
* @return view_state
*/
public com.intellij.tasks.mantis.model.ObjectRef getView_state() {
return view_state;
}
/**
* Sets the view_state value for this IssueNoteData.
*
* @param view_state
*/
public void setView_state(com.intellij.tasks.mantis.model.ObjectRef view_state) {
this.view_state = view_state;
}
/**
* Gets the date_submitted value for this IssueNoteData.
*
* @return date_submitted
*/
public java.util.Calendar getDate_submitted() {
return date_submitted;
}
/**
* Sets the date_submitted value for this IssueNoteData.
*
* @param date_submitted
*/
public void setDate_submitted(java.util.Calendar date_submitted) {
this.date_submitted = date_submitted;
}
/**
* Gets the last_modified value for this IssueNoteData.
*
* @return last_modified
*/
public java.util.Calendar getLast_modified() {
return last_modified;
}
/**
* Sets the last_modified value for this IssueNoteData.
*
* @param last_modified
*/
public void setLast_modified(java.util.Calendar last_modified) {
this.last_modified = last_modified;
}
/**
* Gets the time_tracking value for this IssueNoteData.
*
* @return time_tracking
*/
public java.math.BigInteger getTime_tracking() {
return time_tracking;
}
/**
* Sets the time_tracking value for this IssueNoteData.
*
* @param time_tracking
*/
public void setTime_tracking(java.math.BigInteger time_tracking) {
this.time_tracking = time_tracking;
}
/**
* Gets the note_type value for this IssueNoteData.
*
* @return note_type
*/
public java.math.BigInteger getNote_type() {
return note_type;
}
/**
* Sets the note_type value for this IssueNoteData.
*
* @param note_type
*/
public void setNote_type(java.math.BigInteger note_type) {
this.note_type = note_type;
}
/**
* Gets the note_attr value for this IssueNoteData.
*
* @return note_attr
*/
public java.lang.String getNote_attr() {
return note_attr;
}
/**
* Sets the note_attr value for this IssueNoteData.
*
* @param note_attr
*/
public void setNote_attr(java.lang.String note_attr) {
this.note_attr = note_attr;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof IssueNoteData)) return false;
IssueNoteData other = (IssueNoteData) 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.reporter==null && other.getReporter()==null) ||
(this.reporter!=null &&
this.reporter.equals(other.getReporter()))) &&
((this.text==null && other.getText()==null) ||
(this.text!=null &&
this.text.equals(other.getText()))) &&
((this.view_state==null && other.getView_state()==null) ||
(this.view_state!=null &&
this.view_state.equals(other.getView_state()))) &&
((this.date_submitted==null && other.getDate_submitted()==null) ||
(this.date_submitted!=null &&
this.date_submitted.equals(other.getDate_submitted()))) &&
((this.last_modified==null && other.getLast_modified()==null) ||
(this.last_modified!=null &&
this.last_modified.equals(other.getLast_modified()))) &&
((this.time_tracking==null && other.getTime_tracking()==null) ||
(this.time_tracking!=null &&
this.time_tracking.equals(other.getTime_tracking()))) &&
((this.note_type==null && other.getNote_type()==null) ||
(this.note_type!=null &&
this.note_type.equals(other.getNote_type()))) &&
((this.note_attr==null && other.getNote_attr()==null) ||
(this.note_attr!=null &&
this.note_attr.equals(other.getNote_attr())));
__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 (getReporter() != null) {
_hashCode += getReporter().hashCode();
}
if (getText() != null) {
_hashCode += getText().hashCode();
}
if (getView_state() != null) {
_hashCode += getView_state().hashCode();
}
if (getDate_submitted() != null) {
_hashCode += getDate_submitted().hashCode();
}
if (getLast_modified() != null) {
_hashCode += getLast_modified().hashCode();
}
if (getTime_tracking() != null) {
_hashCode += getTime_tracking().hashCode();
}
if (getNote_type() != null) {
_hashCode += getNote_type().hashCode();
}
if (getNote_attr() != null) {
_hashCode += getNote_attr().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(IssueNoteData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "IssueNoteData"));
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("reporter");
elemField.setXmlName(new javax.xml.namespace.QName("", "reporter"));
elemField.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "AccountData"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("text");
elemField.setXmlName(new javax.xml.namespace.QName("", "text"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("view_state");
elemField.setXmlName(new javax.xml.namespace.QName("", "view_state"));
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("date_submitted");
elemField.setXmlName(new javax.xml.namespace.QName("", "date_submitted"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("last_modified");
elemField.setXmlName(new javax.xml.namespace.QName("", "last_modified"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("time_tracking");
elemField.setXmlName(new javax.xml.namespace.QName("", "time_tracking"));
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("note_type");
elemField.setXmlName(new javax.xml.namespace.QName("", "note_type"));
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("note_attr");
elemField.setXmlName(new javax.xml.namespace.QName("", "note_attr"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
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);
}
}
@@ -0,0 +1,16 @@
/**
* MantisConnect.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 interface MantisConnect extends javax.xml.rpc.Service {
public java.lang.String getMantisConnectPortAddress();
public com.intellij.tasks.mantis.model.MantisConnectPortType getMantisConnectPort() throws javax.xml.rpc.ServiceException;
public com.intellij.tasks.mantis.model.MantisConnectPortType getMantisConnectPort(java.net.URL portAddress) throws javax.xml.rpc.ServiceException;
}
@@ -0,0 +1,142 @@
/**
* MantisConnectLocator.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 MantisConnectLocator extends org.apache.axis.client.Service implements com.intellij.tasks.mantis.model.MantisConnect {
public MantisConnectLocator() {
}
public MantisConnectLocator(org.apache.axis.EngineConfiguration config) {
super(config);
}
public MantisConnectLocator(java.lang.String wsdlLoc, javax.xml.namespace.QName sName) throws javax.xml.rpc.ServiceException {
super(wsdlLoc, sName);
}
// Use to get a proxy class for MantisConnectPort
private java.lang.String MantisConnectPort_address = "http://localhost/mantis/api/soap/mantisconnect.php";
public java.lang.String getMantisConnectPortAddress() {
return MantisConnectPort_address;
}
// The WSDD service name defaults to the port name.
private java.lang.String MantisConnectPortWSDDServiceName = "MantisConnectPort";
public java.lang.String getMantisConnectPortWSDDServiceName() {
return MantisConnectPortWSDDServiceName;
}
public void setMantisConnectPortWSDDServiceName(java.lang.String name) {
MantisConnectPortWSDDServiceName = name;
}
public com.intellij.tasks.mantis.model.MantisConnectPortType getMantisConnectPort() throws javax.xml.rpc.ServiceException {
java.net.URL endpoint;
try {
endpoint = new java.net.URL(MantisConnectPort_address);
}
catch (java.net.MalformedURLException e) {
throw new javax.xml.rpc.ServiceException(e);
}
return getMantisConnectPort(endpoint);
}
public com.intellij.tasks.mantis.model.MantisConnectPortType getMantisConnectPort(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
try {
com.intellij.tasks.mantis.model.MantisConnectBindingStub _stub = new com.intellij.tasks.mantis.model.MantisConnectBindingStub(portAddress, this);
_stub.setPortName(getMantisConnectPortWSDDServiceName());
return _stub;
}
catch (org.apache.axis.AxisFault e) {
return null;
}
}
public void setMantisConnectPortEndpointAddress(java.lang.String address) {
MantisConnectPort_address = address;
}
/**
* For the given interface, get the stub implementation.
* If this service has no port for the given interface,
* then ServiceException is thrown.
*/
public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
try {
if (com.intellij.tasks.mantis.model.MantisConnectPortType.class.isAssignableFrom(serviceEndpointInterface)) {
com.intellij.tasks.mantis.model.MantisConnectBindingStub _stub = new com.intellij.tasks.mantis.model.MantisConnectBindingStub(new java.net.URL(MantisConnectPort_address), this);
_stub.setPortName(getMantisConnectPortWSDDServiceName());
return _stub;
}
}
catch (java.lang.Throwable t) {
throw new javax.xml.rpc.ServiceException(t);
}
throw new javax.xml.rpc.ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName()));
}
/**
* For the given interface, get the stub implementation.
* If this service has no port for the given interface,
* then ServiceException is thrown.
*/
public java.rmi.Remote getPort(javax.xml.namespace.QName portName, Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
if (portName == null) {
return getPort(serviceEndpointInterface);
}
java.lang.String inputPortName = portName.getLocalPart();
if ("MantisConnectPort".equals(inputPortName)) {
return getMantisConnectPort();
}
else {
java.rmi.Remote _stub = getPort(serviceEndpointInterface);
((org.apache.axis.client.Stub) _stub).setPortName(portName);
return _stub;
}
}
public javax.xml.namespace.QName getServiceName() {
return new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "MantisConnect");
}
private java.util.HashSet ports = null;
public java.util.Iterator getPorts() {
if (ports == null) {
ports = new java.util.HashSet();
ports.add(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "MantisConnectPort"));
}
return ports.iterator();
}
/**
* Set the endpoint address for the specified port name.
*/
public void setEndpointAddress(java.lang.String portName, java.lang.String address) throws javax.xml.rpc.ServiceException {
if ("MantisConnectPort".equals(portName)) {
setMantisConnectPortEndpointAddress(address);
}
else
{ // Unknown Port Name
throw new javax.xml.rpc.ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName);
}
}
/**
* Set the endpoint address for the specified port name.
*/
public void setEndpointAddress(javax.xml.namespace.QName portName, java.lang.String address) throws javax.xml.rpc.ServiceException {
setEndpointAddress(portName.getLocalPart(), address);
}
}
@@ -0,0 +1,332 @@
/**
* MantisConnectPortType.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 interface MantisConnectPortType extends java.rmi.Remote {
public java.lang.String mc_version() throws java.rmi.RemoteException;
/**
* Get the enumeration for statuses.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_status(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for priorities.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_priorities(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for severities.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_severities(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for reproducibilities.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_reproducibilities(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for projections.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_projections(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for ETAs.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_etas(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for resolutions.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_resolutions(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for access levels.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_access_levels(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for project statuses.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_project_status(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for project view states.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_project_view_states(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for view states.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_view_states(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for custom field types.
*/
public com.intellij.tasks.mantis.model.ObjectRef[] mc_enum_custom_field_types(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the enumeration for the specified enumeration type.
*/
public java.lang.String mc_enum_get(java.lang.String username, java.lang.String password, java.lang.String enumeration) throws java.rmi.RemoteException;
/**
* Check there exists an issue with the specified id.
*/
public boolean mc_issue_exists(java.lang.String username, java.lang.String password, java.math.BigInteger issue_id) throws java.rmi.RemoteException;
/**
* Get the issue with the specified id.
*/
public com.intellij.tasks.mantis.model.IssueData mc_issue_get(java.lang.String username, java.lang.String password, java.math.BigInteger issue_id) throws java.rmi.RemoteException;
/**
* Get the latest submitted issue in the specified project.
*/
public java.math.BigInteger mc_issue_get_biggest_id(java.lang.String username, java.lang.String password, java.math.BigInteger project_id) throws java.rmi.RemoteException;
/**
* Get the id of the issue with the specified summary.
*/
public java.math.BigInteger mc_issue_get_id_from_summary(java.lang.String username, java.lang.String password, java.lang.String summary) throws java.rmi.RemoteException;
/**
* Submit the specified issue details.
*/
public java.math.BigInteger mc_issue_add(java.lang.String username, java.lang.String password, com.intellij.tasks.mantis.model.IssueData issue) throws java.rmi.RemoteException;
/**
* Update Issue method.
*/
public boolean mc_issue_update(java.lang.String username, java.lang.String password, java.math.BigInteger issueId, com.intellij.tasks.mantis.model.IssueData issue) throws java.rmi.RemoteException;
/**
* Sets the tags for a specified issue.
*/
public boolean mc_issue_set_tags(java.lang.String username, java.lang.String password, java.math.BigInteger issue_id, com.intellij.tasks.mantis.model.TagData[] tags) throws java.rmi.RemoteException;
/**
* Delete the issue with the specified id.
*/
public boolean mc_issue_delete(java.lang.String username, java.lang.String password, java.math.BigInteger issue_id) throws java.rmi.RemoteException;
/**
* Submit a new note.
*/
public java.math.BigInteger mc_issue_note_add(java.lang.String username, java.lang.String password, java.math.BigInteger issue_id, com.intellij.tasks.mantis.model.IssueNoteData note) throws java.rmi.RemoteException;
/**
* Delete the note with the specified id.
*/
public boolean mc_issue_note_delete(java.lang.String username, java.lang.String password, java.math.BigInteger issue_note_id) throws java.rmi.RemoteException;
/**
* Update a specific note of a specific issue.
*/
public boolean mc_issue_note_update(java.lang.String username, java.lang.String password, com.intellij.tasks.mantis.model.IssueNoteData note) throws java.rmi.RemoteException;
/**
* Submit a new relationship.
*/
public java.math.BigInteger mc_issue_relationship_add(java.lang.String username, java.lang.String password, java.math.BigInteger issue_id, com.intellij.tasks.mantis.model.RelationshipData relationship) throws java.rmi.RemoteException;
/**
* Delete the relationship for the specified issue.
*/
public boolean mc_issue_relationship_delete(java.lang.String username, java.lang.String password, java.math.BigInteger issue_id, java.math.BigInteger relationship_id) throws java.rmi.RemoteException;
/**
* Submit a new issue attachment.
*/
public java.math.BigInteger mc_issue_attachment_add(java.lang.String username, java.lang.String password, java.math.BigInteger issue_id, java.lang.String name, java.lang.String file_type, byte[] content) throws java.rmi.RemoteException;
/**
* Delete the issue attachment with the specified id.
*/
public boolean mc_issue_attachment_delete(java.lang.String username, java.lang.String password, java.math.BigInteger issue_attachment_id) throws java.rmi.RemoteException;
/**
* Get the data for the specified issue attachment.
*/
public byte[] mc_issue_attachment_get(java.lang.String username, java.lang.String password, java.math.BigInteger issue_attachment_id) throws java.rmi.RemoteException;
/**
* Add a new project to the tracker (must have admin privileges)
*/
public java.math.BigInteger mc_project_add(java.lang.String username, java.lang.String password, com.intellij.tasks.mantis.model.ProjectData project) throws java.rmi.RemoteException;
/**
* Add a new project to the tracker (must have admin privileges)
*/
public boolean mc_project_delete(java.lang.String username, java.lang.String password, java.math.BigInteger project_id) throws java.rmi.RemoteException;
/**
* Update a specific project to the tracker (must have admin privileges)
*/
public boolean mc_project_update(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, com.intellij.tasks.mantis.model.ProjectData project) throws java.rmi.RemoteException;
/**
* Get the id of the project with the specified name.
*/
public java.math.BigInteger mc_project_get_id_from_name(java.lang.String username, java.lang.String password, java.lang.String project_name) throws java.rmi.RemoteException;
/**
* Get the issues that match the specified project id and paging
* details.
*/
public com.intellij.tasks.mantis.model.IssueData[] mc_project_get_issues(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, java.math.BigInteger page_number, java.math.BigInteger per_page) throws java.rmi.RemoteException;
/**
* Get the issue headers that match the specified project id and
* paging details.
*/
public com.intellij.tasks.mantis.model.IssueHeaderData[] mc_project_get_issue_headers(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, java.math.BigInteger page_number, java.math.BigInteger per_page) throws java.rmi.RemoteException;
/**
* Get appropriate users assigned to a project by access level.
*/
public com.intellij.tasks.mantis.model.AccountData[] mc_project_get_users(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, java.math.BigInteger access) throws java.rmi.RemoteException;
/**
* Get the list of projects that are accessible to the logged
* in user.
*/
public com.intellij.tasks.mantis.model.ProjectData[] mc_projects_get_user_accessible(java.lang.String username, java.lang.String password) throws java.rmi.RemoteException;
/**
* Get the categories belonging to the specified project.
*/
public java.lang.String[] mc_project_get_categories(java.lang.String username, java.lang.String password, java.math.BigInteger project_id) throws java.rmi.RemoteException;
/**
* Add a category of specific project.
*/
public java.math.BigInteger mc_project_add_category(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, java.lang.String p_category_name) throws java.rmi.RemoteException;
/**
* Delete a category of specific project.
*/
public java.math.BigInteger mc_project_delete_category(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, java.lang.String p_category_name) throws java.rmi.RemoteException;
/**
* Rename a category of specific project.
*/
public java.math.BigInteger mc_project_rename_category_by_name(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, java.lang.String p_category_name, java.lang.String p_category_name_new, java.math.BigInteger p_assigned_to) throws java.rmi.RemoteException;
/**
* Get the versions belonging to the specified project.
*/
public com.intellij.tasks.mantis.model.ProjectVersionData[] mc_project_get_versions(java.lang.String username, java.lang.String password, java.math.BigInteger project_id) throws java.rmi.RemoteException;
/**
* Submit the specified version details.
*/
public java.math.BigInteger mc_project_version_add(java.lang.String username, java.lang.String password, com.intellij.tasks.mantis.model.ProjectVersionData version) throws java.rmi.RemoteException;
/**
* Update version method.
*/
public boolean mc_project_version_update(java.lang.String username, java.lang.String password, java.math.BigInteger version_id, com.intellij.tasks.mantis.model.ProjectVersionData version) throws java.rmi.RemoteException;
/**
* Delete the version with the specified id.
*/
public boolean mc_project_version_delete(java.lang.String username, java.lang.String password, java.math.BigInteger version_id) throws java.rmi.RemoteException;
/**
* Get the released versions that belong to the specified project.
*/
public com.intellij.tasks.mantis.model.ProjectVersionData[] mc_project_get_released_versions(java.lang.String username, java.lang.String password, java.math.BigInteger project_id) throws java.rmi.RemoteException;
/**
* Get the unreleased version that belong to the specified project.
*/
public com.intellij.tasks.mantis.model.ProjectVersionData[] mc_project_get_unreleased_versions(java.lang.String username, java.lang.String password, java.math.BigInteger project_id) throws java.rmi.RemoteException;
/**
* Get the attachments that belong to the specified project.
*/
public com.intellij.tasks.mantis.model.ProjectAttachmentData[] mc_project_get_attachments(java.lang.String username, java.lang.String password, java.math.BigInteger project_id) throws java.rmi.RemoteException;
/**
* Get the custom fields that belong to the specified project.
*/
public com.intellij.tasks.mantis.model.CustomFieldDefinitionData[] mc_project_get_custom_fields(java.lang.String username, java.lang.String password, java.math.BigInteger project_id) throws java.rmi.RemoteException;
/**
* Get the data for the specified project attachment.
*/
public byte[] mc_project_attachment_get(java.lang.String username, java.lang.String password, java.math.BigInteger project_attachment_id) throws java.rmi.RemoteException;
/**
* Submit a new project attachment.
*/
public java.math.BigInteger mc_project_attachment_add(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, java.lang.String name, java.lang.String title, java.lang.String description, java.lang.String file_type, byte[] content) throws java.rmi.RemoteException;
/**
* Delete the project attachment with the specified id.
*/
public boolean mc_project_attachment_delete(java.lang.String username, java.lang.String password, java.math.BigInteger project_attachment_id) throws java.rmi.RemoteException;
/**
* Get the subprojects ID of a specific project.
*/
public java.lang.String[] mc_project_get_all_subprojects(java.lang.String username, java.lang.String password, java.math.BigInteger project_id) throws java.rmi.RemoteException;
/**
* Get the filters defined for the specified project.
*/
public com.intellij.tasks.mantis.model.FilterData[] mc_filter_get(java.lang.String username, java.lang.String password, java.math.BigInteger project_id) throws java.rmi.RemoteException;
/**
* Get the issues that match the specified filter and paging details.
*/
public com.intellij.tasks.mantis.model.IssueData[] mc_filter_get_issues(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, java.math.BigInteger filter_id, java.math.BigInteger page_number, java.math.BigInteger per_page) throws java.rmi.RemoteException;
/**
* Get the issue headers that match the specified filter and paging
* details.
*/
public com.intellij.tasks.mantis.model.IssueHeaderData[] mc_filter_get_issue_headers(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, java.math.BigInteger filter_id, java.math.BigInteger page_number, java.math.BigInteger per_page) throws java.rmi.RemoteException;
/**
* Get the value for the specified configuration variable.
*/
public java.lang.String mc_config_get_string(java.lang.String username, java.lang.String password, java.lang.String config_var) throws java.rmi.RemoteException;
/**
* Notifies MantisBT of a check-in for the issue with the specified
* id.
*/
public boolean mc_issue_checkin(java.lang.String username, java.lang.String password, java.math.BigInteger issue_id, java.lang.String comment, boolean fixed) throws java.rmi.RemoteException;
/**
* Get the value for the specified user preference.
*/
public java.lang.String mc_user_pref_get_pref(java.lang.String username, java.lang.String password, java.math.BigInteger project_id, java.lang.String pref_name) throws java.rmi.RemoteException;
/**
* Get profiles available to the current user.
*/
public com.intellij.tasks.mantis.model.ProfileDataSearchResult mc_user_profiles_get_all(java.lang.String username, java.lang.String password, java.math.BigInteger page_number, java.math.BigInteger per_page) throws java.rmi.RemoteException;
/**
* Gets all the tags.
*/
public com.intellij.tasks.mantis.model.TagDataSearchResult mc_tag_get_all(java.lang.String username, java.lang.String password, java.math.BigInteger page_number, java.math.BigInteger per_page) throws java.rmi.RemoteException;
/**
* Creates a tag.
*/
public java.math.BigInteger mc_tag_add(java.lang.String username, java.lang.String password, com.intellij.tasks.mantis.model.TagData tag) throws java.rmi.RemoteException;
/**
* Deletes a tag.
*/
public boolean mc_tag_delete(java.lang.String username, java.lang.String password, java.math.BigInteger tag_id) throws java.rmi.RemoteException;
}
@@ -0,0 +1,157 @@
/**
* ObjectRef.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 ObjectRef implements java.io.Serializable {
private java.math.BigInteger id;
private java.lang.String name;
public ObjectRef() {
}
public ObjectRef(
java.math.BigInteger id,
java.lang.String name) {
this.id = id;
this.name = name;
}
/**
* Gets the id value for this ObjectRef.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this ObjectRef.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the name value for this ObjectRef.
*
* @return name
*/
public java.lang.String getName() {
return name;
}
/**
* Sets the name value for this ObjectRef.
*
* @param name
*/
public void setName(java.lang.String name) {
this.name = name;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ObjectRef)) return false;
ObjectRef other = (ObjectRef) 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.name==null && other.getName()==null) ||
(this.name!=null &&
this.name.equals(other.getName())));
__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 (getName() != null) {
_hashCode += getName().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(ObjectRef.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "ObjectRef"));
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("name");
elemField.setXmlName(new javax.xml.namespace.QName("", "name"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
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);
}
}
@@ -0,0 +1,305 @@
/**
* ProfileData.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 ProfileData implements java.io.Serializable {
private java.math.BigInteger id;
private com.intellij.tasks.mantis.model.AccountData user_id;
private java.lang.String platform;
private java.lang.String os;
private java.lang.String os_build;
private java.lang.String description;
public ProfileData() {
}
public ProfileData(
java.math.BigInteger id,
com.intellij.tasks.mantis.model.AccountData user_id,
java.lang.String platform,
java.lang.String os,
java.lang.String os_build,
java.lang.String description) {
this.id = id;
this.user_id = user_id;
this.platform = platform;
this.os = os;
this.os_build = os_build;
this.description = description;
}
/**
* Gets the id value for this ProfileData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this ProfileData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the user_id value for this ProfileData.
*
* @return user_id
*/
public com.intellij.tasks.mantis.model.AccountData getUser_id() {
return user_id;
}
/**
* Sets the user_id value for this ProfileData.
*
* @param user_id
*/
public void setUser_id(com.intellij.tasks.mantis.model.AccountData user_id) {
this.user_id = user_id;
}
/**
* Gets the platform value for this ProfileData.
*
* @return platform
*/
public java.lang.String getPlatform() {
return platform;
}
/**
* Sets the platform value for this ProfileData.
*
* @param platform
*/
public void setPlatform(java.lang.String platform) {
this.platform = platform;
}
/**
* Gets the os value for this ProfileData.
*
* @return os
*/
public java.lang.String getOs() {
return os;
}
/**
* Sets the os value for this ProfileData.
*
* @param os
*/
public void setOs(java.lang.String os) {
this.os = os;
}
/**
* Gets the os_build value for this ProfileData.
*
* @return os_build
*/
public java.lang.String getOs_build() {
return os_build;
}
/**
* Sets the os_build value for this ProfileData.
*
* @param os_build
*/
public void setOs_build(java.lang.String os_build) {
this.os_build = os_build;
}
/**
* Gets the description value for this ProfileData.
*
* @return description
*/
public java.lang.String getDescription() {
return description;
}
/**
* Sets the description value for this ProfileData.
*
* @param description
*/
public void setDescription(java.lang.String description) {
this.description = description;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ProfileData)) return false;
ProfileData other = (ProfileData) 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.user_id==null && other.getUser_id()==null) ||
(this.user_id!=null &&
this.user_id.equals(other.getUser_id()))) &&
((this.platform==null && other.getPlatform()==null) ||
(this.platform!=null &&
this.platform.equals(other.getPlatform()))) &&
((this.os==null && other.getOs()==null) ||
(this.os!=null &&
this.os.equals(other.getOs()))) &&
((this.os_build==null && other.getOs_build()==null) ||
(this.os_build!=null &&
this.os_build.equals(other.getOs_build()))) &&
((this.description==null && other.getDescription()==null) ||
(this.description!=null &&
this.description.equals(other.getDescription())));
__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 (getUser_id() != null) {
_hashCode += getUser_id().hashCode();
}
if (getPlatform() != null) {
_hashCode += getPlatform().hashCode();
}
if (getOs() != null) {
_hashCode += getOs().hashCode();
}
if (getOs_build() != null) {
_hashCode += getOs_build().hashCode();
}
if (getDescription() != null) {
_hashCode += getDescription().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(ProfileData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "ProfileData"));
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("user_id");
elemField.setXmlName(new javax.xml.namespace.QName("", "user_id"));
elemField.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "AccountData"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("platform");
elemField.setXmlName(new javax.xml.namespace.QName("", "platform"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("os");
elemField.setXmlName(new javax.xml.namespace.QName("", "os"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("os_build");
elemField.setXmlName(new javax.xml.namespace.QName("", "os_build"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("description");
elemField.setXmlName(new javax.xml.namespace.QName("", "description"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
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);
}
}
@@ -0,0 +1,165 @@
/**
* ProfileDataSearchResult.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 ProfileDataSearchResult implements java.io.Serializable {
private com.intellij.tasks.mantis.model.ProfileData[] results;
private java.math.BigInteger total_results;
public ProfileDataSearchResult() {
}
public ProfileDataSearchResult(
com.intellij.tasks.mantis.model.ProfileData[] results,
java.math.BigInteger total_results) {
this.results = results;
this.total_results = total_results;
}
/**
* Gets the results value for this ProfileDataSearchResult.
*
* @return results
*/
public com.intellij.tasks.mantis.model.ProfileData[] getResults() {
return results;
}
/**
* Sets the results value for this ProfileDataSearchResult.
*
* @param results
*/
public void setResults(com.intellij.tasks.mantis.model.ProfileData[] results) {
this.results = results;
}
/**
* Gets the total_results value for this ProfileDataSearchResult.
*
* @return total_results
*/
public java.math.BigInteger getTotal_results() {
return total_results;
}
/**
* Sets the total_results value for this ProfileDataSearchResult.
*
* @param total_results
*/
public void setTotal_results(java.math.BigInteger total_results) {
this.total_results = total_results;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ProfileDataSearchResult)) return false;
ProfileDataSearchResult other = (ProfileDataSearchResult) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.results==null && other.getResults()==null) ||
(this.results!=null &&
java.util.Arrays.equals(this.results, other.getResults()))) &&
((this.total_results==null && other.getTotal_results()==null) ||
(this.total_results!=null &&
this.total_results.equals(other.getTotal_results())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getResults() != null) {
for (int i=0;
i<java.lang.reflect.Array.getLength(getResults());
i++) {
java.lang.Object obj = java.lang.reflect.Array.get(getResults(), i);
if (obj != null &&
!obj.getClass().isArray()) {
_hashCode += obj.hashCode();
}
}
}
if (getTotal_results() != null) {
_hashCode += getTotal_results().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(ProfileDataSearchResult.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "ProfileDataSearchResult"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("results");
elemField.setXmlName(new javax.xml.namespace.QName("", "results"));
elemField.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "ProfileData"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("total_results");
elemField.setXmlName(new javax.xml.namespace.QName("", "total_results"));
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);
}
}
@@ -0,0 +1,416 @@
/**
* ProjectAttachmentData.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 ProjectAttachmentData implements java.io.Serializable {
private java.math.BigInteger id;
private java.lang.String filename;
private java.lang.String title;
private java.lang.String description;
private java.math.BigInteger size;
private java.lang.String content_type;
private java.util.Calendar date_submitted;
private org.apache.axis.types.URI download_url;
private java.math.BigInteger user_id;
public ProjectAttachmentData() {
}
public ProjectAttachmentData(
java.math.BigInteger id,
java.lang.String filename,
java.lang.String title,
java.lang.String description,
java.math.BigInteger size,
java.lang.String content_type,
java.util.Calendar date_submitted,
org.apache.axis.types.URI download_url,
java.math.BigInteger user_id) {
this.id = id;
this.filename = filename;
this.title = title;
this.description = description;
this.size = size;
this.content_type = content_type;
this.date_submitted = date_submitted;
this.download_url = download_url;
this.user_id = user_id;
}
/**
* Gets the id value for this ProjectAttachmentData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this ProjectAttachmentData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the filename value for this ProjectAttachmentData.
*
* @return filename
*/
public java.lang.String getFilename() {
return filename;
}
/**
* Sets the filename value for this ProjectAttachmentData.
*
* @param filename
*/
public void setFilename(java.lang.String filename) {
this.filename = filename;
}
/**
* Gets the title value for this ProjectAttachmentData.
*
* @return title
*/
public java.lang.String getTitle() {
return title;
}
/**
* Sets the title value for this ProjectAttachmentData.
*
* @param title
*/
public void setTitle(java.lang.String title) {
this.title = title;
}
/**
* Gets the description value for this ProjectAttachmentData.
*
* @return description
*/
public java.lang.String getDescription() {
return description;
}
/**
* Sets the description value for this ProjectAttachmentData.
*
* @param description
*/
public void setDescription(java.lang.String description) {
this.description = description;
}
/**
* Gets the size value for this ProjectAttachmentData.
*
* @return size
*/
public java.math.BigInteger getSize() {
return size;
}
/**
* Sets the size value for this ProjectAttachmentData.
*
* @param size
*/
public void setSize(java.math.BigInteger size) {
this.size = size;
}
/**
* Gets the content_type value for this ProjectAttachmentData.
*
* @return content_type
*/
public java.lang.String getContent_type() {
return content_type;
}
/**
* Sets the content_type value for this ProjectAttachmentData.
*
* @param content_type
*/
public void setContent_type(java.lang.String content_type) {
this.content_type = content_type;
}
/**
* Gets the date_submitted value for this ProjectAttachmentData.
*
* @return date_submitted
*/
public java.util.Calendar getDate_submitted() {
return date_submitted;
}
/**
* Sets the date_submitted value for this ProjectAttachmentData.
*
* @param date_submitted
*/
public void setDate_submitted(java.util.Calendar date_submitted) {
this.date_submitted = date_submitted;
}
/**
* Gets the download_url value for this ProjectAttachmentData.
*
* @return download_url
*/
public org.apache.axis.types.URI getDownload_url() {
return download_url;
}
/**
* Sets the download_url value for this ProjectAttachmentData.
*
* @param download_url
*/
public void setDownload_url(org.apache.axis.types.URI download_url) {
this.download_url = download_url;
}
/**
* Gets the user_id value for this ProjectAttachmentData.
*
* @return user_id
*/
public java.math.BigInteger getUser_id() {
return user_id;
}
/**
* Sets the user_id value for this ProjectAttachmentData.
*
* @param user_id
*/
public void setUser_id(java.math.BigInteger user_id) {
this.user_id = user_id;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ProjectAttachmentData)) return false;
ProjectAttachmentData other = (ProjectAttachmentData) 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.filename==null && other.getFilename()==null) ||
(this.filename!=null &&
this.filename.equals(other.getFilename()))) &&
((this.title==null && other.getTitle()==null) ||
(this.title!=null &&
this.title.equals(other.getTitle()))) &&
((this.description==null && other.getDescription()==null) ||
(this.description!=null &&
this.description.equals(other.getDescription()))) &&
((this.size==null && other.getSize()==null) ||
(this.size!=null &&
this.size.equals(other.getSize()))) &&
((this.content_type==null && other.getContent_type()==null) ||
(this.content_type!=null &&
this.content_type.equals(other.getContent_type()))) &&
((this.date_submitted==null && other.getDate_submitted()==null) ||
(this.date_submitted!=null &&
this.date_submitted.equals(other.getDate_submitted()))) &&
((this.download_url==null && other.getDownload_url()==null) ||
(this.download_url!=null &&
this.download_url.equals(other.getDownload_url()))) &&
((this.user_id==null && other.getUser_id()==null) ||
(this.user_id!=null &&
this.user_id.equals(other.getUser_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 (getFilename() != null) {
_hashCode += getFilename().hashCode();
}
if (getTitle() != null) {
_hashCode += getTitle().hashCode();
}
if (getDescription() != null) {
_hashCode += getDescription().hashCode();
}
if (getSize() != null) {
_hashCode += getSize().hashCode();
}
if (getContent_type() != null) {
_hashCode += getContent_type().hashCode();
}
if (getDate_submitted() != null) {
_hashCode += getDate_submitted().hashCode();
}
if (getDownload_url() != null) {
_hashCode += getDownload_url().hashCode();
}
if (getUser_id() != null) {
_hashCode += getUser_id().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(ProjectAttachmentData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "ProjectAttachmentData"));
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("filename");
elemField.setXmlName(new javax.xml.namespace.QName("", "filename"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("title");
elemField.setXmlName(new javax.xml.namespace.QName("", "title"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("description");
elemField.setXmlName(new javax.xml.namespace.QName("", "description"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("size");
elemField.setXmlName(new javax.xml.namespace.QName("", "size"));
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("content_type");
elemField.setXmlName(new javax.xml.namespace.QName("", "content_type"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("date_submitted");
elemField.setXmlName(new javax.xml.namespace.QName("", "date_submitted"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("download_url");
elemField.setXmlName(new javax.xml.namespace.QName("", "download_url"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "anyURI"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("user_id");
elemField.setXmlName(new javax.xml.namespace.QName("", "user_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);
}
}
@@ -0,0 +1,461 @@
/**
* ProjectData.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 ProjectData implements java.io.Serializable {
private java.math.BigInteger id;
private java.lang.String name;
private com.intellij.tasks.mantis.model.ObjectRef status;
private java.lang.Boolean enabled;
private com.intellij.tasks.mantis.model.ObjectRef view_state;
private com.intellij.tasks.mantis.model.ObjectRef access_min;
private java.lang.String file_path;
private java.lang.String description;
private com.intellij.tasks.mantis.model.ProjectData[] subprojects;
private java.lang.Boolean inherit_global;
public ProjectData() {
}
public ProjectData(
java.math.BigInteger id,
java.lang.String name,
com.intellij.tasks.mantis.model.ObjectRef status,
java.lang.Boolean enabled,
com.intellij.tasks.mantis.model.ObjectRef view_state,
com.intellij.tasks.mantis.model.ObjectRef access_min,
java.lang.String file_path,
java.lang.String description,
com.intellij.tasks.mantis.model.ProjectData[] subprojects,
java.lang.Boolean inherit_global) {
this.id = id;
this.name = name;
this.status = status;
this.enabled = enabled;
this.view_state = view_state;
this.access_min = access_min;
this.file_path = file_path;
this.description = description;
this.subprojects = subprojects;
this.inherit_global = inherit_global;
}
/**
* Gets the id value for this ProjectData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this ProjectData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the name value for this ProjectData.
*
* @return name
*/
public java.lang.String getName() {
return name;
}
/**
* Sets the name value for this ProjectData.
*
* @param name
*/
public void setName(java.lang.String name) {
this.name = name;
}
/**
* Gets the status value for this ProjectData.
*
* @return status
*/
public com.intellij.tasks.mantis.model.ObjectRef getStatus() {
return status;
}
/**
* Sets the status value for this ProjectData.
*
* @param status
*/
public void setStatus(com.intellij.tasks.mantis.model.ObjectRef status) {
this.status = status;
}
/**
* Gets the enabled value for this ProjectData.
*
* @return enabled
*/
public java.lang.Boolean getEnabled() {
return enabled;
}
/**
* Sets the enabled value for this ProjectData.
*
* @param enabled
*/
public void setEnabled(java.lang.Boolean enabled) {
this.enabled = enabled;
}
/**
* Gets the view_state value for this ProjectData.
*
* @return view_state
*/
public com.intellij.tasks.mantis.model.ObjectRef getView_state() {
return view_state;
}
/**
* Sets the view_state value for this ProjectData.
*
* @param view_state
*/
public void setView_state(com.intellij.tasks.mantis.model.ObjectRef view_state) {
this.view_state = view_state;
}
/**
* Gets the access_min value for this ProjectData.
*
* @return access_min
*/
public com.intellij.tasks.mantis.model.ObjectRef getAccess_min() {
return access_min;
}
/**
* Sets the access_min value for this ProjectData.
*
* @param access_min
*/
public void setAccess_min(com.intellij.tasks.mantis.model.ObjectRef access_min) {
this.access_min = access_min;
}
/**
* Gets the file_path value for this ProjectData.
*
* @return file_path
*/
public java.lang.String getFile_path() {
return file_path;
}
/**
* Sets the file_path value for this ProjectData.
*
* @param file_path
*/
public void setFile_path(java.lang.String file_path) {
this.file_path = file_path;
}
/**
* Gets the description value for this ProjectData.
*
* @return description
*/
public java.lang.String getDescription() {
return description;
}
/**
* Sets the description value for this ProjectData.
*
* @param description
*/
public void setDescription(java.lang.String description) {
this.description = description;
}
/**
* Gets the subprojects value for this ProjectData.
*
* @return subprojects
*/
public com.intellij.tasks.mantis.model.ProjectData[] getSubprojects() {
return subprojects;
}
/**
* Sets the subprojects value for this ProjectData.
*
* @param subprojects
*/
public void setSubprojects(com.intellij.tasks.mantis.model.ProjectData[] subprojects) {
this.subprojects = subprojects;
}
/**
* Gets the inherit_global value for this ProjectData.
*
* @return inherit_global
*/
public java.lang.Boolean getInherit_global() {
return inherit_global;
}
/**
* Sets the inherit_global value for this ProjectData.
*
* @param inherit_global
*/
public void setInherit_global(java.lang.Boolean inherit_global) {
this.inherit_global = inherit_global;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ProjectData)) return false;
ProjectData other = (ProjectData) 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.name==null && other.getName()==null) ||
(this.name!=null &&
this.name.equals(other.getName()))) &&
((this.status==null && other.getStatus()==null) ||
(this.status!=null &&
this.status.equals(other.getStatus()))) &&
((this.enabled==null && other.getEnabled()==null) ||
(this.enabled!=null &&
this.enabled.equals(other.getEnabled()))) &&
((this.view_state==null && other.getView_state()==null) ||
(this.view_state!=null &&
this.view_state.equals(other.getView_state()))) &&
((this.access_min==null && other.getAccess_min()==null) ||
(this.access_min!=null &&
this.access_min.equals(other.getAccess_min()))) &&
((this.file_path==null && other.getFile_path()==null) ||
(this.file_path!=null &&
this.file_path.equals(other.getFile_path()))) &&
((this.description==null && other.getDescription()==null) ||
(this.description!=null &&
this.description.equals(other.getDescription()))) &&
((this.subprojects==null && other.getSubprojects()==null) ||
(this.subprojects!=null &&
java.util.Arrays.equals(this.subprojects, other.getSubprojects()))) &&
((this.inherit_global==null && other.getInherit_global()==null) ||
(this.inherit_global!=null &&
this.inherit_global.equals(other.getInherit_global())));
__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 (getName() != null) {
_hashCode += getName().hashCode();
}
if (getStatus() != null) {
_hashCode += getStatus().hashCode();
}
if (getEnabled() != null) {
_hashCode += getEnabled().hashCode();
}
if (getView_state() != null) {
_hashCode += getView_state().hashCode();
}
if (getAccess_min() != null) {
_hashCode += getAccess_min().hashCode();
}
if (getFile_path() != null) {
_hashCode += getFile_path().hashCode();
}
if (getDescription() != null) {
_hashCode += getDescription().hashCode();
}
if (getSubprojects() != null) {
for (int i=0;
i<java.lang.reflect.Array.getLength(getSubprojects());
i++) {
java.lang.Object obj = java.lang.reflect.Array.get(getSubprojects(), i);
if (obj != null &&
!obj.getClass().isArray()) {
_hashCode += obj.hashCode();
}
}
}
if (getInherit_global() != null) {
_hashCode += getInherit_global().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(ProjectData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "ProjectData"));
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("name");
elemField.setXmlName(new javax.xml.namespace.QName("", "name"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("status");
elemField.setXmlName(new javax.xml.namespace.QName("", "status"));
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("enabled");
elemField.setXmlName(new javax.xml.namespace.QName("", "enabled"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("view_state");
elemField.setXmlName(new javax.xml.namespace.QName("", "view_state"));
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("access_min");
elemField.setXmlName(new javax.xml.namespace.QName("", "access_min"));
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("file_path");
elemField.setXmlName(new javax.xml.namespace.QName("", "file_path"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("description");
elemField.setXmlName(new javax.xml.namespace.QName("", "description"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("subprojects");
elemField.setXmlName(new javax.xml.namespace.QName("", "subprojects"));
elemField.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "ProjectData"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("inherit_global");
elemField.setXmlName(new javax.xml.namespace.QName("", "inherit_global"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
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);
}
}
@@ -0,0 +1,342 @@
/**
* ProjectVersionData.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 ProjectVersionData implements java.io.Serializable {
private java.math.BigInteger id;
private java.lang.String name;
private java.math.BigInteger project_id;
private java.util.Calendar date_order;
private java.lang.String description;
private java.lang.Boolean released;
private java.lang.Boolean obsolete;
public ProjectVersionData() {
}
public ProjectVersionData(
java.math.BigInteger id,
java.lang.String name,
java.math.BigInteger project_id,
java.util.Calendar date_order,
java.lang.String description,
java.lang.Boolean released,
java.lang.Boolean obsolete) {
this.id = id;
this.name = name;
this.project_id = project_id;
this.date_order = date_order;
this.description = description;
this.released = released;
this.obsolete = obsolete;
}
/**
* Gets the id value for this ProjectVersionData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this ProjectVersionData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the name value for this ProjectVersionData.
*
* @return name
*/
public java.lang.String getName() {
return name;
}
/**
* Sets the name value for this ProjectVersionData.
*
* @param name
*/
public void setName(java.lang.String name) {
this.name = name;
}
/**
* Gets the project_id value for this ProjectVersionData.
*
* @return project_id
*/
public java.math.BigInteger getProject_id() {
return project_id;
}
/**
* Sets the project_id value for this ProjectVersionData.
*
* @param project_id
*/
public void setProject_id(java.math.BigInteger project_id) {
this.project_id = project_id;
}
/**
* Gets the date_order value for this ProjectVersionData.
*
* @return date_order
*/
public java.util.Calendar getDate_order() {
return date_order;
}
/**
* Sets the date_order value for this ProjectVersionData.
*
* @param date_order
*/
public void setDate_order(java.util.Calendar date_order) {
this.date_order = date_order;
}
/**
* Gets the description value for this ProjectVersionData.
*
* @return description
*/
public java.lang.String getDescription() {
return description;
}
/**
* Sets the description value for this ProjectVersionData.
*
* @param description
*/
public void setDescription(java.lang.String description) {
this.description = description;
}
/**
* Gets the released value for this ProjectVersionData.
*
* @return released
*/
public java.lang.Boolean getReleased() {
return released;
}
/**
* Sets the released value for this ProjectVersionData.
*
* @param released
*/
public void setReleased(java.lang.Boolean released) {
this.released = released;
}
/**
* Gets the obsolete value for this ProjectVersionData.
*
* @return obsolete
*/
public java.lang.Boolean getObsolete() {
return obsolete;
}
/**
* Sets the obsolete value for this ProjectVersionData.
*
* @param obsolete
*/
public void setObsolete(java.lang.Boolean obsolete) {
this.obsolete = obsolete;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ProjectVersionData)) return false;
ProjectVersionData other = (ProjectVersionData) 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.name==null && other.getName()==null) ||
(this.name!=null &&
this.name.equals(other.getName()))) &&
((this.project_id==null && other.getProject_id()==null) ||
(this.project_id!=null &&
this.project_id.equals(other.getProject_id()))) &&
((this.date_order==null && other.getDate_order()==null) ||
(this.date_order!=null &&
this.date_order.equals(other.getDate_order()))) &&
((this.description==null && other.getDescription()==null) ||
(this.description!=null &&
this.description.equals(other.getDescription()))) &&
((this.released==null && other.getReleased()==null) ||
(this.released!=null &&
this.released.equals(other.getReleased()))) &&
((this.obsolete==null && other.getObsolete()==null) ||
(this.obsolete!=null &&
this.obsolete.equals(other.getObsolete())));
__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 (getName() != null) {
_hashCode += getName().hashCode();
}
if (getProject_id() != null) {
_hashCode += getProject_id().hashCode();
}
if (getDate_order() != null) {
_hashCode += getDate_order().hashCode();
}
if (getDescription() != null) {
_hashCode += getDescription().hashCode();
}
if (getReleased() != null) {
_hashCode += getReleased().hashCode();
}
if (getObsolete() != null) {
_hashCode += getObsolete().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(ProjectVersionData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "ProjectVersionData"));
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("name");
elemField.setXmlName(new javax.xml.namespace.QName("", "name"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("project_id");
elemField.setXmlName(new javax.xml.namespace.QName("", "project_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("date_order");
elemField.setXmlName(new javax.xml.namespace.QName("", "date_order"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("description");
elemField.setXmlName(new javax.xml.namespace.QName("", "description"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("released");
elemField.setXmlName(new javax.xml.namespace.QName("", "released"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("obsolete");
elemField.setXmlName(new javax.xml.namespace.QName("", "obsolete"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
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);
}
}
@@ -0,0 +1,194 @@
/**
* 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);
}
}
@@ -0,0 +1,305 @@
/**
* TagData.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 TagData implements java.io.Serializable {
private java.math.BigInteger id;
private com.intellij.tasks.mantis.model.AccountData user_id;
private java.lang.String name;
private java.lang.String description;
private java.util.Calendar date_created;
private java.util.Calendar date_updated;
public TagData() {
}
public TagData(
java.math.BigInteger id,
com.intellij.tasks.mantis.model.AccountData user_id,
java.lang.String name,
java.lang.String description,
java.util.Calendar date_created,
java.util.Calendar date_updated) {
this.id = id;
this.user_id = user_id;
this.name = name;
this.description = description;
this.date_created = date_created;
this.date_updated = date_updated;
}
/**
* Gets the id value for this TagData.
*
* @return id
*/
public java.math.BigInteger getId() {
return id;
}
/**
* Sets the id value for this TagData.
*
* @param id
*/
public void setId(java.math.BigInteger id) {
this.id = id;
}
/**
* Gets the user_id value for this TagData.
*
* @return user_id
*/
public com.intellij.tasks.mantis.model.AccountData getUser_id() {
return user_id;
}
/**
* Sets the user_id value for this TagData.
*
* @param user_id
*/
public void setUser_id(com.intellij.tasks.mantis.model.AccountData user_id) {
this.user_id = user_id;
}
/**
* Gets the name value for this TagData.
*
* @return name
*/
public java.lang.String getName() {
return name;
}
/**
* Sets the name value for this TagData.
*
* @param name
*/
public void setName(java.lang.String name) {
this.name = name;
}
/**
* Gets the description value for this TagData.
*
* @return description
*/
public java.lang.String getDescription() {
return description;
}
/**
* Sets the description value for this TagData.
*
* @param description
*/
public void setDescription(java.lang.String description) {
this.description = description;
}
/**
* Gets the date_created value for this TagData.
*
* @return date_created
*/
public java.util.Calendar getDate_created() {
return date_created;
}
/**
* Sets the date_created value for this TagData.
*
* @param date_created
*/
public void setDate_created(java.util.Calendar date_created) {
this.date_created = date_created;
}
/**
* Gets the date_updated value for this TagData.
*
* @return date_updated
*/
public java.util.Calendar getDate_updated() {
return date_updated;
}
/**
* Sets the date_updated value for this TagData.
*
* @param date_updated
*/
public void setDate_updated(java.util.Calendar date_updated) {
this.date_updated = date_updated;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof TagData)) return false;
TagData other = (TagData) 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.user_id==null && other.getUser_id()==null) ||
(this.user_id!=null &&
this.user_id.equals(other.getUser_id()))) &&
((this.name==null && other.getName()==null) ||
(this.name!=null &&
this.name.equals(other.getName()))) &&
((this.description==null && other.getDescription()==null) ||
(this.description!=null &&
this.description.equals(other.getDescription()))) &&
((this.date_created==null && other.getDate_created()==null) ||
(this.date_created!=null &&
this.date_created.equals(other.getDate_created()))) &&
((this.date_updated==null && other.getDate_updated()==null) ||
(this.date_updated!=null &&
this.date_updated.equals(other.getDate_updated())));
__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 (getUser_id() != null) {
_hashCode += getUser_id().hashCode();
}
if (getName() != null) {
_hashCode += getName().hashCode();
}
if (getDescription() != null) {
_hashCode += getDescription().hashCode();
}
if (getDate_created() != null) {
_hashCode += getDate_created().hashCode();
}
if (getDate_updated() != null) {
_hashCode += getDate_updated().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(TagData.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "TagData"));
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("user_id");
elemField.setXmlName(new javax.xml.namespace.QName("", "user_id"));
elemField.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "AccountData"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("name");
elemField.setXmlName(new javax.xml.namespace.QName("", "name"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("description");
elemField.setXmlName(new javax.xml.namespace.QName("", "description"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("date_created");
elemField.setXmlName(new javax.xml.namespace.QName("", "date_created"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("date_updated");
elemField.setXmlName(new javax.xml.namespace.QName("", "date_updated"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "dateTime"));
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);
}
}
@@ -0,0 +1,165 @@
/**
* TagDataSearchResult.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 TagDataSearchResult implements java.io.Serializable {
private com.intellij.tasks.mantis.model.TagData[] results;
private java.math.BigInteger total_results;
public TagDataSearchResult() {
}
public TagDataSearchResult(
com.intellij.tasks.mantis.model.TagData[] results,
java.math.BigInteger total_results) {
this.results = results;
this.total_results = total_results;
}
/**
* Gets the results value for this TagDataSearchResult.
*
* @return results
*/
public com.intellij.tasks.mantis.model.TagData[] getResults() {
return results;
}
/**
* Sets the results value for this TagDataSearchResult.
*
* @param results
*/
public void setResults(com.intellij.tasks.mantis.model.TagData[] results) {
this.results = results;
}
/**
* Gets the total_results value for this TagDataSearchResult.
*
* @return total_results
*/
public java.math.BigInteger getTotal_results() {
return total_results;
}
/**
* Sets the total_results value for this TagDataSearchResult.
*
* @param total_results
*/
public void setTotal_results(java.math.BigInteger total_results) {
this.total_results = total_results;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof TagDataSearchResult)) return false;
TagDataSearchResult other = (TagDataSearchResult) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.results==null && other.getResults()==null) ||
(this.results!=null &&
java.util.Arrays.equals(this.results, other.getResults()))) &&
((this.total_results==null && other.getTotal_results()==null) ||
(this.total_results!=null &&
this.total_results.equals(other.getTotal_results())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getResults() != null) {
for (int i=0;
i<java.lang.reflect.Array.getLength(getResults());
i++) {
java.lang.Object obj = java.lang.reflect.Array.get(getResults(), i);
if (obj != null &&
!obj.getClass().isArray()) {
_hashCode += obj.hashCode();
}
}
}
if (getTotal_results() != null) {
_hashCode += getTotal_results().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(TagDataSearchResult.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "TagDataSearchResult"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("results");
elemField.setXmlName(new javax.xml.namespace.QName("", "results"));
elemField.setXmlType(new javax.xml.namespace.QName("http://futureware.biz/mantisconnect", "TagData"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("total_results");
elemField.setXmlName(new javax.xml.namespace.QName("", "total_results"));
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);
}
}
File diff suppressed because it is too large Load Diff
-9
View File
@@ -36,15 +36,6 @@
</library>
</orderEntry>
<orderEntry type="library" name="gson" level="project" />
<orderEntry type="module-library">
<library name="mantis">
<CLASSES>
<root url="jar://$MODULE_DIR$/lib/mantis-axis-soap-client-1.2.9.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
</component>
</module>