CAS Unit Tests
Clover coverage report - CAS Unit Tests
Coverage timestamp: Mon Jul 4 2005 18:13:17 CDT
file stats: LOC: 152   Methods: 11
NCLOC: 96   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
DeleteObject.java 0% 0% 0% 0%
coverage
 1    /**
 2    * DeleteObject.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.types;
 9   
 10    public class DeleteObject implements java.io.Serializable {
 11    private java.lang.String objectName;
 12    private java.lang.String objectNamespace;
 13   
 14  0 public DeleteObject() {
 15    }
 16   
 17  0 public DeleteObject(
 18    java.lang.String objectName,
 19    java.lang.String objectNamespace) {
 20  0 this.objectName = objectName;
 21  0 this.objectNamespace = objectNamespace;
 22    }
 23   
 24   
 25    /**
 26    * Gets the objectName value for this DeleteObject.
 27    *
 28    * @return objectName
 29    */
 30  0 public java.lang.String getObjectName() {
 31  0 return objectName;
 32    }
 33   
 34   
 35    /**
 36    * Sets the objectName value for this DeleteObject.
 37    *
 38    * @param objectName
 39    */
 40  0 public void setObjectName(java.lang.String objectName) {
 41  0 this.objectName = objectName;
 42    }
 43   
 44   
 45    /**
 46    * Gets the objectNamespace value for this DeleteObject.
 47    *
 48    * @return objectNamespace
 49    */
 50  0 public java.lang.String getObjectNamespace() {
 51  0 return objectNamespace;
 52    }
 53   
 54   
 55    /**
 56    * Sets the objectNamespace value for this DeleteObject.
 57    *
 58    * @param objectNamespace
 59    */
 60  0 public void setObjectNamespace(java.lang.String objectNamespace) {
 61  0 this.objectNamespace = objectNamespace;
 62    }
 63   
 64    private java.lang.Object __equalsCalc = null;
 65  0 public synchronized boolean equals(java.lang.Object obj) {
 66  0 if (!(obj instanceof DeleteObject)) return false;
 67  0 DeleteObject other = (DeleteObject) obj;
 68  0 if (obj == null) return false;
 69  0 if (this == obj) return true;
 70  0 if (__equalsCalc != null) {
 71  0 return (__equalsCalc == obj);
 72    }
 73  0 __equalsCalc = obj;
 74  0 boolean _equals;
 75  0 _equals = true &&
 76    ((this.objectName==null && other.getObjectName()==null) ||
 77    (this.objectName!=null &&
 78    this.objectName.equals(other.getObjectName()))) &&
 79    ((this.objectNamespace==null && other.getObjectNamespace()==null) ||
 80    (this.objectNamespace!=null &&
 81    this.objectNamespace.equals(other.getObjectNamespace())));
 82  0 __equalsCalc = null;
 83  0 return _equals;
 84    }
 85   
 86    private boolean __hashCodeCalc = false;
 87  0 public synchronized int hashCode() {
 88  0 if (__hashCodeCalc) {
 89  0 return 0;
 90    }
 91  0 __hashCodeCalc = true;
 92  0 int _hashCode = 1;
 93  0 if (getObjectName() != null) {
 94  0 _hashCode += getObjectName().hashCode();
 95    }
 96  0 if (getObjectNamespace() != null) {
 97  0 _hashCode += getObjectNamespace().hashCode();
 98    }
 99  0 __hashCodeCalc = false;
 100  0 return _hashCode;
 101    }
 102   
 103    // Type metadata
 104    private static org.apache.axis.description.TypeDesc typeDesc =
 105    new org.apache.axis.description.TypeDesc(DeleteObject.class, true);
 106   
 107    static {
 108  0 typeDesc.setXmlType(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casTypes", "deleteObject"));
 109  0 org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
 110  0 elemField.setFieldName("objectName");
 111  0 elemField.setXmlName(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casTypes", "objectName"));
 112  0 elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
 113  0 typeDesc.addFieldDesc(elemField);
 114  0 elemField = new org.apache.axis.description.ElementDesc();
 115  0 elemField.setFieldName("objectNamespace");
 116  0 elemField.setXmlName(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casTypes", "objectNamespace"));
 117  0 elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
 118  0 typeDesc.addFieldDesc(elemField);
 119    }
 120   
 121    /**
 122    * Return type metadata object
 123    */
 124  0 public static org.apache.axis.description.TypeDesc getTypeDesc() {
 125  0 return typeDesc;
 126    }
 127   
 128    /**
 129    * Get Custom Serializer
 130    */
 131  0 public static org.apache.axis.encoding.Serializer getSerializer(
 132    java.lang.String mechType,
 133    java.lang.Class _javaType,
 134    javax.xml.namespace.QName _xmlType) {
 135  0 return
 136    new org.apache.axis.encoding.ser.BeanSerializer(
 137    _javaType, _xmlType, typeDesc);
 138    }
 139   
 140    /**
 141    * Get Custom Deserializer
 142    */
 143  0 public static org.apache.axis.encoding.Deserializer getDeserializer(
 144    java.lang.String mechType,
 145    java.lang.Class _javaType,
 146    javax.xml.namespace.QName _xmlType) {
 147  0 return
 148    new org.apache.axis.encoding.ser.BeanDeserializer(
 149    _javaType, _xmlType, typeDesc);
 150    }
 151   
 152    }