/** * Project.java * * This file was auto-generated from WSDL * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. */ package com.borland.sctm.ws.administration.entities; public class Project extends com.borland.sctm.ws.administration.entities.NamedEntity implements java.io.Serializable { private boolean active; private int[] appModuleIds; public Project() { } public Project( int id, java.lang.String name, java.lang.String description, boolean active, int[] appModuleIds) { super( id, name, description); this.active = active; this.appModuleIds = appModuleIds; } /** * Gets the active value for this Project. * * @return active */ public boolean isActive() { return active; } /** * Sets the active value for this Project. * * @param active */ public void setActive(boolean active) { this.active = active; } /** * Gets the appModuleIds value for this Project. * * @return appModuleIds */ public int[] getAppModuleIds() { return appModuleIds; } /** * Sets the appModuleIds value for this Project. * * @param appModuleIds */ public void setAppModuleIds(int[] appModuleIds) { this.appModuleIds = appModuleIds; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof Project)) return false; Project other = (Project) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = super.equals(obj) && this.active == other.isActive() && ((this.appModuleIds==null && other.getAppModuleIds()==null) || (this.appModuleIds!=null && java.util.Arrays.equals(this.appModuleIds, other.getAppModuleIds()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = super.hashCode(); _hashCode += (isActive() ? Boolean.TRUE : Boolean.FALSE).hashCode(); if (getAppModuleIds() != null) { for (int i=0; i<java.lang.reflect.Array.getLength(getAppModuleIds()); i++) { java.lang.Object obj = java.lang.reflect.Array.get(getAppModuleIds(), i); if (obj != null && !obj.getClass().isArray()) { _hashCode += obj.hashCode(); } } } __hashCodeCalc = false; return _hashCode; } // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(Project.class, true); static { typeDesc.setXmlType(new javax.xml.namespace.QName("http://scc.segue.com", "Project")); org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("active"); elemField.setXmlName(new javax.xml.namespace.QName("", "active")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean")); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("appModuleIds"); elemField.setXmlName(new javax.xml.namespace.QName("", "appModuleIds")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int")); elemField.setNillable(true); typeDesc.addFieldDesc(elemField); } /** * Return type metadata object */ public static org.apache.axis.description.TypeDesc getTypeDesc() { return typeDesc; } /** * Get Custom Serializer */ public static org.apache.axis.encoding.Serializer getSerializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanSerializer( _javaType, _xmlType, typeDesc); } /** * Get Custom Deserializer */ public static org.apache.axis.encoding.Deserializer getDeserializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanDeserializer( _javaType, _xmlType, typeDesc); } }