1 7 8 package org.alfresco.example.webservice.authoring; 9 10 public class AuthoringFault extends org.apache.axis.AxisFault implements java.io.Serializable { 11 private int errorCode; 12 private java.lang.String message1; 13 14 public AuthoringFault() { 15 } 16 17 public AuthoringFault( 18 int errorCode, 19 java.lang.String message1) { 20 this.errorCode = errorCode; 21 this.message1 = message1; 22 } 23 24 25 30 public int getErrorCode() { 31 return errorCode; 32 } 33 34 35 40 public void setErrorCode(int errorCode) { 41 this.errorCode = errorCode; 42 } 43 44 45 50 public java.lang.String getMessage1() { 51 return message1; 52 } 53 54 55 60 public void setMessage1(java.lang.String message1) { 61 this.message1 = message1; 62 } 63 64 private java.lang.Object __equalsCalc = null; 65 public synchronized boolean equals(java.lang.Object obj) { 66 if (!(obj instanceof AuthoringFault)) return false; 67 AuthoringFault other = (AuthoringFault) 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.errorCode == other.getErrorCode() && 77 ((this.message1==null && other.getMessage1()==null) || 78 (this.message1!=null && 79 this.message1.equals(other.getMessage1()))); 80 __equalsCalc = null; 81 return _equals; 82 } 83 84 private boolean __hashCodeCalc = false; 85 public synchronized int hashCode() { 86 if (__hashCodeCalc) { 87 return 0; 88 } 89 __hashCodeCalc = true; 90 int _hashCode = 1; 91 _hashCode += getErrorCode(); 92 if (getMessage1() != null) { 93 _hashCode += getMessage1().hashCode(); 94 } 95 __hashCodeCalc = false; 96 return _hashCode; 97 } 98 99 private static org.apache.axis.description.TypeDesc typeDesc = 101 new org.apache.axis.description.TypeDesc(AuthoringFault.class, true); 102 103 static { 104 typeDesc.setXmlType(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/authoring/1.0", "AuthoringFault")); 105 org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); 106 elemField.setFieldName("errorCode"); 107 elemField.setXmlName(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/authoring/1.0", "errorCode")); 108 elemField.setXmlType(new javax.xml.namespace.QName ("http://www.w3.org/2001/XMLSchema", "int")); 109 elemField.setNillable(false); 110 typeDesc.addFieldDesc(elemField); 111 elemField = new org.apache.axis.description.ElementDesc(); 112 elemField.setFieldName("message1"); 113 elemField.setXmlName(new javax.xml.namespace.QName ("http://www.alfresco.org/ws/service/authoring/1.0", "message")); 114 elemField.setXmlType(new javax.xml.namespace.QName ("http://www.w3.org/2001/XMLSchema", "string")); 115 elemField.setNillable(false); 116 typeDesc.addFieldDesc(elemField); 117 } 118 119 122 public static org.apache.axis.description.TypeDesc getTypeDesc() { 123 return typeDesc; 124 } 125 126 129 public static org.apache.axis.encoding.Serializer getSerializer( 130 java.lang.String mechType, 131 java.lang.Class _javaType, 132 javax.xml.namespace.QName _xmlType) { 133 return 134 new org.apache.axis.encoding.ser.BeanSerializer( 135 _javaType, _xmlType, typeDesc); 136 } 137 138 141 public static org.apache.axis.encoding.Deserializer getDeserializer( 142 java.lang.String mechType, 143 java.lang.Class _javaType, 144 javax.xml.namespace.QName _xmlType) { 145 return 146 new org.apache.axis.encoding.ser.BeanDeserializer( 147 _javaType, _xmlType, typeDesc); 148 } 149 150 151 154 public void writeDetails(javax.xml.namespace.QName qname, org.apache.axis.encoding.SerializationContext context) throws java.io.IOException { 155 context.serialize(qname, null, this); 156 } 157 } 158 | Popular Tags |