CAS Unit Tests
Clover coverage report - CAS Unit Tests
Coverage timestamp: Mon Jul 4 2005 18:13:17 CDT
file stats: LOC: 102   Methods: 8
NCLOC: 70   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
CasFault.java 0% 0% 0% 0%
coverage
 1    /**
 2    * CasFault.java
 3    *
 4    * This file was auto-generated from WSDL
 5    * by the Apache Axis 1.2RC2 Jun 16, 2005 (10:54:53 EDT) WSDL2Java emitter.
 6    */
 7   
 8    package org.globus.cas.faults;
 9   
 10    public class CasFault extends org.oasis.wsrf.faults.BaseFaultType implements java.io.Serializable {
 11   
 12  0 public CasFault() {
 13    }
 14   
 15  0 public CasFault(
 16    java.util.Calendar timestamp,
 17    org.apache.axis.message.addressing.EndpointReferenceType originator,
 18    org.oasis.wsrf.faults.BaseFaultTypeErrorCode errorCode,
 19    org.oasis.wsrf.faults.BaseFaultTypeDescription[] description,
 20    org.oasis.wsrf.faults.BaseFaultType[] faultCause) {
 21  0 super(
 22    timestamp,
 23    originator,
 24    errorCode,
 25    description,
 26    faultCause);
 27    }
 28   
 29    private java.lang.Object __equalsCalc = null;
 30  0 public synchronized boolean equals(java.lang.Object obj) {
 31  0 if (!(obj instanceof CasFault)) return false;
 32  0 CasFault other = (CasFault) obj;
 33  0 if (obj == null) return false;
 34  0 if (this == obj) return true;
 35  0 if (__equalsCalc != null) {
 36  0 return (__equalsCalc == obj);
 37    }
 38  0 __equalsCalc = obj;
 39  0 boolean _equals;
 40  0 _equals = super.equals(obj);
 41  0 __equalsCalc = null;
 42  0 return _equals;
 43    }
 44   
 45    private boolean __hashCodeCalc = false;
 46  0 public synchronized int hashCode() {
 47  0 if (__hashCodeCalc) {
 48  0 return 0;
 49    }
 50  0 __hashCodeCalc = true;
 51  0 int _hashCode = super.hashCode();
 52  0 __hashCodeCalc = false;
 53  0 return _hashCode;
 54    }
 55   
 56    // Type metadata
 57    private static org.apache.axis.description.TypeDesc typeDesc =
 58    new org.apache.axis.description.TypeDesc(CasFault.class, true);
 59   
 60    static {
 61  0 typeDesc.setXmlType(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casFaults", ">CasFault"));
 62    }
 63   
 64    /**
 65    * Return type metadata object
 66    */
 67  0 public static org.apache.axis.description.TypeDesc getTypeDesc() {
 68  0 return typeDesc;
 69    }
 70   
 71    /**
 72    * Get Custom Serializer
 73    */
 74  0 public static org.apache.axis.encoding.Serializer getSerializer(
 75    java.lang.String mechType,
 76    java.lang.Class _javaType,
 77    javax.xml.namespace.QName _xmlType) {
 78  0 return
 79    new org.apache.axis.encoding.ser.BeanSerializer(
 80    _javaType, _xmlType, typeDesc);
 81    }
 82   
 83    /**
 84    * Get Custom Deserializer
 85    */
 86  0 public static org.apache.axis.encoding.Deserializer getDeserializer(
 87    java.lang.String mechType,
 88    java.lang.Class _javaType,
 89    javax.xml.namespace.QName _xmlType) {
 90  0 return
 91    new org.apache.axis.encoding.ser.BeanDeserializer(
 92    _javaType, _xmlType, typeDesc);
 93    }
 94   
 95   
 96    /**
 97    * Writes the exception data to the faultDetails
 98    */
 99  0 public void writeDetails(javax.xml.namespace.QName qname, org.apache.axis.encoding.SerializationContext context) throws java.io.IOException {
 100  0 context.serialize(qname, null, this);
 101    }
 102    }