/** * GW__attributesList_Result.java * * This file was auto-generated from WSDL * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. */ package gw; public class GW__attributesList_Result implements java.io.Serializable { private java.lang.String appId; private gw.GW__AttributeListEntry[] attributes; public GW__attributesList_Result() { } public GW__attributesList_Result( java.lang.String appId, gw.GW__AttributeListEntry[] attributes) { this.appId = appId; this.attributes = attributes; } /** * Gets the appId value for this GW__attributesList_Result. * * @return appId */ public java.lang.String getAppId() { return appId; } /** * Sets the appId value for this GW__attributesList_Result. * * @param appId */ public void setAppId(java.lang.String appId) { this.appId = appId; } /** * Gets the attributes value for this GW__attributesList_Result. * * @return attributes */ public gw.GW__AttributeListEntry[] getAttributes() { return attributes; } /** * Sets the attributes value for this GW__attributesList_Result. * * @param attributes */ public void setAttributes(gw.GW__AttributeListEntry[] attributes) { this.attributes = attributes; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof GW__attributesList_Result)) return false; GW__attributesList_Result other = (GW__attributesList_Result) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && ((this.appId==null && other.getAppId()==null) || (this.appId!=null && this.appId.equals(other.getAppId()))) && ((this.attributes==null && other.getAttributes()==null) || (this.attributes!=null && java.util.Arrays.equals(this.attributes, other.getAttributes()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; if (getAppId() != null) { _hashCode += getAppId().hashCode(); } if (getAttributes() != null) { for (int i=0; i