CAS Unit Tests
Clover coverage report - CAS Unit Tests
Coverage timestamp: Mon Jul 4 2005 18:13:17 CDT
file stats: LOC: 220   Methods: 15
NCLOC: 136   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ManageObjectGroups.java 0% 0% 0% 0%
coverage
 1    /**
 2    * ManageObjectGroups.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 ManageObjectGroups implements java.io.Serializable {
 11    private java.lang.String requestType;
 12    private java.lang.String groupName;
 13    private java.lang.String objectSpec;
 14    private java.lang.String objectSpecDesc;
 15   
 16  0 public ManageObjectGroups() {
 17    }
 18   
 19  0 public ManageObjectGroups(
 20    java.lang.String groupName,
 21    java.lang.String objectSpec,
 22    java.lang.String objectSpecDesc,
 23    java.lang.String requestType) {
 24  0 this.requestType = requestType;
 25  0 this.groupName = groupName;
 26  0 this.objectSpec = objectSpec;
 27  0 this.objectSpecDesc = objectSpecDesc;
 28    }
 29   
 30   
 31    /**
 32    * Gets the requestType value for this ManageObjectGroups.
 33    *
 34    * @return requestType
 35    */
 36  0 public java.lang.String getRequestType() {
 37  0 return requestType;
 38    }
 39   
 40   
 41    /**
 42    * Sets the requestType value for this ManageObjectGroups.
 43    *
 44    * @param requestType
 45    */
 46  0 public void setRequestType(java.lang.String requestType) {
 47  0 this.requestType = requestType;
 48    }
 49   
 50   
 51    /**
 52    * Gets the groupName value for this ManageObjectGroups.
 53    *
 54    * @return groupName
 55    */
 56  0 public java.lang.String getGroupName() {
 57  0 return groupName;
 58    }
 59   
 60   
 61    /**
 62    * Sets the groupName value for this ManageObjectGroups.
 63    *
 64    * @param groupName
 65    */
 66  0 public void setGroupName(java.lang.String groupName) {
 67  0 this.groupName = groupName;
 68    }
 69   
 70   
 71    /**
 72    * Gets the objectSpec value for this ManageObjectGroups.
 73    *
 74    * @return objectSpec
 75    */
 76  0 public java.lang.String getObjectSpec() {
 77  0 return objectSpec;
 78    }
 79   
 80   
 81    /**
 82    * Sets the objectSpec value for this ManageObjectGroups.
 83    *
 84    * @param objectSpec
 85    */
 86  0 public void setObjectSpec(java.lang.String objectSpec) {
 87  0 this.objectSpec = objectSpec;
 88    }
 89   
 90   
 91    /**
 92    * Gets the objectSpecDesc value for this ManageObjectGroups.
 93    *
 94    * @return objectSpecDesc
 95    */
 96  0 public java.lang.String getObjectSpecDesc() {
 97  0 return objectSpecDesc;
 98    }
 99   
 100   
 101    /**
 102    * Sets the objectSpecDesc value for this ManageObjectGroups.
 103    *
 104    * @param objectSpecDesc
 105    */
 106  0 public void setObjectSpecDesc(java.lang.String objectSpecDesc) {
 107  0 this.objectSpecDesc = objectSpecDesc;
 108    }
 109   
 110    private java.lang.Object __equalsCalc = null;
 111  0 public synchronized boolean equals(java.lang.Object obj) {
 112  0 if (!(obj instanceof ManageObjectGroups)) return false;
 113  0 ManageObjectGroups other = (ManageObjectGroups) obj;
 114  0 if (obj == null) return false;
 115  0 if (this == obj) return true;
 116  0 if (__equalsCalc != null) {
 117  0 return (__equalsCalc == obj);
 118    }
 119  0 __equalsCalc = obj;
 120  0 boolean _equals;
 121  0 _equals = true &&
 122    ((this.requestType==null && other.getRequestType()==null) ||
 123    (this.requestType!=null &&
 124    this.requestType.equals(other.getRequestType()))) &&
 125    ((this.groupName==null && other.getGroupName()==null) ||
 126    (this.groupName!=null &&
 127    this.groupName.equals(other.getGroupName()))) &&
 128    ((this.objectSpec==null && other.getObjectSpec()==null) ||
 129    (this.objectSpec!=null &&
 130    this.objectSpec.equals(other.getObjectSpec()))) &&
 131    ((this.objectSpecDesc==null && other.getObjectSpecDesc()==null) ||
 132    (this.objectSpecDesc!=null &&
 133    this.objectSpecDesc.equals(other.getObjectSpecDesc())));
 134  0 __equalsCalc = null;
 135  0 return _equals;
 136    }
 137   
 138    private boolean __hashCodeCalc = false;
 139  0 public synchronized int hashCode() {
 140  0 if (__hashCodeCalc) {
 141  0 return 0;
 142    }
 143  0 __hashCodeCalc = true;
 144  0 int _hashCode = 1;
 145  0 if (getRequestType() != null) {
 146  0 _hashCode += getRequestType().hashCode();
 147    }
 148  0 if (getGroupName() != null) {
 149  0 _hashCode += getGroupName().hashCode();
 150    }
 151  0 if (getObjectSpec() != null) {
 152  0 _hashCode += getObjectSpec().hashCode();
 153    }
 154  0 if (getObjectSpecDesc() != null) {
 155  0 _hashCode += getObjectSpecDesc().hashCode();
 156    }
 157  0 __hashCodeCalc = false;
 158  0 return _hashCode;
 159    }
 160   
 161    // Type metadata
 162    private static org.apache.axis.description.TypeDesc typeDesc =
 163    new org.apache.axis.description.TypeDesc(ManageObjectGroups.class, true);
 164   
 165    static {
 166  0 typeDesc.setXmlType(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casTypes", "manageObjectGroups"));
 167  0 org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
 168  0 elemField.setFieldName("requestType");
 169  0 elemField.setXmlName(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casTypes", "requestType"));
 170  0 elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
 171  0 typeDesc.addFieldDesc(elemField);
 172  0 elemField = new org.apache.axis.description.ElementDesc();
 173  0 elemField.setFieldName("groupName");
 174  0 elemField.setXmlName(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casTypes", "groupName"));
 175  0 elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
 176  0 typeDesc.addFieldDesc(elemField);
 177  0 elemField = new org.apache.axis.description.ElementDesc();
 178  0 elemField.setFieldName("objectSpec");
 179  0 elemField.setXmlName(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casTypes", "objectSpec"));
 180  0 elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
 181  0 typeDesc.addFieldDesc(elemField);
 182  0 elemField = new org.apache.axis.description.ElementDesc();
 183  0 elemField.setFieldName("objectSpecDesc");
 184  0 elemField.setXmlName(new javax.xml.namespace.QName("http://www.globus.org/07/2004/cas/casTypes", "objectSpecDesc"));
 185  0 elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
 186  0 typeDesc.addFieldDesc(elemField);
 187    }
 188   
 189    /**
 190    * Return type metadata object
 191    */
 192  0 public static org.apache.axis.description.TypeDesc getTypeDesc() {
 193  0 return typeDesc;
 194    }
 195   
 196    /**
 197    * Get Custom Serializer
 198    */
 199  0 public static org.apache.axis.encoding.Serializer getSerializer(
 200    java.lang.String mechType,
 201    java.lang.Class _javaType,
 202    javax.xml.namespace.QName _xmlType) {
 203  0 return
 204    new org.apache.axis.encoding.ser.BeanSerializer(
 205    _javaType, _xmlType, typeDesc);
 206    }
 207   
 208    /**
 209    * Get Custom Deserializer
 210    */
 211  0 public static org.apache.axis.encoding.Deserializer getDeserializer(
 212    java.lang.String mechType,
 213    java.lang.Class _javaType,
 214    javax.xml.namespace.QName _xmlType) {
 215  0 return
 216    new org.apache.axis.encoding.ser.BeanDeserializer(
 217    _javaType, _xmlType, typeDesc);
 218    }
 219   
 220    }