JAL-1432 updated copyright notices
[jalview.git] / src / ext / vamsas / ServiceHandles.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1)
3  * Copyright (C) 2014 The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  * The Jalview Authors are detailed in the 'AUTHORS' file.
18  */
19 package ext.vamsas;
20
21 public class ServiceHandles implements java.io.Serializable
22 {
23   private ext.vamsas.ServiceHandle[] services;
24
25   public ServiceHandles()
26   {
27   }
28
29   public ServiceHandles(ext.vamsas.ServiceHandle[] services)
30   {
31     this.services = services;
32   }
33
34   /**
35    * Gets the services value for this ServiceHandles.
36    * 
37    * @return services
38    */
39   public ext.vamsas.ServiceHandle[] getServices()
40   {
41     return services;
42   }
43
44   /**
45    * Sets the services value for this ServiceHandles.
46    * 
47    * @param services
48    */
49   public void setServices(ext.vamsas.ServiceHandle[] services)
50   {
51     this.services = services;
52   }
53
54   private java.lang.Object __equalsCalc = null;
55
56   public synchronized boolean equals(java.lang.Object obj)
57   {
58     if (!(obj instanceof ServiceHandles))
59     {
60       return false;
61     }
62     ServiceHandles other = (ServiceHandles) obj;
63     if (obj == null)
64     {
65       return false;
66     }
67     if (this == obj)
68     {
69       return true;
70     }
71     if (__equalsCalc != null)
72     {
73       return (__equalsCalc == obj);
74     }
75     __equalsCalc = obj;
76     boolean _equals;
77     _equals = true && ((this.services == null && other.getServices() == null) || (this.services != null && java.util.Arrays
78             .equals(this.services, other.getServices())));
79     __equalsCalc = null;
80     return _equals;
81   }
82
83   private boolean __hashCodeCalc = false;
84
85   public synchronized int hashCode()
86   {
87     if (__hashCodeCalc)
88     {
89       return 0;
90     }
91     __hashCodeCalc = true;
92     int _hashCode = 1;
93     if (getServices() != null)
94     {
95       for (int i = 0; i < java.lang.reflect.Array.getLength(getServices()); i++)
96       {
97         java.lang.Object obj = java.lang.reflect.Array
98                 .get(getServices(), i);
99         if (obj != null && !obj.getClass().isArray())
100         {
101           _hashCode += obj.hashCode();
102         }
103       }
104     }
105     __hashCodeCalc = false;
106     return _hashCode;
107   }
108
109   // Type metadata
110   private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(
111           ServiceHandles.class, true);
112
113   static
114   {
115     typeDesc.setXmlType(new javax.xml.namespace.QName(
116             "registry.objects.vamsas", "ServiceHandles"));
117     org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
118     elemField.setFieldName("services");
119     elemField.setXmlName(new javax.xml.namespace.QName("", "services"));
120     elemField.setXmlType(new javax.xml.namespace.QName(
121             "registry.objects.vamsas", "ServiceHandle"));
122     typeDesc.addFieldDesc(elemField);
123   }
124
125   /**
126    * Return type metadata object
127    */
128   public static org.apache.axis.description.TypeDesc getTypeDesc()
129   {
130     return typeDesc;
131   }
132
133   /**
134    * Get Custom Serializer
135    */
136   public static org.apache.axis.encoding.Serializer getSerializer(
137           java.lang.String mechType, java.lang.Class _javaType,
138           javax.xml.namespace.QName _xmlType)
139   {
140     return new org.apache.axis.encoding.ser.BeanSerializer(_javaType,
141             _xmlType, typeDesc);
142   }
143
144   /**
145    * Get Custom Deserializer
146    */
147   public static org.apache.axis.encoding.Deserializer getDeserializer(
148           java.lang.String mechType, java.lang.Class _javaType,
149           javax.xml.namespace.QName _xmlType)
150   {
151     return new org.apache.axis.encoding.ser.BeanDeserializer(_javaType,
152             _xmlType, typeDesc);
153   }
154
155 }