View Javadoc

1   /**
2    * SrmReleaseFilesRequest.java
3    *
4    * This file was auto-generated from WSDL
5    * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
6    */
7   
8   package org.ogf.srm22;
9   
10  public class SrmReleaseFilesRequest  implements java.io.Serializable {
11      private java.lang.String requestToken;
12  
13      private java.lang.String authorizationID;
14  
15      private org.ogf.srm22.ArrayOfAnyURI arrayOfSURLs;
16  
17      private java.lang.Boolean doRemove;
18  
19      public SrmReleaseFilesRequest() {
20      }
21  
22      public SrmReleaseFilesRequest(
23             java.lang.String requestToken,
24             java.lang.String authorizationID,
25             org.ogf.srm22.ArrayOfAnyURI arrayOfSURLs,
26             java.lang.Boolean doRemove) {
27             this.requestToken = requestToken;
28             this.authorizationID = authorizationID;
29             this.arrayOfSURLs = arrayOfSURLs;
30             this.doRemove = doRemove;
31      }
32  
33  
34      /**
35       * Gets the requestToken value for this SrmReleaseFilesRequest.
36       * 
37       * @return requestToken
38       */
39      public java.lang.String getRequestToken() {
40          return requestToken;
41      }
42  
43  
44      /**
45       * Sets the requestToken value for this SrmReleaseFilesRequest.
46       * 
47       * @param requestToken
48       */
49      public void setRequestToken(java.lang.String requestToken) {
50          this.requestToken = requestToken;
51      }
52  
53  
54      /**
55       * Gets the authorizationID value for this SrmReleaseFilesRequest.
56       * 
57       * @return authorizationID
58       */
59      public java.lang.String getAuthorizationID() {
60          return authorizationID;
61      }
62  
63  
64      /**
65       * Sets the authorizationID value for this SrmReleaseFilesRequest.
66       * 
67       * @param authorizationID
68       */
69      public void setAuthorizationID(java.lang.String authorizationID) {
70          this.authorizationID = authorizationID;
71      }
72  
73  
74      /**
75       * Gets the arrayOfSURLs value for this SrmReleaseFilesRequest.
76       * 
77       * @return arrayOfSURLs
78       */
79      public org.ogf.srm22.ArrayOfAnyURI getArrayOfSURLs() {
80          return arrayOfSURLs;
81      }
82  
83  
84      /**
85       * Sets the arrayOfSURLs value for this SrmReleaseFilesRequest.
86       * 
87       * @param arrayOfSURLs
88       */
89      public void setArrayOfSURLs(org.ogf.srm22.ArrayOfAnyURI arrayOfSURLs) {
90          this.arrayOfSURLs = arrayOfSURLs;
91      }
92  
93  
94      /**
95       * Gets the doRemove value for this SrmReleaseFilesRequest.
96       * 
97       * @return doRemove
98       */
99      public java.lang.Boolean getDoRemove() {
100         return doRemove;
101     }
102 
103 
104     /**
105      * Sets the doRemove value for this SrmReleaseFilesRequest.
106      * 
107      * @param doRemove
108      */
109     public void setDoRemove(java.lang.Boolean doRemove) {
110         this.doRemove = doRemove;
111     }
112 
113     private java.lang.Object __equalsCalc = null;
114     public synchronized boolean equals(java.lang.Object obj) {
115         if (!(obj instanceof SrmReleaseFilesRequest)) return false;
116         SrmReleaseFilesRequest other = (SrmReleaseFilesRequest) obj;
117         if (obj == null) return false;
118         if (this == obj) return true;
119         if (__equalsCalc != null) {
120             return (__equalsCalc == obj);
121         }
122         __equalsCalc = obj;
123         boolean _equals;
124         _equals = true && 
125             ((this.requestToken==null && other.getRequestToken()==null) || 
126              (this.requestToken!=null &&
127               this.requestToken.equals(other.getRequestToken()))) &&
128             ((this.authorizationID==null && other.getAuthorizationID()==null) || 
129              (this.authorizationID!=null &&
130               this.authorizationID.equals(other.getAuthorizationID()))) &&
131             ((this.arrayOfSURLs==null && other.getArrayOfSURLs()==null) || 
132              (this.arrayOfSURLs!=null &&
133               this.arrayOfSURLs.equals(other.getArrayOfSURLs()))) &&
134             ((this.doRemove==null && other.getDoRemove()==null) || 
135              (this.doRemove!=null &&
136               this.doRemove.equals(other.getDoRemove())));
137         __equalsCalc = null;
138         return _equals;
139     }
140 
141     private boolean __hashCodeCalc = false;
142     public synchronized int hashCode() {
143         if (__hashCodeCalc) {
144             return 0;
145         }
146         __hashCodeCalc = true;
147         int _hashCode = 1;
148         if (getRequestToken() != null) {
149             _hashCode += getRequestToken().hashCode();
150         }
151         if (getAuthorizationID() != null) {
152             _hashCode += getAuthorizationID().hashCode();
153         }
154         if (getArrayOfSURLs() != null) {
155             _hashCode += getArrayOfSURLs().hashCode();
156         }
157         if (getDoRemove() != null) {
158             _hashCode += getDoRemove().hashCode();
159         }
160         __hashCodeCalc = false;
161         return _hashCode;
162     }
163 
164     // Type metadata
165     private static org.apache.axis.description.TypeDesc typeDesc =
166         new org.apache.axis.description.TypeDesc(SrmReleaseFilesRequest.class, true);
167 
168     static {
169         typeDesc.setXmlType(new javax.xml.namespace.QName("http://srm.lbl.gov/StorageResourceManager", "srmReleaseFilesRequest"));
170         org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
171         elemField.setFieldName("requestToken");
172         elemField.setXmlName(new javax.xml.namespace.QName("", "requestToken"));
173         elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
174         elemField.setMinOccurs(0);
175         elemField.setNillable(true);
176         typeDesc.addFieldDesc(elemField);
177         elemField = new org.apache.axis.description.ElementDesc();
178         elemField.setFieldName("authorizationID");
179         elemField.setXmlName(new javax.xml.namespace.QName("", "authorizationID"));
180         elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
181         elemField.setMinOccurs(0);
182         elemField.setNillable(true);
183         typeDesc.addFieldDesc(elemField);
184         elemField = new org.apache.axis.description.ElementDesc();
185         elemField.setFieldName("arrayOfSURLs");
186         elemField.setXmlName(new javax.xml.namespace.QName("", "arrayOfSURLs"));
187         elemField.setXmlType(new javax.xml.namespace.QName("http://srm.lbl.gov/StorageResourceManager", "ArrayOfAnyURI"));
188         elemField.setMinOccurs(0);
189         elemField.setNillable(true);
190         typeDesc.addFieldDesc(elemField);
191         elemField = new org.apache.axis.description.ElementDesc();
192         elemField.setFieldName("doRemove");
193         elemField.setXmlName(new javax.xml.namespace.QName("", "doRemove"));
194         elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
195         elemField.setMinOccurs(0);
196         elemField.setNillable(true);
197         typeDesc.addFieldDesc(elemField);
198     }
199 
200     /**
201      * Return type metadata object
202      */
203     public static org.apache.axis.description.TypeDesc getTypeDesc() {
204         return typeDesc;
205     }
206 
207     /**
208      * Get Custom Serializer
209      */
210     public static org.apache.axis.encoding.Serializer getSerializer(
211            java.lang.String mechType, 
212            java.lang.Class _javaType,  
213            javax.xml.namespace.QName _xmlType) {
214         return 
215           new  org.apache.axis.encoding.ser.BeanSerializer(
216             _javaType, _xmlType, typeDesc);
217     }
218 
219     /**
220      * Get Custom Deserializer
221      */
222     public static org.apache.axis.encoding.Deserializer getDeserializer(
223            java.lang.String mechType, 
224            java.lang.Class _javaType,  
225            javax.xml.namespace.QName _xmlType) {
226         return 
227           new  org.apache.axis.encoding.ser.BeanDeserializer(
228             _javaType, _xmlType, typeDesc);
229     }
230 
231 }