1 7 8 package org.alfresco.example.webservice.authoring; 9 10 public class VersionResult implements java.io.Serializable { 11 private org.alfresco.example.webservice.types.Reference node; 12 private org.alfresco.example.webservice.types.Version version; 13 14 public VersionResult() { 15 } 16 17 public VersionResult( 18 org.alfresco.example.webservice.types.Reference node, 19 org.alfresco.example.webservice.types.Version version) { 20 this.node = node; 21 this.version = version; 22 } 23 24 25 30 public org.alfresco.example.webservice.types.Reference getNode() { 31 return node; 32 } 33 34 35 40 public void setNode(org.alfresco.example.webservice.types.Reference node) { 41 this.node = node; 42 } 43 44 45 50 public org.alfresco.example.webservice.types.Version getVersion() { 51 return version; 52 } 53 54 55 60 public void setVersion(org.alfresco.example.webservice.types.Version version) { 61 this.version = version; 62 } 63 64 private java.lang.Object __equalsCalc = null; 65 public synchronized boolean equals(java.lang.Object obj) { 66 if (!(obj instanceof VersionResult)) return false; 67 VersionResult other = (VersionResult) obj; 68 if (obj == null) return false; 69 if (this == obj) return true; 70 if (__equalsCalc != null) { 71 return (__equalsCalc == obj); 72 } 73 __equalsCalc = obj; 74 boolean _equals; 75 _equals = true && 76 ((this.node==null && other.getNode()==null) || 77 (this.node!=null && 78 this.node.equals(other.getNode()))) && 79 ((this.version==null && other.getVersion()==null) || 80 (this.version!=null && 81 this.version.equals(other.getVersion()))); 82 __equalsCalc = null; 83 return _equals; 84 } 85 86 private boolean __hashCodeCalc = false; 87 public synchronized int hashCode() { 88 if (__hashCodeCalc) { 89 return 0; 90 } 91 __hashCodeCalc = true; 92 int _hashCode = 1; 93 if (getNode() != null) { 94 _hashCode += getNode().hashCode(); 95 } 96 if (getVersion() != null) { 97 _hashCode += getVersion().hashCode(); 98 } 99 __hashCodeCalc = false; 100 return _hashCode; 101 } 102 103 private static org.apache.axis.description.TypeDesc typeDesc = 105 new org.apache.axis.description.TypeDesc(VersionResult.class, true); 106 107 static { 108 typeDesc.setXmlType(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/authoring/1.0", "VersionResult")); 109 org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); 110 elemField.setFieldName("node"); 111 elemField.setXmlName(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/authoring/1.0", "node")); 112 elemField.setXmlType(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/model/content/1.0", "Reference")); 113 elemField.setNillable(false); 114 typeDesc.addFieldDesc(elemField); 115 elemField = new org.apache.axis.description.ElementDesc(); 116 elemField.setFieldName("version"); 117 elemField.setXmlName(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/authoring/1.0", "version")); 118 elemField.setXmlType(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/model/content/1.0", "Version")); 119 elemField.setNillable(false); 120 typeDesc.addFieldDesc(elemField); 121 } 122 123 126 public static org.apache.axis.description.TypeDesc getTypeDesc() { 127 return typeDesc; 128 } 129 130 133 public static org.apache.axis.encoding.Serializer getSerializer( 134 java.lang.String mechType, 135 java.lang.Class _javaType, 136 javax.xml.namespace.QName _xmlType) { 137 return 138 new org.apache.axis.encoding.ser.BeanSerializer( 139 _javaType, _xmlType, typeDesc); 140 } 141 142 145 public static org.apache.axis.encoding.Deserializer getDeserializer( 146 java.lang.String mechType, 147 java.lang.Class _javaType, 148 javax.xml.namespace.QName _xmlType) { 149 return 150 new org.apache.axis.encoding.ser.BeanDeserializer( 151 _javaType, _xmlType, typeDesc); 152 } 153 154 } 155 | Popular Tags |