/** * Permissions.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.exist.soap; import org.exist.Namespaces; public class Permissions implements java.io.Serializable { private java.lang.String owner; private java.lang.String group; private int permissions; public Permissions() { } public Permissions( java.lang.String owner, java.lang.String group, int permissions) { this.owner = owner; this.group = group; this.permissions = permissions; } /** * Gets the owner value for this Permissions. * * @return owner */ public java.lang.String getOwner() { return owner; } /** * Sets the owner value for this Permissions. * * @param owner */ public void setOwner(java.lang.String owner) { this.owner = owner; } /** * Gets the group value for this Permissions. * * @return group */ public java.lang.String getGroup() { return group; } /** * Sets the group value for this Permissions. * * @param group */ public void setGroup(java.lang.String group) { this.group = group; } /** * Gets the permissions value for this Permissions. * * @return permissions */ public int getPermissions() { return permissions; } /** * Sets the permissions value for this Permissions. * * @param permissions */ public void setPermissions(int permissions) { this.permissions = permissions; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof Permissions)) return false; Permissions other = (Permissions) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && ((this.owner==null && other.getOwner()==null) || (this.owner!=null && this.owner.equals(other.getOwner()))) && ((this.group==null && other.getGroup()==null) || (this.group!=null && this.group.equals(other.getGroup()))) && this.permissions == other.getPermissions(); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; if (getOwner() != null) { _hashCode += getOwner().hashCode(); } if (getGroup() != null) { _hashCode += getGroup().hashCode(); } _hashCode += getPermissions(); __hashCodeCalc = false; return _hashCode; } // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(Permissions.class, true); static { typeDesc.setXmlType(new javax.xml.namespace.QName("urn:exist", "Permissions")); org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("owner"); elemField.setXmlName(new javax.xml.namespace.QName("urn:exist", "owner")); elemField.setXmlType(new javax.xml.namespace.QName(Namespaces.SCHEMA_NS, "string")); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("group"); elemField.setXmlName(new javax.xml.namespace.QName("urn:exist", "group")); elemField.setXmlType(new javax.xml.namespace.QName(Namespaces.SCHEMA_NS, "string")); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("permissions"); elemField.setXmlName(new javax.xml.namespace.QName("urn:exist", "permissions")); elemField.setXmlType(new javax.xml.namespace.QName(Namespaces.SCHEMA_NS, "int")); elemField.setNillable(false); 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); } }