mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
- Simple Ruby web service examples - Outstanding work around persiatancy of models in the repository git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2094 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
239 lines
7.6 KiB
Java
239 lines
7.6 KiB
Java
/**
|
|
* 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 org.alfresco.repo.webservice.action.ActionItemType type;
|
|
private boolean invertCondition;
|
|
private org.alfresco.repo.webservice.types.NamedValue[] parameters;
|
|
|
|
public Condition() {
|
|
}
|
|
|
|
public Condition(
|
|
java.lang.String id,
|
|
org.alfresco.repo.webservice.action.ActionItemType type,
|
|
boolean invertCondition,
|
|
org.alfresco.repo.webservice.types.NamedValue[] parameters) {
|
|
this.id = id;
|
|
this.type = type;
|
|
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 type value for this Condition.
|
|
*
|
|
* @return type
|
|
*/
|
|
public org.alfresco.repo.webservice.action.ActionItemType getType() {
|
|
return type;
|
|
}
|
|
|
|
|
|
/**
|
|
* Sets the type value for this Condition.
|
|
*
|
|
* @param type
|
|
*/
|
|
public void setType(org.alfresco.repo.webservice.action.ActionItemType type) {
|
|
this.type = type;
|
|
}
|
|
|
|
|
|
/**
|
|
* 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.type==null && other.getType()==null) ||
|
|
(this.type!=null &&
|
|
this.type.equals(other.getType()))) &&
|
|
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 (getType() != null) {
|
|
_hashCode += getType().hashCode();
|
|
}
|
|
_hashCode += (isInvertCondition() ? Boolean.TRUE : Boolean.FALSE).hashCode();
|
|
if (getParameters() != null) {
|
|
for (int i=0;
|
|
i<java.lang.reflect.Array.getLength(getParameters());
|
|
i++) {
|
|
java.lang.Object obj = java.lang.reflect.Array.get(getParameters(), i);
|
|
if (obj != null &&
|
|
!obj.getClass().isArray()) {
|
|
_hashCode += obj.hashCode();
|
|
}
|
|
}
|
|
}
|
|
__hashCodeCalc = false;
|
|
return _hashCode;
|
|
}
|
|
|
|
// Type metadata
|
|
private static org.apache.axis.description.TypeDesc typeDesc =
|
|
new org.apache.axis.description.TypeDesc(Condition.class, true);
|
|
|
|
static {
|
|
typeDesc.setXmlType(new javax.xml.namespace.QName("http://www.alfresco.org/ws/service/action/1.0", "Condition"));
|
|
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
|
|
elemField.setFieldName("id");
|
|
elemField.setXmlName(new javax.xml.namespace.QName("http://www.alfresco.org/ws/service/action/1.0", "id"));
|
|
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
|
|
elemField.setNillable(false);
|
|
typeDesc.addFieldDesc(elemField);
|
|
elemField = new org.apache.axis.description.ElementDesc();
|
|
elemField.setFieldName("type");
|
|
elemField.setXmlName(new javax.xml.namespace.QName("http://www.alfresco.org/ws/service/action/1.0", "type"));
|
|
elemField.setXmlType(new javax.xml.namespace.QName("http://www.alfresco.org/ws/service/action/1.0", "ActionItemType"));
|
|
elemField.setNillable(false);
|
|
typeDesc.addFieldDesc(elemField);
|
|
elemField = new org.apache.axis.description.ElementDesc();
|
|
elemField.setFieldName("invertCondition");
|
|
elemField.setXmlName(new javax.xml.namespace.QName("http://www.alfresco.org/ws/service/action/1.0", "invertCondition"));
|
|
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"));
|
|
elemField.setNillable(false);
|
|
typeDesc.addFieldDesc(elemField);
|
|
elemField = new org.apache.axis.description.ElementDesc();
|
|
elemField.setFieldName("parameters");
|
|
elemField.setXmlName(new javax.xml.namespace.QName("http://www.alfresco.org/ws/service/action/1.0", "parameters"));
|
|
elemField.setXmlType(new javax.xml.namespace.QName("http://www.alfresco.org/ws/model/content/1.0", "NamedValue"));
|
|
elemField.setMinOccurs(0);
|
|
elemField.setNillable(true);
|
|
elemField.setMaxOccursUnbounded(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);
|
|
}
|
|
|
|
}
|