| 7905 |
manish.sha |
1 |
/**
|
|
|
2 |
* Volume.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 com.fedex.ship.stub;
|
|
|
9 |
|
|
|
10 |
|
|
|
11 |
/**
|
|
|
12 |
* Three-dimensional volume/cubic measurement.
|
|
|
13 |
*/
|
|
|
14 |
public class Volume implements java.io.Serializable {
|
|
|
15 |
private com.fedex.ship.stub.VolumeUnits units;
|
|
|
16 |
|
|
|
17 |
private java.math.BigDecimal value;
|
|
|
18 |
|
|
|
19 |
public Volume() {
|
|
|
20 |
}
|
|
|
21 |
|
|
|
22 |
public Volume(
|
|
|
23 |
com.fedex.ship.stub.VolumeUnits units,
|
|
|
24 |
java.math.BigDecimal value) {
|
|
|
25 |
this.units = units;
|
|
|
26 |
this.value = value;
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
|
|
|
30 |
/**
|
|
|
31 |
* Gets the units value for this Volume.
|
|
|
32 |
*
|
|
|
33 |
* @return units
|
|
|
34 |
*/
|
|
|
35 |
public com.fedex.ship.stub.VolumeUnits getUnits() {
|
|
|
36 |
return units;
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
|
|
|
40 |
/**
|
|
|
41 |
* Sets the units value for this Volume.
|
|
|
42 |
*
|
|
|
43 |
* @param units
|
|
|
44 |
*/
|
|
|
45 |
public void setUnits(com.fedex.ship.stub.VolumeUnits units) {
|
|
|
46 |
this.units = units;
|
|
|
47 |
}
|
|
|
48 |
|
|
|
49 |
|
|
|
50 |
/**
|
|
|
51 |
* Gets the value value for this Volume.
|
|
|
52 |
*
|
|
|
53 |
* @return value
|
|
|
54 |
*/
|
|
|
55 |
public java.math.BigDecimal getValue() {
|
|
|
56 |
return value;
|
|
|
57 |
}
|
|
|
58 |
|
|
|
59 |
|
|
|
60 |
/**
|
|
|
61 |
* Sets the value value for this Volume.
|
|
|
62 |
*
|
|
|
63 |
* @param value
|
|
|
64 |
*/
|
|
|
65 |
public void setValue(java.math.BigDecimal value) {
|
|
|
66 |
this.value = value;
|
|
|
67 |
}
|
|
|
68 |
|
|
|
69 |
private java.lang.Object __equalsCalc = null;
|
|
|
70 |
public synchronized boolean equals(java.lang.Object obj) {
|
|
|
71 |
if (!(obj instanceof Volume)) return false;
|
|
|
72 |
Volume other = (Volume) obj;
|
|
|
73 |
if (obj == null) return false;
|
|
|
74 |
if (this == obj) return true;
|
|
|
75 |
if (__equalsCalc != null) {
|
|
|
76 |
return (__equalsCalc == obj);
|
|
|
77 |
}
|
|
|
78 |
__equalsCalc = obj;
|
|
|
79 |
boolean _equals;
|
|
|
80 |
_equals = true &&
|
|
|
81 |
((this.units==null && other.getUnits()==null) ||
|
|
|
82 |
(this.units!=null &&
|
|
|
83 |
this.units.equals(other.getUnits()))) &&
|
|
|
84 |
((this.value==null && other.getValue()==null) ||
|
|
|
85 |
(this.value!=null &&
|
|
|
86 |
this.value.equals(other.getValue())));
|
|
|
87 |
__equalsCalc = null;
|
|
|
88 |
return _equals;
|
|
|
89 |
}
|
|
|
90 |
|
|
|
91 |
private boolean __hashCodeCalc = false;
|
|
|
92 |
public synchronized int hashCode() {
|
|
|
93 |
if (__hashCodeCalc) {
|
|
|
94 |
return 0;
|
|
|
95 |
}
|
|
|
96 |
__hashCodeCalc = true;
|
|
|
97 |
int _hashCode = 1;
|
|
|
98 |
if (getUnits() != null) {
|
|
|
99 |
_hashCode += getUnits().hashCode();
|
|
|
100 |
}
|
|
|
101 |
if (getValue() != null) {
|
|
|
102 |
_hashCode += getValue().hashCode();
|
|
|
103 |
}
|
|
|
104 |
__hashCodeCalc = false;
|
|
|
105 |
return _hashCode;
|
|
|
106 |
}
|
|
|
107 |
|
|
|
108 |
// Type metadata
|
|
|
109 |
private static org.apache.axis.description.TypeDesc typeDesc =
|
|
|
110 |
new org.apache.axis.description.TypeDesc(Volume.class, true);
|
|
|
111 |
|
|
|
112 |
static {
|
|
|
113 |
typeDesc.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "Volume"));
|
|
|
114 |
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
|
|
|
115 |
elemField.setFieldName("units");
|
|
|
116 |
elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "Units"));
|
|
|
117 |
elemField.setXmlType(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "VolumeUnits"));
|
|
|
118 |
elemField.setMinOccurs(0);
|
|
|
119 |
elemField.setNillable(false);
|
|
|
120 |
typeDesc.addFieldDesc(elemField);
|
|
|
121 |
elemField = new org.apache.axis.description.ElementDesc();
|
|
|
122 |
elemField.setFieldName("value");
|
|
|
123 |
elemField.setXmlName(new javax.xml.namespace.QName("http://fedex.com/ws/ship/v12", "Value"));
|
|
|
124 |
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "decimal"));
|
|
|
125 |
elemField.setMinOccurs(0);
|
|
|
126 |
elemField.setNillable(false);
|
|
|
127 |
typeDesc.addFieldDesc(elemField);
|
|
|
128 |
}
|
|
|
129 |
|
|
|
130 |
/**
|
|
|
131 |
* Return type metadata object
|
|
|
132 |
*/
|
|
|
133 |
public static org.apache.axis.description.TypeDesc getTypeDesc() {
|
|
|
134 |
return typeDesc;
|
|
|
135 |
}
|
|
|
136 |
|
|
|
137 |
/**
|
|
|
138 |
* Get Custom Serializer
|
|
|
139 |
*/
|
|
|
140 |
public static org.apache.axis.encoding.Serializer getSerializer(
|
|
|
141 |
java.lang.String mechType,
|
|
|
142 |
java.lang.Class _javaType,
|
|
|
143 |
javax.xml.namespace.QName _xmlType) {
|
|
|
144 |
return
|
|
|
145 |
new org.apache.axis.encoding.ser.BeanSerializer(
|
|
|
146 |
_javaType, _xmlType, typeDesc);
|
|
|
147 |
}
|
|
|
148 |
|
|
|
149 |
/**
|
|
|
150 |
* Get Custom Deserializer
|
|
|
151 |
*/
|
|
|
152 |
public static org.apache.axis.encoding.Deserializer getDeserializer(
|
|
|
153 |
java.lang.String mechType,
|
|
|
154 |
java.lang.Class _javaType,
|
|
|
155 |
javax.xml.namespace.QName _xmlType) {
|
|
|
156 |
return
|
|
|
157 |
new org.apache.axis.encoding.ser.BeanDeserializer(
|
|
|
158 |
_javaType, _xmlType, typeDesc);
|
|
|
159 |
}
|
|
|
160 |
|
|
|
161 |
}
|