X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fext%2Fvamsas%2FServiceHandle.java;h=83412eacbda89840e00a6fbdb0599b1bc9f04959;hb=refs%2Fheads%2Freleases%2FRelease_2_10_0_Branch;hp=2b662f720e23f4a4aeb71515d6327deb9bb20040;hpb=0dcb4abcf1a0fac137a98d3791ab117cd5bed141;p=jalview.git diff --git a/src/ext/vamsas/ServiceHandle.java b/src/ext/vamsas/ServiceHandle.java index 2b662f7..83412ea 100755 --- a/src/ext/vamsas/ServiceHandle.java +++ b/src/ext/vamsas/ServiceHandle.java @@ -1,220 +1,257 @@ -/** - * ServiceHandle.java - * - * This file was auto-generated from WSDL - * by the Apache Axis 1.2RC2 Nov 16, 2004 (12:19:44 EST) WSDL2Java emitter. +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ - package ext.vamsas; -public class ServiceHandle implements java.io.Serializable { - private java.lang.String abstractName; - private java.lang.String description; - private java.lang.String endpointURL; - private java.lang.String name; +public class ServiceHandle implements java.io.Serializable +{ + private java.lang.String abstractName; - public ServiceHandle() { - } + private java.lang.String description; - public ServiceHandle( - java.lang.String abstractName, - java.lang.String description, - java.lang.String endpointURL, - java.lang.String name) { - this.abstractName = abstractName; - this.description = description; - this.endpointURL = endpointURL; - this.name = name; - } + private java.lang.String endpointURL; + private java.lang.String name; - /** - * Gets the abstractName value for this ServiceHandle. - * - * @return abstractName - */ - public java.lang.String getAbstractName() { - return abstractName; - } + public ServiceHandle() + { + } + public ServiceHandle(java.lang.String abstractName, + java.lang.String description, java.lang.String endpointURL, + java.lang.String name) + { + this.abstractName = abstractName; + this.description = description; + this.endpointURL = endpointURL; + this.name = name; + } - /** - * Sets the abstractName value for this ServiceHandle. - * - * @param abstractName - */ - public void setAbstractName(java.lang.String abstractName) { - this.abstractName = abstractName; - } + /** + * Gets the abstractName value for this ServiceHandle. + * + * @return abstractName + */ + public java.lang.String getAbstractName() + { + return abstractName; + } + /** + * Sets the abstractName value for this ServiceHandle. + * + * @param abstractName + */ + public void setAbstractName(java.lang.String abstractName) + { + this.abstractName = abstractName; + } - /** - * Gets the description value for this ServiceHandle. - * - * @return description - */ - public java.lang.String getDescription() { - return description; - } + /** + * Gets the description value for this ServiceHandle. + * + * @return description + */ + public java.lang.String getDescription() + { + return description; + } + /** + * Sets the description value for this ServiceHandle. + * + * @param description + */ + public void setDescription(java.lang.String description) + { + this.description = description; + } - /** - * Sets the description value for this ServiceHandle. - * - * @param description - */ - public void setDescription(java.lang.String description) { - this.description = description; - } + /** + * Gets the endpointURL value for this ServiceHandle. + * + * @return endpointURL + */ + public java.lang.String getEndpointURL() + { + return endpointURL; + } + /** + * Sets the endpointURL value for this ServiceHandle. + * + * @param endpointURL + */ + public void setEndpointURL(java.lang.String endpointURL) + { + this.endpointURL = endpointURL; + } - /** - * Gets the endpointURL value for this ServiceHandle. - * - * @return endpointURL - */ - public java.lang.String getEndpointURL() { - return endpointURL; - } + /** + * Gets the name value for this ServiceHandle. + * + * @return name + */ + public java.lang.String getName() + { + return name; + } + /** + * Sets the name value for this ServiceHandle. + * + * @param name + */ + public void setName(java.lang.String name) + { + this.name = name; + } - /** - * Sets the endpointURL value for this ServiceHandle. - * - * @param endpointURL - */ - public void setEndpointURL(java.lang.String endpointURL) { - this.endpointURL = endpointURL; - } + private java.lang.Object __equalsCalc = null; - - /** - * Gets the name value for this ServiceHandle. - * - * @return name - */ - public java.lang.String getName() { - return name; + public synchronized boolean equals(java.lang.Object obj) + { + if (obj == null) + { + return false; + } + if (!(obj instanceof ServiceHandle)) + { + return false; } + ServiceHandle other = (ServiceHandle) obj; + if (this == obj) + { + return true; + } + if (__equalsCalc != null) + { + return (__equalsCalc == obj); + } + __equalsCalc = obj; + boolean _equals; + _equals = true + && ((this.abstractName == null && other.getAbstractName() == null) || (this.abstractName != null && this.abstractName + .equals(other.getAbstractName()))) + && ((this.description == null && other.getDescription() == null) || (this.description != null && this.description + .equals(other.getDescription()))) + && ((this.endpointURL == null && other.getEndpointURL() == null) || (this.endpointURL != null && this.endpointURL + .equals(other.getEndpointURL()))) + && ((this.name == null && other.getName() == null) || (this.name != null && this.name + .equals(other.getName()))); + __equalsCalc = null; + return _equals; + } + private boolean __hashCodeCalc = false; - /** - * Sets the name value for this ServiceHandle. - * - * @param name - */ - public void setName(java.lang.String name) { - this.name = name; + public synchronized int hashCode() + { + if (__hashCodeCalc) + { + return 0; } - - private java.lang.Object __equalsCalc = null; - public synchronized boolean equals(java.lang.Object obj) { - if (!(obj instanceof ServiceHandle)) return false; - ServiceHandle other = (ServiceHandle) obj; - if (obj == null) return false; - if (this == obj) return true; - if (__equalsCalc != null) { - return (__equalsCalc == obj); - } - __equalsCalc = obj; - boolean _equals; - _equals = true && - ((this.abstractName==null && other.getAbstractName()==null) || - (this.abstractName!=null && - this.abstractName.equals(other.getAbstractName()))) && - ((this.description==null && other.getDescription()==null) || - (this.description!=null && - this.description.equals(other.getDescription()))) && - ((this.endpointURL==null && other.getEndpointURL()==null) || - (this.endpointURL!=null && - this.endpointURL.equals(other.getEndpointURL()))) && - ((this.name==null && other.getName()==null) || - (this.name!=null && - this.name.equals(other.getName()))); - __equalsCalc = null; - return _equals; + __hashCodeCalc = true; + int _hashCode = 1; + if (getAbstractName() != null) + { + _hashCode += getAbstractName().hashCode(); } - - private boolean __hashCodeCalc = false; - public synchronized int hashCode() { - if (__hashCodeCalc) { - return 0; - } - __hashCodeCalc = true; - int _hashCode = 1; - if (getAbstractName() != null) { - _hashCode += getAbstractName().hashCode(); - } - if (getDescription() != null) { - _hashCode += getDescription().hashCode(); - } - if (getEndpointURL() != null) { - _hashCode += getEndpointURL().hashCode(); - } - if (getName() != null) { - _hashCode += getName().hashCode(); - } - __hashCodeCalc = false; - return _hashCode; + if (getDescription() != null) + { + _hashCode += getDescription().hashCode(); } - - // Type metadata - private static org.apache.axis.description.TypeDesc typeDesc = - new org.apache.axis.description.TypeDesc(ServiceHandle.class, true); - - static { - typeDesc.setXmlType(new javax.xml.namespace.QName("registry.objects.vamsas", "ServiceHandle")); - org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); - elemField.setFieldName("abstractName"); - elemField.setXmlName(new javax.xml.namespace.QName("", "abstractName")); - elemField.setXmlType(new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/encoding/", "string")); - 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://schemas.xmlsoap.org/soap/encoding/", "string")); - typeDesc.addFieldDesc(elemField); - elemField = new org.apache.axis.description.ElementDesc(); - elemField.setFieldName("endpointURL"); - elemField.setXmlName(new javax.xml.namespace.QName("", "endpointURL")); - elemField.setXmlType(new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/encoding/", "string")); - 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://schemas.xmlsoap.org/soap/encoding/", "string")); - typeDesc.addFieldDesc(elemField); + if (getEndpointURL() != null) + { + _hashCode += getEndpointURL().hashCode(); } - - /** - * Return type metadata object - */ - public static org.apache.axis.description.TypeDesc getTypeDesc() { - return typeDesc; + if (getName() != null) + { + _hashCode += getName().hashCode(); } + __hashCodeCalc = false; + return _hashCode; + } - /** - * 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); - } + // Type metadata + private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc( + ServiceHandle.class, true); - /** - * 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); - } + static + { + typeDesc.setXmlType(new javax.xml.namespace.QName( + "registry.objects.vamsas", "ServiceHandle")); + org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); + elemField.setFieldName("abstractName"); + elemField.setXmlName(new javax.xml.namespace.QName("", "abstractName")); + elemField.setXmlType(new javax.xml.namespace.QName( + "http://schemas.xmlsoap.org/soap/encoding/", "string")); + 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://schemas.xmlsoap.org/soap/encoding/", "string")); + typeDesc.addFieldDesc(elemField); + elemField = new org.apache.axis.description.ElementDesc(); + elemField.setFieldName("endpointURL"); + elemField.setXmlName(new javax.xml.namespace.QName("", "endpointURL")); + elemField.setXmlType(new javax.xml.namespace.QName( + "http://schemas.xmlsoap.org/soap/encoding/", "string")); + 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://schemas.xmlsoap.org/soap/encoding/", "string")); + 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); + } }