WSInvokeException.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /**
  2. * WSInvokeException.java
  3. *
  4. * This file was auto-generated from WSDL
  5. * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
  6. */
  7. package com.steerinfo.dil.wsdl;
  8. public class WSInvokeException extends org.apache.axis.AxisFault implements java.io.Serializable {
  9. public WSInvokeException() {
  10. }
  11. private Object __equalsCalc = null;
  12. public synchronized boolean equals(Object obj) {
  13. if (!(obj instanceof WSInvokeException)) return false;
  14. WSInvokeException other = (WSInvokeException) obj;
  15. if (obj == null) return false;
  16. if (this == obj) return true;
  17. if (__equalsCalc != null) {
  18. return (__equalsCalc == obj);
  19. }
  20. __equalsCalc = obj;
  21. boolean _equals;
  22. _equals = true;
  23. __equalsCalc = null;
  24. return _equals;
  25. }
  26. private boolean __hashCodeCalc = false;
  27. public synchronized int hashCode() {
  28. if (__hashCodeCalc) {
  29. return 0;
  30. }
  31. __hashCodeCalc = true;
  32. int _hashCode = 1;
  33. __hashCodeCalc = false;
  34. return _hashCode;
  35. }
  36. // Type metadata
  37. private static org.apache.axis.description.TypeDesc typeDesc =
  38. new org.apache.axis.description.TypeDesc(WSInvokeException.class, true);
  39. static {
  40. typeDesc.setXmlType(new javax.xml.namespace.QName("urn:client.facefacade", "WSInvokeException"));
  41. }
  42. /**
  43. * Return type metadata object
  44. */
  45. public static org.apache.axis.description.TypeDesc getTypeDesc() {
  46. return typeDesc;
  47. }
  48. /**
  49. * Get Custom Serializer
  50. */
  51. public static org.apache.axis.encoding.Serializer getSerializer(
  52. String mechType,
  53. Class _javaType,
  54. javax.xml.namespace.QName _xmlType) {
  55. return
  56. new org.apache.axis.encoding.ser.BeanSerializer(
  57. _javaType, _xmlType, typeDesc);
  58. }
  59. /**
  60. * Get Custom Deserializer
  61. */
  62. public static org.apache.axis.encoding.Deserializer getDeserializer(
  63. String mechType,
  64. Class _javaType,
  65. javax.xml.namespace.QName _xmlType) {
  66. return
  67. new org.apache.axis.encoding.ser.BeanDeserializer(
  68. _javaType, _xmlType, typeDesc);
  69. }
  70. /**
  71. * Writes the exception data to the faultDetails
  72. */
  73. public void writeDetails(javax.xml.namespace.QName qname, org.apache.axis.encoding.SerializationContext context) throws java.io.IOException {
  74. context.serialize(qname, null, this);
  75. }
  76. }