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

com.microsoft.schemas.sharepoint.dsp.ArrayOfServerParameter Maven / Gradle / Ivy

The newest version!
/**
 * ArrayOfServerParameter.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.microsoft.schemas.sharepoint.dsp;

public class ArrayOfServerParameter  implements java.io.Serializable {
    private com.microsoft.schemas.sharepoint.dsp.ServerParameter[] serverParameter;

    public ArrayOfServerParameter() {
    }

    public ArrayOfServerParameter(
           com.microsoft.schemas.sharepoint.dsp.ServerParameter[] serverParameter) {
           this.serverParameter = serverParameter;
    }


    /**
     * Gets the serverParameter value for this ArrayOfServerParameter.
     * 
     * @return serverParameter
     */
    public com.microsoft.schemas.sharepoint.dsp.ServerParameter[] getServerParameter() {
        return serverParameter;
    }


    /**
     * Sets the serverParameter value for this ArrayOfServerParameter.
     * 
     * @param serverParameter
     */
    public void setServerParameter(com.microsoft.schemas.sharepoint.dsp.ServerParameter[] serverParameter) {
        this.serverParameter = serverParameter;
    }

    public com.microsoft.schemas.sharepoint.dsp.ServerParameter getServerParameter(int i) {
        return this.serverParameter[i];
    }

    public void setServerParameter(int i, com.microsoft.schemas.sharepoint.dsp.ServerParameter _value) {
        this.serverParameter[i] = _value;
    }

    private java.lang.Object __equalsCalc = null;
    public synchronized boolean equals(java.lang.Object obj) {
        if (!(obj instanceof ArrayOfServerParameter)) return false;
        ArrayOfServerParameter other = (ArrayOfServerParameter) obj;
        if (obj == null) return false;
        if (this == obj) return true;
        if (__equalsCalc != null) {
            return (__equalsCalc == obj);
        }
        __equalsCalc = obj;
        boolean _equals;
        _equals = true && 
            ((this.serverParameter==null && other.getServerParameter()==null) || 
             (this.serverParameter!=null &&
              java.util.Arrays.equals(this.serverParameter, other.getServerParameter())));
        __equalsCalc = null;
        return _equals;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy