1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 package com.atlassian.theplugin.jira.api.soap.axis;
25
26 public class RemoteStatus extends com.atlassian.theplugin.jira.api.soap.axis.AbstractRemoteConstant implements java.io.Serializable {
27 public RemoteStatus() {
28 }
29
30 public RemoteStatus(
31 java.lang.String id,
32 java.lang.String name,
33 java.lang.String description,
34 java.lang.String icon) {
35 super(
36 id,
37 name,
38 description,
39 icon);
40 }
41
42 private java.lang.Object __equalsCalc = null;
43 public synchronized boolean equals(java.lang.Object obj) {
44 if (!(obj instanceof RemoteStatus)) return false;
45 RemoteStatus other = (RemoteStatus) obj;
46 if (obj == null) return false;
47 if (this == obj) return true;
48 if (__equalsCalc != null) {
49 return (__equalsCalc == obj);
50 }
51 __equalsCalc = obj;
52 boolean _equals;
53 _equals = super.equals(obj);
54 __equalsCalc = null;
55 return _equals;
56 }
57
58 private boolean __hashCodeCalc = false;
59 public synchronized int hashCode() {
60 if (__hashCodeCalc) {
61 return 0;
62 }
63 __hashCodeCalc = true;
64 int _hashCode = super.hashCode();
65 __hashCodeCalc = false;
66 return _hashCode;
67 }
68
69
70 private static org.apache.axis.description.TypeDesc typeDesc =
71 new org.apache.axis.description.TypeDesc(RemoteStatus.class, true);
72
73 static {
74 typeDesc.setXmlType(new javax.xml.namespace.QName("http://beans.soap.rpc.jira.atlassian.com", "RemoteStatus"));
75 }
76
77
78
79
80 public static org.apache.axis.description.TypeDesc getTypeDesc() {
81 return typeDesc;
82 }
83
84
85
86
87 public static org.apache.axis.encoding.Serializer getSerializer(
88 java.lang.String mechType,
89 java.lang.Class _javaType,
90 javax.xml.namespace.QName _xmlType) {
91 return
92 new org.apache.axis.encoding.ser.BeanSerializer(
93 _javaType, _xmlType, typeDesc);
94 }
95
96
97
98
99 public static org.apache.axis.encoding.Deserializer getDeserializer(
100 java.lang.String mechType,
101 java.lang.Class _javaType,
102 javax.xml.namespace.QName _xmlType) {
103 return
104 new org.apache.axis.encoding.ser.BeanDeserializer(
105 _javaType, _xmlType, typeDesc);
106 }
107
108 }