1
2
3
4
5
6
7
8 package org.ogf.srm22;
9
10 public class SrmGetTransferProtocolsResponse implements java.io.Serializable {
11 private org.ogf.srm22.TReturnStatus returnStatus;
12
13 private org.ogf.srm22.ArrayOfTSupportedTransferProtocol protocolInfo;
14
15 public SrmGetTransferProtocolsResponse() {
16 }
17
18 public SrmGetTransferProtocolsResponse(
19 org.ogf.srm22.TReturnStatus returnStatus,
20 org.ogf.srm22.ArrayOfTSupportedTransferProtocol protocolInfo) {
21 this.returnStatus = returnStatus;
22 this.protocolInfo = protocolInfo;
23 }
24
25
26
27
28
29
30
31 public org.ogf.srm22.TReturnStatus getReturnStatus() {
32 return returnStatus;
33 }
34
35
36
37
38
39
40
41 public void setReturnStatus(org.ogf.srm22.TReturnStatus returnStatus) {
42 this.returnStatus = returnStatus;
43 }
44
45
46
47
48
49
50
51 public org.ogf.srm22.ArrayOfTSupportedTransferProtocol getProtocolInfo() {
52 return protocolInfo;
53 }
54
55
56
57
58
59
60
61 public void setProtocolInfo(org.ogf.srm22.ArrayOfTSupportedTransferProtocol protocolInfo) {
62 this.protocolInfo = protocolInfo;
63 }
64
65 private java.lang.Object __equalsCalc = null;
66 public synchronized boolean equals(java.lang.Object obj) {
67 if (!(obj instanceof SrmGetTransferProtocolsResponse)) return false;
68 SrmGetTransferProtocolsResponse other = (SrmGetTransferProtocolsResponse) obj;
69 if (obj == null) return false;
70 if (this == obj) return true;
71 if (__equalsCalc != null) {
72 return (__equalsCalc == obj);
73 }
74 __equalsCalc = obj;
75 boolean _equals;
76 _equals = true &&
77 ((this.returnStatus==null && other.getReturnStatus()==null) ||
78 (this.returnStatus!=null &&
79 this.returnStatus.equals(other.getReturnStatus()))) &&
80 ((this.protocolInfo==null && other.getProtocolInfo()==null) ||
81 (this.protocolInfo!=null &&
82 this.protocolInfo.equals(other.getProtocolInfo())));
83 __equalsCalc = null;
84 return _equals;
85 }
86
87 private boolean __hashCodeCalc = false;
88 public synchronized int hashCode() {
89 if (__hashCodeCalc) {
90 return 0;
91 }
92 __hashCodeCalc = true;
93 int _hashCode = 1;
94 if (getReturnStatus() != null) {
95 _hashCode += getReturnStatus().hashCode();
96 }
97 if (getProtocolInfo() != null) {
98 _hashCode += getProtocolInfo().hashCode();
99 }
100 __hashCodeCalc = false;
101 return _hashCode;
102 }
103
104
105 private static org.apache.axis.description.TypeDesc typeDesc =
106 new org.apache.axis.description.TypeDesc(SrmGetTransferProtocolsResponse.class, true);
107
108 static {
109 typeDesc.setXmlType(new javax.xml.namespace.QName("http://srm.lbl.gov/StorageResourceManager", "srmGetTransferProtocolsResponse"));
110 org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
111 elemField.setFieldName("returnStatus");
112 elemField.setXmlName(new javax.xml.namespace.QName("", "returnStatus"));
113 elemField.setXmlType(new javax.xml.namespace.QName("http://srm.lbl.gov/StorageResourceManager", "TReturnStatus"));
114 elemField.setNillable(false);
115 typeDesc.addFieldDesc(elemField);
116 elemField = new org.apache.axis.description.ElementDesc();
117 elemField.setFieldName("protocolInfo");
118 elemField.setXmlName(new javax.xml.namespace.QName("", "protocolInfo"));
119 elemField.setXmlType(new javax.xml.namespace.QName("http://srm.lbl.gov/StorageResourceManager", "ArrayOfTSupportedTransferProtocol"));
120 elemField.setMinOccurs(0);
121 elemField.setNillable(true);
122 typeDesc.addFieldDesc(elemField);
123 }
124
125
126
127
128 public static org.apache.axis.description.TypeDesc getTypeDesc() {
129 return typeDesc;
130 }
131
132
133
134
135 public static org.apache.axis.encoding.Serializer getSerializer(
136 java.lang.String mechType,
137 java.lang.Class _javaType,
138 javax.xml.namespace.QName _xmlType) {
139 return
140 new org.apache.axis.encoding.ser.BeanSerializer(
141 _javaType, _xmlType, typeDesc);
142 }
143
144
145
146
147 public static org.apache.axis.encoding.Deserializer getDeserializer(
148 java.lang.String mechType,
149 java.lang.Class _javaType,
150 javax.xml.namespace.QName _xmlType) {
151 return
152 new org.apache.axis.encoding.ser.BeanDeserializer(
153 _javaType, _xmlType, typeDesc);
154 }
155
156 }