2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 public class ServiceHandle implements java.io.Serializable
25 private java.lang.String abstractName;
27 private java.lang.String description;
29 private java.lang.String endpointURL;
31 private java.lang.String name;
33 public ServiceHandle()
37 public ServiceHandle(java.lang.String abstractName,
38 java.lang.String description, java.lang.String endpointURL,
39 java.lang.String name)
41 this.abstractName = abstractName;
42 this.description = description;
43 this.endpointURL = endpointURL;
48 * Gets the abstractName value for this ServiceHandle.
50 * @return abstractName
52 public java.lang.String getAbstractName()
58 * Sets the abstractName value for this ServiceHandle.
62 public void setAbstractName(java.lang.String abstractName)
64 this.abstractName = abstractName;
68 * Gets the description value for this ServiceHandle.
72 public java.lang.String getDescription()
78 * Sets the description value for this ServiceHandle.
82 public void setDescription(java.lang.String description)
84 this.description = description;
88 * Gets the endpointURL value for this ServiceHandle.
92 public java.lang.String getEndpointURL()
98 * Sets the endpointURL value for this ServiceHandle.
102 public void setEndpointURL(java.lang.String endpointURL)
104 this.endpointURL = endpointURL;
108 * Gets the name value for this ServiceHandle.
112 public java.lang.String getName()
118 * Sets the name value for this ServiceHandle.
122 public void setName(java.lang.String name)
127 private java.lang.Object __equalsCalc = null;
129 public synchronized boolean equals(java.lang.Object obj)
135 if (!(obj instanceof ServiceHandle))
139 ServiceHandle other = (ServiceHandle) obj;
144 if (__equalsCalc != null)
146 return (__equalsCalc == obj);
151 && ((this.abstractName == null && other.getAbstractName() == null) || (this.abstractName != null && this.abstractName
152 .equals(other.getAbstractName())))
153 && ((this.description == null && other.getDescription() == null) || (this.description != null && this.description
154 .equals(other.getDescription())))
155 && ((this.endpointURL == null && other.getEndpointURL() == null) || (this.endpointURL != null && this.endpointURL
156 .equals(other.getEndpointURL())))
157 && ((this.name == null && other.getName() == null) || (this.name != null && this.name
158 .equals(other.getName())));
163 private boolean __hashCodeCalc = false;
165 public synchronized int hashCode()
171 __hashCodeCalc = true;
173 if (getAbstractName() != null)
175 _hashCode += getAbstractName().hashCode();
177 if (getDescription() != null)
179 _hashCode += getDescription().hashCode();
181 if (getEndpointURL() != null)
183 _hashCode += getEndpointURL().hashCode();
185 if (getName() != null)
187 _hashCode += getName().hashCode();
189 __hashCodeCalc = false;
194 private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(
195 ServiceHandle.class, true);
199 typeDesc.setXmlType(new javax.xml.namespace.QName(
200 "registry.objects.vamsas", "ServiceHandle"));
201 org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
202 elemField.setFieldName("abstractName");
203 elemField.setXmlName(new javax.xml.namespace.QName("", "abstractName"));
204 elemField.setXmlType(new javax.xml.namespace.QName(
205 "http://schemas.xmlsoap.org/soap/encoding/", "string"));
206 typeDesc.addFieldDesc(elemField);
207 elemField = new org.apache.axis.description.ElementDesc();
208 elemField.setFieldName("description");
209 elemField.setXmlName(new javax.xml.namespace.QName("", "description"));
210 elemField.setXmlType(new javax.xml.namespace.QName(
211 "http://schemas.xmlsoap.org/soap/encoding/", "string"));
212 typeDesc.addFieldDesc(elemField);
213 elemField = new org.apache.axis.description.ElementDesc();
214 elemField.setFieldName("endpointURL");
215 elemField.setXmlName(new javax.xml.namespace.QName("", "endpointURL"));
216 elemField.setXmlType(new javax.xml.namespace.QName(
217 "http://schemas.xmlsoap.org/soap/encoding/", "string"));
218 typeDesc.addFieldDesc(elemField);
219 elemField = new org.apache.axis.description.ElementDesc();
220 elemField.setFieldName("name");
221 elemField.setXmlName(new javax.xml.namespace.QName("", "name"));
222 elemField.setXmlType(new javax.xml.namespace.QName(
223 "http://schemas.xmlsoap.org/soap/encoding/", "string"));
224 typeDesc.addFieldDesc(elemField);
228 * Return type metadata object
230 public static org.apache.axis.description.TypeDesc getTypeDesc()
236 * Get Custom Serializer
238 public static org.apache.axis.encoding.Serializer getSerializer(
239 java.lang.String mechType, java.lang.Class _javaType,
240 javax.xml.namespace.QName _xmlType)
242 return new org.apache.axis.encoding.ser.BeanSerializer(_javaType,
247 * Get Custom Deserializer
249 public static org.apache.axis.encoding.Deserializer getDeserializer(
250 java.lang.String mechType, java.lang.Class _javaType,
251 javax.xml.namespace.QName _xmlType)
253 return new org.apache.axis.encoding.ser.BeanDeserializer(_javaType,