1
2
3
4
5
6
7
8 package org.ogf.srm22;
9
10 public class TCopyFileRequest implements java.io.Serializable {
11 private org.apache.axis.types.URI sourceSURL;
12
13 private org.apache.axis.types.URI targetSURL;
14
15 private org.ogf.srm22.TDirOption dirOption;
16
17 public TCopyFileRequest() {
18 }
19
20 public TCopyFileRequest(
21 org.apache.axis.types.URI sourceSURL,
22 org.apache.axis.types.URI targetSURL,
23 org.ogf.srm22.TDirOption dirOption) {
24 this.sourceSURL = sourceSURL;
25 this.targetSURL = targetSURL;
26 this.dirOption = dirOption;
27 }
28
29
30
31
32
33
34
35 public org.apache.axis.types.URI getSourceSURL() {
36 return sourceSURL;
37 }
38
39
40
41
42
43
44
45 public void setSourceSURL(org.apache.axis.types.URI sourceSURL) {
46 this.sourceSURL = sourceSURL;
47 }
48
49
50
51
52
53
54
55 public org.apache.axis.types.URI getTargetSURL() {
56 return targetSURL;
57 }
58
59
60
61
62
63
64
65 public void setTargetSURL(org.apache.axis.types.URI targetSURL) {
66 this.targetSURL = targetSURL;
67 }
68
69
70
71
72
73
74
75 public org.ogf.srm22.TDirOption getDirOption() {
76 return dirOption;
77 }
78
79
80
81
82
83
84
85 public void setDirOption(org.ogf.srm22.TDirOption dirOption) {
86 this.dirOption = dirOption;
87 }
88
89 private java.lang.Object __equalsCalc = null;
90 public synchronized boolean equals(java.lang.Object obj) {
91 if (!(obj instanceof TCopyFileRequest)) return false;
92 TCopyFileRequest other = (TCopyFileRequest) obj;
93 if (obj == null) return false;
94 if (this == obj) return true;
95 if (__equalsCalc != null) {
96 return (__equalsCalc == obj);
97 }
98 __equalsCalc = obj;
99 boolean _equals;
100 _equals = true &&
101 ((this.sourceSURL==null && other.getSourceSURL()==null) ||
102 (this.sourceSURL!=null &&
103 this.sourceSURL.equals(other.getSourceSURL()))) &&
104 ((this.targetSURL==null && other.getTargetSURL()==null) ||
105 (this.targetSURL!=null &&
106 this.targetSURL.equals(other.getTargetSURL()))) &&
107 ((this.dirOption==null && other.getDirOption()==null) ||
108 (this.dirOption!=null &&
109 this.dirOption.equals(other.getDirOption())));
110 __equalsCalc = null;
111 return _equals;
112 }
113
114 private boolean __hashCodeCalc = false;
115 public synchronized int hashCode() {
116 if (__hashCodeCalc) {
117 return 0;
118 }
119 __hashCodeCalc = true;
120 int _hashCode = 1;
121 if (getSourceSURL() != null) {
122 _hashCode += getSourceSURL().hashCode();
123 }
124 if (getTargetSURL() != null) {
125 _hashCode += getTargetSURL().hashCode();
126 }
127 if (getDirOption() != null) {
128 _hashCode += getDirOption().hashCode();
129 }
130 __hashCodeCalc = false;
131 return _hashCode;
132 }
133
134
135 private static org.apache.axis.description.TypeDesc typeDesc =
136 new org.apache.axis.description.TypeDesc(TCopyFileRequest.class, true);
137
138 static {
139 typeDesc.setXmlType(new javax.xml.namespace.QName("http://srm.lbl.gov/StorageResourceManager", "TCopyFileRequest"));
140 org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
141 elemField.setFieldName("sourceSURL");
142 elemField.setXmlName(new javax.xml.namespace.QName("", "sourceSURL"));
143 elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "anyURI"));
144 elemField.setNillable(false);
145 typeDesc.addFieldDesc(elemField);
146 elemField = new org.apache.axis.description.ElementDesc();
147 elemField.setFieldName("targetSURL");
148 elemField.setXmlName(new javax.xml.namespace.QName("", "targetSURL"));
149 elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "anyURI"));
150 elemField.setNillable(false);
151 typeDesc.addFieldDesc(elemField);
152 elemField = new org.apache.axis.description.ElementDesc();
153 elemField.setFieldName("dirOption");
154 elemField.setXmlName(new javax.xml.namespace.QName("", "dirOption"));
155 elemField.setXmlType(new javax.xml.namespace.QName("http://srm.lbl.gov/StorageResourceManager", "TDirOption"));
156 elemField.setMinOccurs(0);
157 elemField.setNillable(true);
158 typeDesc.addFieldDesc(elemField);
159 }
160
161
162
163
164 public static org.apache.axis.description.TypeDesc getTypeDesc() {
165 return typeDesc;
166 }
167
168
169
170
171 public static org.apache.axis.encoding.Serializer getSerializer(
172 java.lang.String mechType,
173 java.lang.Class _javaType,
174 javax.xml.namespace.QName _xmlType) {
175 return
176 new org.apache.axis.encoding.ser.BeanSerializer(
177 _javaType, _xmlType, typeDesc);
178 }
179
180
181
182
183 public static org.apache.axis.encoding.Deserializer getDeserializer(
184 java.lang.String mechType,
185 java.lang.Class _javaType,
186 javax.xml.namespace.QName _xmlType) {
187 return
188 new org.apache.axis.encoding.ser.BeanDeserializer(
189 _javaType, _xmlType, typeDesc);
190 }
191
192 }