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 RemoteComponent extends com.atlassian.theplugin.jira.api.soap.axis.AbstractNamedRemoteEntity implements java.io.Serializable {
27 public RemoteComponent() {
28 }
29
30 public RemoteComponent(
31 java.lang.String id,
32 java.lang.String name) {
33 super(
34 id,
35 name);
36 }
37
38 private java.lang.Object __equalsCalc = null;
39 public synchronized boolean equals(java.lang.Object obj) {
40 if (!(obj instanceof RemoteComponent)) return false;
41 RemoteComponent other = (RemoteComponent) obj;
42 if (obj == null) return false;
43 if (this == obj) return true;
44 if (__equalsCalc != null) {
45 return (__equalsCalc == obj);
46 }
47 __equalsCalc = obj;
48 boolean _equals;
49 _equals = super.equals(obj);
50 __equalsCalc = null;
51 return _equals;
52 }
53
54 private boolean __hashCodeCalc = false;
55 public synchronized int hashCode() {
56 if (__hashCodeCalc) {
57 return 0;
58 }
59 __hashCodeCalc = true;
60 int _hashCode = super.hashCode();
61 __hashCodeCalc = false;
62 return _hashCode;
63 }
64
65
66 private static org.apache.axis.description.TypeDesc typeDesc =
67 new org.apache.axis.description.TypeDesc(RemoteComponent.class, true);
68
69 static {
70 typeDesc.setXmlType(new javax.xml.namespace.QName("http://beans.soap.rpc.jira.atlassian.com", "RemoteComponent"));
71 }
72
73
74
75
76 public static org.apache.axis.description.TypeDesc getTypeDesc() {
77 return typeDesc;
78 }
79
80
81
82
83 public static org.apache.axis.encoding.Serializer getSerializer(
84 java.lang.String mechType,
85 java.lang.Class _javaType,
86 javax.xml.namespace.QName _xmlType) {
87 return
88 new org.apache.axis.encoding.ser.BeanSerializer(
89 _javaType, _xmlType, typeDesc);
90 }
91
92
93
94
95 public static org.apache.axis.encoding.Deserializer getDeserializer(
96 java.lang.String mechType,
97 java.lang.Class _javaType,
98 javax.xml.namespace.QName _xmlType) {
99 return
100 new org.apache.axis.encoding.ser.BeanDeserializer(
101 _javaType, _xmlType, typeDesc);
102 }
103
104 }