KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > alfresco > repo > webservice > types > Category


1 /**
2  * Category.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter.
6  */

7
8 package org.alfresco.repo.webservice.types;
9
10 public class Category implements java.io.Serializable JavaDoc {
11     private org.alfresco.repo.webservice.types.Reference id;
12
13     private java.lang.String JavaDoc title;
14
15     private java.lang.String JavaDoc description;
16
17     public Category() {
18     }
19
20     public Category(
21            org.alfresco.repo.webservice.types.Reference id,
22            java.lang.String JavaDoc title,
23            java.lang.String JavaDoc description) {
24            this.id = id;
25            this.title = title;
26            this.description = description;
27     }
28
29
30     /**
31      * Gets the id value for this Category.
32      *
33      * @return id
34      */

35     public org.alfresco.repo.webservice.types.Reference getId() {
36         return id;
37     }
38
39
40     /**
41      * Sets the id value for this Category.
42      *
43      * @param id
44      */

45     public void setId(org.alfresco.repo.webservice.types.Reference id) {
46         this.id = id;
47     }
48
49
50     /**
51      * Gets the title value for this Category.
52      *
53      * @return title
54      */

55     public java.lang.String JavaDoc getTitle() {
56         return title;
57     }
58
59
60     /**
61      * Sets the title value for this Category.
62      *
63      * @param title
64      */

65     public void setTitle(java.lang.String JavaDoc title) {
66         this.title = title;
67     }
68
69
70     /**
71      * Gets the description value for this Category.
72      *
73      * @return description
74      */

75     public java.lang.String JavaDoc getDescription() {
76         return description;
77     }
78
79
80     /**
81      * Sets the description value for this Category.
82      *
83      * @param description
84      */

85     public void setDescription(java.lang.String JavaDoc description) {
86         this.description = description;
87     }
88
89     private java.lang.Object JavaDoc __equalsCalc = null;
90     public synchronized boolean equals(java.lang.Object JavaDoc obj) {
91         if (!(obj instanceof Category)) return false;
92         Category other = (Category) obj;
93         if (obj == null) return false;
94         if (this == obj) return true;
95         if (__equalsCalc != null) {
96             return (__equalsCalc == obj);
97         }
98         __equalsCalc = obj;
99         boolean _equals;
100         _equals = true &&
101             ((this.id==null && other.getId()==null) ||
102              (this.id!=null &&
103               this.id.equals(other.getId()))) &&
104             ((this.title==null && other.getTitle()==null) ||
105              (this.title!=null &&
106               this.title.equals(other.getTitle()))) &&
107             ((this.description==null && other.getDescription()==null) ||
108              (this.description!=null &&
109               this.description.equals(other.getDescription())));
110         __equalsCalc = null;
111         return _equals;
112     }
113
114     private boolean __hashCodeCalc = false;
115     public synchronized int hashCode() {
116         if (__hashCodeCalc) {
117             return 0;
118         }
119         __hashCodeCalc = true;
120         int _hashCode = 1;
121         if (getId() != null) {
122             _hashCode += getId().hashCode();
123         }
124         if (getTitle() != null) {
125             _hashCode += getTitle().hashCode();
126         }
127         if (getDescription() != null) {
128             _hashCode += getDescription().hashCode();
129         }
130         __hashCodeCalc = false;
131         return _hashCode;
132     }
133
134     // Type metadata
135
private static org.apache.axis.description.TypeDesc typeDesc =
136         new org.apache.axis.description.TypeDesc(Category.class, true);
137
138     static {
139         typeDesc.setXmlType(new javax.xml.namespace.QName JavaDoc("http://www.alfresco.org/ws/model/content/1.0", "Category"));
140         org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
141         elemField.setFieldName("id");
142         elemField.setXmlName(new javax.xml.namespace.QName JavaDoc("http://www.alfresco.org/ws/model/content/1.0", "id"));
143         elemField.setXmlType(new javax.xml.namespace.QName JavaDoc("http://www.alfresco.org/ws/model/content/1.0", "Reference"));
144         elemField.setNillable(false);
145         typeDesc.addFieldDesc(elemField);
146         elemField = new org.apache.axis.description.ElementDesc();
147         elemField.setFieldName("title");
148         elemField.setXmlName(new javax.xml.namespace.QName JavaDoc("http://www.alfresco.org/ws/model/content/1.0", "title"));
149         elemField.setXmlType(new javax.xml.namespace.QName JavaDoc("http://www.w3.org/2001/XMLSchema", "string"));
150         elemField.setMinOccurs(0);
151         elemField.setNillable(false);
152         typeDesc.addFieldDesc(elemField);
153         elemField = new org.apache.axis.description.ElementDesc();
154         elemField.setFieldName("description");
155         elemField.setXmlName(new javax.xml.namespace.QName JavaDoc("http://www.alfresco.org/ws/model/content/1.0", "description"));
156         elemField.setXmlType(new javax.xml.namespace.QName JavaDoc("http://www.w3.org/2001/XMLSchema", "string"));
157         elemField.setMinOccurs(0);
158         elemField.setNillable(false);
159         typeDesc.addFieldDesc(elemField);
160     }
161
162     /**
163      * Return type metadata object
164      */

165     public static org.apache.axis.description.TypeDesc getTypeDesc() {
166         return typeDesc;
167     }
168
169     /**
170      * Get Custom Serializer
171      */

172     public static org.apache.axis.encoding.Serializer getSerializer(
173            java.lang.String JavaDoc mechType,
174            java.lang.Class JavaDoc _javaType,
175            javax.xml.namespace.QName JavaDoc _xmlType) {
176         return
177           new org.apache.axis.encoding.ser.BeanSerializer(
178             _javaType, _xmlType, typeDesc);
179     }
180
181     /**
182      * Get Custom Deserializer
183      */

184     public static org.apache.axis.encoding.Deserializer getDeserializer(
185            java.lang.String JavaDoc mechType,
186            java.lang.Class JavaDoc _javaType,
187            javax.xml.namespace.QName JavaDoc _xmlType) {
188         return
189           new org.apache.axis.encoding.ser.BeanDeserializer(
190             _javaType, _xmlType, typeDesc);
191     }
192
193 }
194
Popular Tags