View Javadoc

1   /**
2    * SrmReleaseSpaceRequest.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 SrmReleaseSpaceRequest  implements java.io.Serializable {
11      private java.lang.String authorizationID;
12  
13      private java.lang.String spaceToken;
14  
15      private org.ogf.srm22.ArrayOfTExtraInfo storageSystemInfo;
16  
17      private java.lang.Boolean forceFileRelease;
18  
19      public SrmReleaseSpaceRequest() {
20      }
21  
22      public SrmReleaseSpaceRequest(
23             java.lang.String authorizationID,
24             java.lang.String spaceToken,
25             org.ogf.srm22.ArrayOfTExtraInfo storageSystemInfo,
26             java.lang.Boolean forceFileRelease) {
27             this.authorizationID = authorizationID;
28             this.spaceToken = spaceToken;
29             this.storageSystemInfo = storageSystemInfo;
30             this.forceFileRelease = forceFileRelease;
31      }
32  
33  
34      /**
35       * Gets the authorizationID value for this SrmReleaseSpaceRequest.
36       * 
37       * @return authorizationID
38       */
39      public java.lang.String getAuthorizationID() {
40          return authorizationID;
41      }
42  
43  
44      /**
45       * Sets the authorizationID value for this SrmReleaseSpaceRequest.
46       * 
47       * @param authorizationID
48       */
49      public void setAuthorizationID(java.lang.String authorizationID) {
50          this.authorizationID = authorizationID;
51      }
52  
53  
54      /**
55       * Gets the spaceToken value for this SrmReleaseSpaceRequest.
56       * 
57       * @return spaceToken
58       */
59      public java.lang.String getSpaceToken() {
60          return spaceToken;
61      }
62  
63  
64      /**
65       * Sets the spaceToken value for this SrmReleaseSpaceRequest.
66       * 
67       * @param spaceToken
68       */
69      public void setSpaceToken(java.lang.String spaceToken) {
70          this.spaceToken = spaceToken;
71      }
72  
73  
74      /**
75       * Gets the storageSystemInfo value for this SrmReleaseSpaceRequest.
76       * 
77       * @return storageSystemInfo
78       */
79      public org.ogf.srm22.ArrayOfTExtraInfo getStorageSystemInfo() {
80          return storageSystemInfo;
81      }
82  
83  
84      /**
85       * Sets the storageSystemInfo value for this SrmReleaseSpaceRequest.
86       * 
87       * @param storageSystemInfo
88       */
89      public void setStorageSystemInfo(org.ogf.srm22.ArrayOfTExtraInfo storageSystemInfo) {
90          this.storageSystemInfo = storageSystemInfo;
91      }
92  
93  
94      /**
95       * Gets the forceFileRelease value for this SrmReleaseSpaceRequest.
96       * 
97       * @return forceFileRelease
98       */
99      public java.lang.Boolean getForceFileRelease() {
100         return forceFileRelease;
101     }
102 
103 
104     /**
105      * Sets the forceFileRelease value for this SrmReleaseSpaceRequest.
106      * 
107      * @param forceFileRelease
108      */
109     public void setForceFileRelease(java.lang.Boolean forceFileRelease) {
110         this.forceFileRelease = forceFileRelease;
111     }
112 
113     private java.lang.Object __equalsCalc = null;
114     public synchronized boolean equals(java.lang.Object obj) {
115         if (!(obj instanceof SrmReleaseSpaceRequest)) return false;
116         SrmReleaseSpaceRequest other = (SrmReleaseSpaceRequest) 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.authorizationID==null && other.getAuthorizationID()==null) || 
126              (this.authorizationID!=null &&
127               this.authorizationID.equals(other.getAuthorizationID()))) &&
128             ((this.spaceToken==null && other.getSpaceToken()==null) || 
129              (this.spaceToken!=null &&
130               this.spaceToken.equals(other.getSpaceToken()))) &&
131             ((this.storageSystemInfo==null && other.getStorageSystemInfo()==null) || 
132              (this.storageSystemInfo!=null &&
133               this.storageSystemInfo.equals(other.getStorageSystemInfo()))) &&
134             ((this.forceFileRelease==null && other.getForceFileRelease()==null) || 
135              (this.forceFileRelease!=null &&
136               this.forceFileRelease.equals(other.getForceFileRelease())));
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 (getAuthorizationID() != null) {
149             _hashCode += getAuthorizationID().hashCode();
150         }
151         if (getSpaceToken() != null) {
152             _hashCode += getSpaceToken().hashCode();
153         }
154         if (getStorageSystemInfo() != null) {
155             _hashCode += getStorageSystemInfo().hashCode();
156         }
157         if (getForceFileRelease() != null) {
158             _hashCode += getForceFileRelease().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(SrmReleaseSpaceRequest.class, true);
167 
168     static {
169         typeDesc.setXmlType(new javax.xml.namespace.QName("http://srm.lbl.gov/StorageResourceManager", "srmReleaseSpaceRequest"));
170         org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
171         elemField.setFieldName("authorizationID");
172         elemField.setXmlName(new javax.xml.namespace.QName("", "authorizationID"));
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("spaceToken");
179         elemField.setXmlName(new javax.xml.namespace.QName("", "spaceToken"));
180         elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
181         elemField.setNillable(false);
182         typeDesc.addFieldDesc(elemField);
183         elemField = new org.apache.axis.description.ElementDesc();
184         elemField.setFieldName("storageSystemInfo");
185         elemField.setXmlName(new javax.xml.namespace.QName("", "storageSystemInfo"));
186         elemField.setXmlType(new javax.xml.namespace.QName("http://srm.lbl.gov/StorageResourceManager", "ArrayOfTExtraInfo"));
187         elemField.setMinOccurs(0);
188         elemField.setNillable(true);
189         typeDesc.addFieldDesc(elemField);
190         elemField = new org.apache.axis.description.ElementDesc();
191         elemField.setFieldName("forceFileRelease");
192         elemField.setXmlName(new javax.xml.namespace.QName("", "forceFileRelease"));
193         elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
194         elemField.setMinOccurs(0);
195         elemField.setNillable(true);
196         typeDesc.addFieldDesc(elemField);
197     }
198 
199     /**
200      * Return type metadata object
201      */
202     public static org.apache.axis.description.TypeDesc getTypeDesc() {
203         return typeDesc;
204     }
205 
206     /**
207      * Get Custom Serializer
208      */
209     public static org.apache.axis.encoding.Serializer getSerializer(
210            java.lang.String mechType, 
211            java.lang.Class _javaType,  
212            javax.xml.namespace.QName _xmlType) {
213         return 
214           new  org.apache.axis.encoding.ser.BeanSerializer(
215             _javaType, _xmlType, typeDesc);
216     }
217 
218     /**
219      * Get Custom Deserializer
220      */
221     public static org.apache.axis.encoding.Deserializer getDeserializer(
222            java.lang.String mechType, 
223            java.lang.Class _javaType,  
224            javax.xml.namespace.QName _xmlType) {
225         return 
226           new  org.apache.axis.encoding.ser.BeanDeserializer(
227             _javaType, _xmlType, typeDesc);
228     }
229 
230 }