/******************************************************************************* * Copyright (c) 2006-2010 eBay Inc. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *******************************************************************************/ /** * RemoteLabel.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.atlassian.confluence.rpc.soap.beans; public class RemoteLabel implements java.io.Serializable { private long id; private java.lang.String name; private java.lang.String namespace; private java.lang.String owner; public RemoteLabel() { } public RemoteLabel(long id, java.lang.String name, java.lang.String namespace, java.lang.String owner) { this.id = id; this.name = name; this.namespace = namespace; this.owner = owner; } /** * Gets the id value for this RemoteLabel. * * @return id */ public long getId() { return id; } /** * Sets the id value for this RemoteLabel. * * @param id */ public void setId(long id) { this.id = id; } /** * Gets the name value for this RemoteLabel. * * @return name */ public java.lang.String getName() { return name; } /** * Sets the name value for this RemoteLabel. * * @param name */ public void setName(java.lang.String name) { this.name = name; } /** * Gets the namespace value for this RemoteLabel. * * @return namespace */ public java.lang.String getNamespace() { return namespace; } /** * Sets the namespace value for this RemoteLabel. * * @param namespace */ public void setNamespace(java.lang.String namespace) { this.namespace = namespace; } /** * Gets the owner value for this RemoteLabel. * * @return owner */ public java.lang.String getOwner() { return owner; } /** * Sets the owner value for this RemoteLabel. * * @param owner */ public void setOwner(java.lang.String owner) { this.owner = owner; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof RemoteLabel)) return false; RemoteLabel other = (RemoteLabel) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && this.id == other.getId() && ((this.name == null && other.getName() == null) || (this.name != null && this.name.equals(other.getName()))) && ((this.namespace == null && other.getNamespace() == null) || (this.namespace != null && this.namespace.equals(other.getNamespace()))) && ((this.owner == null && other.getOwner() == null) || (this.owner != null && this.owner.equals(other.getOwner()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; _hashCode += new Long(getId()).hashCode(); if (getName() != null) { _hashCode += getName().hashCode(); } if (getNamespace() != null) { _hashCode += getNamespace().hashCode(); } if (getOwner() != null) { _hashCode += getOwner().hashCode(); } __hashCodeCalc = false; return _hashCode; } // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc( RemoteLabel.class, true); static { typeDesc.setXmlType(new javax.xml.namespace.QName("http://beans.soap.rpc.confluence.atlassian.com", "RemoteLabel")); org.apache.axis.description.ElementDesc 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", "long")); elemField.setNillable(false); 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://www.w3.org/2001/XMLSchema", "string")); elemField.setNillable(true); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("namespace"); elemField.setXmlName(new javax.xml.namespace.QName("", "namespace")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); elemField.setNillable(true); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("owner"); elemField.setXmlName(new javax.xml.namespace.QName("", "owner")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "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); } }