/** * Condition.java * * This file was auto-generated from WSDL * by the Apache Axis 1.2.1 Jun 14, 2005 (09:15:57 EDT) WSDL2Java emitter. */ package org.alfresco.repo.webservice.action; public class Condition implements java.io.Serializable { private java.lang.String id; private java.lang.String conditionName; private boolean invertCondition; private org.alfresco.repo.webservice.types.NamedValue[] parameters; public Condition() { } public Condition( java.lang.String id, java.lang.String conditionName, boolean invertCondition, org.alfresco.repo.webservice.types.NamedValue[] parameters) { this.id = id; this.conditionName = conditionName; this.invertCondition = invertCondition; this.parameters = parameters; } /** * Gets the id value for this Condition. * * @return id */ public java.lang.String getId() { return id; } /** * Sets the id value for this Condition. * * @param id */ public void setId(java.lang.String id) { this.id = id; } /** * Gets the conditionName value for this Condition. * * @return conditionName */ public java.lang.String getConditionName() { return conditionName; } /** * Sets the conditionName value for this Condition. * * @param conditionName */ public void setConditionName(java.lang.String conditionName) { this.conditionName = conditionName; } /** * Gets the invertCondition value for this Condition. * * @return invertCondition */ public boolean isInvertCondition() { return invertCondition; } /** * Sets the invertCondition value for this Condition. * * @param invertCondition */ public void setInvertCondition(boolean invertCondition) { this.invertCondition = invertCondition; } /** * Gets the parameters value for this Condition. * * @return parameters */ public org.alfresco.repo.webservice.types.NamedValue[] getParameters() { return parameters; } /** * Sets the parameters value for this Condition. * * @param parameters */ public void setParameters(org.alfresco.repo.webservice.types.NamedValue[] parameters) { this.parameters = parameters; } public org.alfresco.repo.webservice.types.NamedValue getParameters(int i) { return this.parameters[i]; } public void setParameters(int i, org.alfresco.repo.webservice.types.NamedValue _value) { this.parameters[i] = _value; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof Condition)) return false; Condition other = (Condition) 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==null && other.getId()==null) || (this.id!=null && this.id.equals(other.getId()))) && ((this.conditionName==null && other.getConditionName()==null) || (this.conditionName!=null && this.conditionName.equals(other.getConditionName()))) && this.invertCondition == other.isInvertCondition() && ((this.parameters==null && other.getParameters()==null) || (this.parameters!=null && java.util.Arrays.equals(this.parameters, other.getParameters()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; if (getId() != null) { _hashCode += getId().hashCode(); } if (getConditionName() != null) { _hashCode += getConditionName().hashCode(); } _hashCode += (isInvertCondition() ? Boolean.TRUE : Boolean.FALSE).hashCode(); if (getParameters() != null) { for (int i=0; i