1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41 package com.tvnavig.server.user;
42
43 public class UserServiceException extends com.tvnavig.server.util.ServiceException implements java.io.Serializable {
44 public UserServiceException() {
45 }
46
47 public UserServiceException(
48 java.lang.String[] error) {
49 super(
50 error);
51 }
52
53 private java.lang.Object __equalsCalc = null;
54 public synchronized boolean equals(java.lang.Object obj) {
55 if (!(obj instanceof UserServiceException)) return false;
56 UserServiceException other = (UserServiceException) obj;
57 if (obj == null) return false;
58 if (this == obj) return true;
59 if (__equalsCalc != null) {
60 return (__equalsCalc == obj);
61 }
62 __equalsCalc = obj;
63 boolean _equals;
64 _equals = super.equals(obj);
65 __equalsCalc = null;
66 return _equals;
67 }
68
69 private boolean __hashCodeCalc = false;
70 public synchronized int hashCode() {
71 if (__hashCodeCalc) {
72 return 0;
73 }
74 __hashCodeCalc = true;
75 int _hashCode = super.hashCode();
76 __hashCodeCalc = false;
77 return _hashCode;
78 }
79
80
81 private static org.apache.axis.description.TypeDesc typeDesc =
82 new org.apache.axis.description.TypeDesc(UserServiceException.class, true);
83
84 static {
85 typeDesc.setXmlType(new javax.xml.namespace.QName("http://user.server.tvnavig.com", "UserServiceException"));
86 }
87
88
89
90
91 public static org.apache.axis.description.TypeDesc getTypeDesc() {
92 return typeDesc;
93 }
94
95
96
97
98 public static org.apache.axis.encoding.Serializer getSerializer(
99 java.lang.String mechType,
100 java.lang.Class _javaType,
101 javax.xml.namespace.QName _xmlType) {
102 return
103 new org.apache.axis.encoding.ser.BeanSerializer(
104 _javaType, _xmlType, typeDesc);
105 }
106
107
108
109
110 public static org.apache.axis.encoding.Deserializer getDeserializer(
111 java.lang.String mechType,
112 java.lang.Class _javaType,
113 javax.xml.namespace.QName _xmlType) {
114 return
115 new org.apache.axis.encoding.ser.BeanDeserializer(
116 _javaType, _xmlType, typeDesc);
117 }
118
119
120
121
122
123 public void writeDetails(javax.xml.namespace.QName qname, org.apache.axis.encoding.SerializationContext context) throws java.io.IOException {
124 context.serialize(qname, null, this);
125 }
126 }