1 7 8 package org.alfresco.repo.webservice.classification; 9 10 public class AppliedCategory implements java.io.Serializable { 11 private java.lang.String classification; 12 13 private org.alfresco.repo.webservice.types.Reference[] categories; 14 15 public AppliedCategory() { 16 } 17 18 public AppliedCategory( 19 java.lang.String classification, 20 org.alfresco.repo.webservice.types.Reference[] categories) { 21 this.classification = classification; 22 this.categories = categories; 23 } 24 25 26 31 public java.lang.String getClassification() { 32 return classification; 33 } 34 35 36 41 public void setClassification(java.lang.String classification) { 42 this.classification = classification; 43 } 44 45 46 51 public org.alfresco.repo.webservice.types.Reference[] getCategories() { 52 return categories; 53 } 54 55 56 61 public void setCategories(org.alfresco.repo.webservice.types.Reference[] categories) { 62 this.categories = categories; 63 } 64 65 public org.alfresco.repo.webservice.types.Reference getCategories(int i) { 66 return this.categories[i]; 67 } 68 69 public void setCategories(int i, org.alfresco.repo.webservice.types.Reference _value) { 70 this.categories[i] = _value; 71 } 72 73 private java.lang.Object __equalsCalc = null; 74 public synchronized boolean equals(java.lang.Object obj) { 75 if (!(obj instanceof AppliedCategory)) return false; 76 AppliedCategory other = (AppliedCategory) obj; 77 if (obj == null) return false; 78 if (this == obj) return true; 79 if (__equalsCalc != null) { 80 return (__equalsCalc == obj); 81 } 82 __equalsCalc = obj; 83 boolean _equals; 84 _equals = true && 85 ((this.classification==null && other.getClassification()==null) || 86 (this.classification!=null && 87 this.classification.equals(other.getClassification()))) && 88 ((this.categories==null && other.getCategories()==null) || 89 (this.categories!=null && 90 java.util.Arrays.equals(this.categories, other.getCategories()))); 91 __equalsCalc = null; 92 return _equals; 93 } 94 95 private boolean __hashCodeCalc = false; 96 public synchronized int hashCode() { 97 if (__hashCodeCalc) { 98 return 0; 99 } 100 __hashCodeCalc = true; 101 int _hashCode = 1; 102 if (getClassification() != null) { 103 _hashCode += getClassification().hashCode(); 104 } 105 if (getCategories() != null) { 106 for (int i=0; 107 i<java.lang.reflect.Array.getLength(getCategories()); 108 i++) { 109 java.lang.Object obj = java.lang.reflect.Array.get(getCategories(), i); 110 if (obj != null && 111 !obj.getClass().isArray()) { 112 _hashCode += obj.hashCode(); 113 } 114 } 115 } 116 __hashCodeCalc = false; 117 return _hashCode; 118 } 119 120 private static org.apache.axis.description.TypeDesc typeDesc = 122 new org.apache.axis.description.TypeDesc(AppliedCategory.class, true); 123 124 static { 125 typeDesc.setXmlType(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/classification/1.0", "AppliedCategory")); 126 org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); 127 elemField.setFieldName("classification"); 128 elemField.setXmlName(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/classification/1.0", "classification")); 129 elemField.setXmlType(new javax.xml.namespace.QName ("http://www.w3.org/2001/XMLSchema", "string")); 130 elemField.setNillable(false); 131 typeDesc.addFieldDesc(elemField); 132 elemField = new org.apache.axis.description.ElementDesc(); 133 elemField.setFieldName("categories"); 134 elemField.setXmlName(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/classification/1.0", "categories")); 135 elemField.setXmlType(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/model/content/1.0", "Reference")); 136 elemField.setMinOccurs(0); 137 elemField.setNillable(false); 138 elemField.setMaxOccursUnbounded(true); 139 typeDesc.addFieldDesc(elemField); 140 } 141 142 145 public static org.apache.axis.description.TypeDesc getTypeDesc() { 146 return typeDesc; 147 } 148 149 152 public static org.apache.axis.encoding.Serializer getSerializer( 153 java.lang.String mechType, 154 java.lang.Class _javaType, 155 javax.xml.namespace.QName _xmlType) { 156 return 157 new org.apache.axis.encoding.ser.BeanSerializer( 158 _javaType, _xmlType, typeDesc); 159 } 160 161 164 public static org.apache.axis.encoding.Deserializer getDeserializer( 165 java.lang.String mechType, 166 java.lang.Class _javaType, 167 javax.xml.namespace.QName _xmlType) { 168 return 169 new org.apache.axis.encoding.ser.BeanDeserializer( 170 _javaType, _xmlType, typeDesc); 171 } 172 173 } 174 | Popular Tags |