|
1 |
| |
|
2 |
| |
|
3 |
| |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| |
|
8 |
| package org.globus.cas.types; |
|
9 |
| |
|
10 |
| public class VoidType implements java.io.Serializable { |
|
11 |
| |
|
12 |
0
| public VoidType() {
|
|
13 |
| } |
|
14 |
| |
|
15 |
| private java.lang.Object __equalsCalc = null; |
|
16 |
0
| public synchronized boolean equals(java.lang.Object obj) {
|
|
17 |
0
| if (!(obj instanceof VoidType)) return false;
|
|
18 |
0
| VoidType other = (VoidType) obj;
|
|
19 |
0
| if (obj == null) return false;
|
|
20 |
0
| if (this == obj) return true;
|
|
21 |
0
| if (__equalsCalc != null) {
|
|
22 |
0
| return (__equalsCalc == obj);
|
|
23 |
| } |
|
24 |
0
| __equalsCalc = obj;
|
|
25 |
0
| boolean _equals;
|
|
26 |
0
| _equals = true;
|
|
27 |
0
| __equalsCalc = null;
|
|
28 |
0
| return _equals;
|
|
29 |
| } |
|
30 |
| |
|
31 |
| private boolean __hashCodeCalc = false; |
|
32 |
0
| public synchronized int hashCode() {
|
|
33 |
0
| if (__hashCodeCalc) {
|
|
34 |
0
| return 0;
|
|
35 |
| } |
|
36 |
0
| __hashCodeCalc = true;
|
|
37 |
0
| int _hashCode = 1;
|
|
38 |
0
| __hashCodeCalc = false;
|
|
39 |
0
| return _hashCode;
|
|
40 |
| } |
|
41 |
| |
|
42 |
| |
|
43 |
| private static org.apache.axis.description.TypeDesc typeDesc = |
|
44 |
| new org.apache.axis.description.TypeDesc(VoidType.class, true); |
|
45 |
| |
|
46 |
| static { |
|
47 |
0
| typeDesc.setXmlType(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casTypes", "voidType"));
|
|
48 |
| } |
|
49 |
| |
|
50 |
| |
|
51 |
| |
|
52 |
| |
|
53 |
0
| public static org.apache.axis.description.TypeDesc getTypeDesc() {
|
|
54 |
0
| return typeDesc;
|
|
55 |
| } |
|
56 |
| |
|
57 |
| |
|
58 |
| |
|
59 |
| |
|
60 |
0
| public static org.apache.axis.encoding.Serializer getSerializer(
|
|
61 |
| java.lang.String mechType, |
|
62 |
| java.lang.Class _javaType, |
|
63 |
| javax.xml.namespace.QName _xmlType) { |
|
64 |
0
| return
|
|
65 |
| new org.apache.axis.encoding.ser.BeanSerializer( |
|
66 |
| _javaType, _xmlType, typeDesc); |
|
67 |
| } |
|
68 |
| |
|
69 |
| |
|
70 |
| |
|
71 |
| |
|
72 |
0
| public static org.apache.axis.encoding.Deserializer getDeserializer(
|
|
73 |
| java.lang.String mechType, |
|
74 |
| java.lang.Class _javaType, |
|
75 |
| javax.xml.namespace.QName _xmlType) { |
|
76 |
0
| return
|
|
77 |
| new org.apache.axis.encoding.ser.BeanDeserializer( |
|
78 |
| _javaType, _xmlType, typeDesc); |
|
79 |
| } |
|
80 |
| |
|
81 |
| } |