/** * BuildingInfo.java * * This file was auto-generated from WSDL * by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter. */ package is.idega.idegaweb.campus.webservice.building.client; public class BuildingInfo implements java.io.Serializable { private java.lang.String address; private java.lang.String englishInfo; private int id; private java.lang.String info; private java.lang.String name; public BuildingInfo() { } public BuildingInfo( java.lang.String address, java.lang.String englishInfo, int id, java.lang.String info, java.lang.String name) { this.address = address; this.englishInfo = englishInfo; this.id = id; this.info = info; this.name = name; } /** * Gets the address value for this BuildingInfo. * * @return address */ public java.lang.String getAddress() { return address; } /** * Sets the address value for this BuildingInfo. * * @param address */ public void setAddress(java.lang.String address) { this.address = address; } /** * Gets the englishInfo value for this BuildingInfo. * * @return englishInfo */ public java.lang.String getEnglishInfo() { return englishInfo; } /** * Sets the englishInfo value for this BuildingInfo. * * @param englishInfo */ public void setEnglishInfo(java.lang.String englishInfo) { this.englishInfo = englishInfo; } /** * Gets the id value for this BuildingInfo. * * @return id */ public int getId() { return id; } /** * Sets the id value for this BuildingInfo. * * @param id */ public void setId(int id) { this.id = id; } /** * Gets the info value for this BuildingInfo. * * @return info */ public java.lang.String getInfo() { return info; } /** * Sets the info value for this BuildingInfo. * * @param info */ public void setInfo(java.lang.String info) { this.info = info; } /** * Gets the name value for this BuildingInfo. * * @return name */ public java.lang.String getName() { return name; } /** * Sets the name value for this BuildingInfo. * * @param name */ public void setName(java.lang.String name) { this.name = name; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof BuildingInfo)) return false; BuildingInfo other = (BuildingInfo) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && ((this.address==null && other.getAddress()==null) || (this.address!=null && this.address.equals(other.getAddress()))) && ((this.englishInfo==null && other.getEnglishInfo()==null) || (this.englishInfo!=null && this.englishInfo.equals(other.getEnglishInfo()))) && this.id == other.getId() && ((this.info==null && other.getInfo()==null) || (this.info!=null && this.info.equals(other.getInfo()))) && ((this.name==null && other.getName()==null) || (this.name!=null && this.name.equals(other.getName()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; if (getAddress() != null) { _hashCode += getAddress().hashCode(); } if (getEnglishInfo() != null) { _hashCode += getEnglishInfo().hashCode(); } _hashCode += getId(); if (getInfo() != null) { _hashCode += getInfo().hashCode(); } if (getName() != null) { _hashCode += getName().hashCode(); } __hashCodeCalc = false; return _hashCode; } // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(BuildingInfo.class, true); static { typeDesc.setXmlType(new javax.xml.namespace.QName("urn:buildingservice", "BuildingInfo")); org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("address"); elemField.setXmlName(new javax.xml.namespace.QName("", "address")); elemField.setXmlType(new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/encoding/", "string")); elemField.setNillable(true); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("englishInfo"); elemField.setXmlName(new javax.xml.namespace.QName("", "englishInfo")); elemField.setXmlType(new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/encoding/", "string")); elemField.setNillable(true); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("id"); elemField.setXmlName(new javax.xml.namespace.QName("", "id")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int")); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("info"); elemField.setXmlName(new javax.xml.namespace.QName("", "info")); elemField.setXmlType(new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/encoding/", "string")); elemField.setNillable(true); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("name"); elemField.setXmlName(new javax.xml.namespace.QName("", "name")); elemField.setXmlType(new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/encoding/", "string")); 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); } }