/******************************************************************************* * 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 *******************************************************************************/ /** * AbstractRemotePageSummary.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 abstract class AbstractRemotePageSummary implements java.io.Serializable { private long id; private int permissions; private java.lang.String space; private java.lang.String title; private java.lang.String url; public AbstractRemotePageSummary() { } public AbstractRemotePageSummary(long id, int permissions, java.lang.String space, java.lang.String title, java.lang.String url) { this.id = id; this.permissions = permissions; this.space = space; this.title = title; this.url = url; } /** * Gets the id value for this AbstractRemotePageSummary. * * @return id */ public long getId() { return id; } /** * Sets the id value for this AbstractRemotePageSummary. * * @param id */ public void setId(long id) { this.id = id; } /** * Gets the permissions value for this AbstractRemotePageSummary. * * @return permissions */ public int getPermissions() { return permissions; } /** * Sets the permissions value for this AbstractRemotePageSummary. * * @param permissions */ public void setPermissions(int permissions) { this.permissions = permissions; } /** * Gets the space value for this AbstractRemotePageSummary. * * @return space */ public java.lang.String getSpace() { return space; } /** * Sets the space value for this AbstractRemotePageSummary. * * @param space */ public void setSpace(java.lang.String space) { this.space = space; } /** * Gets the title value for this AbstractRemotePageSummary. * * @return title */ public java.lang.String getTitle() { return title; } /** * Sets the title value for this AbstractRemotePageSummary. * * @param title */ public void setTitle(java.lang.String title) { this.title = title; } /** * Gets the url value for this AbstractRemotePageSummary. * * @return url */ public java.lang.String getUrl() { return url; } /** * Sets the url value for this AbstractRemotePageSummary. * * @param url */ public void setUrl(java.lang.String url) { this.url = url; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof AbstractRemotePageSummary)) return false; AbstractRemotePageSummary other = (AbstractRemotePageSummary) 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.permissions == other.getPermissions() && ((this.space == null && other.getSpace() == null) || (this.space != null && this.space.equals(other.getSpace()))) && ((this.title == null && other.getTitle() == null) || (this.title != null && this.title.equals(other.getTitle()))) && ((this.url == null && other.getUrl() == null) || (this.url != null && this.url.equals(other.getUrl()))); __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(); _hashCode += getPermissions(); if (getSpace() != null) { _hashCode += getSpace().hashCode(); } if (getTitle() != null) { _hashCode += getTitle().hashCode(); } if (getUrl() != null) { _hashCode += getUrl().hashCode(); } __hashCodeCalc = false; return _hashCode; } // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc( AbstractRemotePageSummary.class, true); static { typeDesc.setXmlType(new javax.xml.namespace.QName("http://beans.soap.rpc.confluence.atlassian.com", "AbstractRemotePageSummary")); 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("permissions"); elemField.setXmlName(new javax.xml.namespace.QName("", "permissions")); 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("space"); elemField.setXmlName(new javax.xml.namespace.QName("", "space")); 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("title"); elemField.setXmlName(new javax.xml.namespace.QName("", "title")); 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("url"); elemField.setXmlName(new javax.xml.namespace.QName("", "url")); 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); } }