All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.atlassian.confluence.rpc.soap.beans.RemoteContentSummaries Maven / Gradle / Ivy

/**
 * RemoteContentSummaries.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 RemoteContentSummaries  implements java.io.Serializable {
    private com.atlassian.confluence.rpc.soap.beans.RemoteContentSummary[] content;

    private int offset;

    private int totalAvailable;

    public RemoteContentSummaries() {
    }

    public RemoteContentSummaries(
           com.atlassian.confluence.rpc.soap.beans.RemoteContentSummary[] content,
           int offset,
           int totalAvailable) {
           this.content = content;
           this.offset = offset;
           this.totalAvailable = totalAvailable;
    }


    /**
     * Gets the content value for this RemoteContentSummaries.
     * 
     * @return content
     */
    public com.atlassian.confluence.rpc.soap.beans.RemoteContentSummary[] getContent() {
        return content;
    }


    /**
     * Sets the content value for this RemoteContentSummaries.
     * 
     * @param content
     */
    public void setContent(com.atlassian.confluence.rpc.soap.beans.RemoteContentSummary[] content) {
        this.content = content;
    }


    /**
     * Gets the offset value for this RemoteContentSummaries.
     * 
     * @return offset
     */
    public int getOffset() {
        return offset;
    }


    /**
     * Sets the offset value for this RemoteContentSummaries.
     * 
     * @param offset
     */
    public void setOffset(int offset) {
        this.offset = offset;
    }


    /**
     * Gets the totalAvailable value for this RemoteContentSummaries.
     * 
     * @return totalAvailable
     */
    public int getTotalAvailable() {
        return totalAvailable;
    }


    /**
     * Sets the totalAvailable value for this RemoteContentSummaries.
     * 
     * @param totalAvailable
     */
    public void setTotalAvailable(int totalAvailable) {
        this.totalAvailable = totalAvailable;
    }

    private java.lang.Object __equalsCalc = null;
    public synchronized boolean equals(java.lang.Object obj) {
        if (!(obj instanceof RemoteContentSummaries)) return false;
        RemoteContentSummaries other = (RemoteContentSummaries) obj;
        if (obj == null) return false;
        if (this == obj) return true;
        if (__equalsCalc != null) {
            return (__equalsCalc == obj);
        }
        __equalsCalc = obj;
        boolean _equals;
        _equals = true && 
            ((this.content==null && other.getContent()==null) || 
             (this.content!=null &&
              java.util.Arrays.equals(this.content, other.getContent()))) &&
            this.offset == other.getOffset() &&
            this.totalAvailable == other.getTotalAvailable();
        __equalsCalc = null;
        return _equals;
    }

    private boolean __hashCodeCalc = false;
    public synchronized int hashCode() {
        if (__hashCodeCalc) {
            return 0;
        }
        __hashCodeCalc = true;
        int _hashCode = 1;
        if (getContent() != null) {
            for (int i=0;
                 i




© 2015 - 2025 Weber Informatics LLC | Privacy Policy