mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2148 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
71 lines
2.6 KiB
Java
71 lines
2.6 KiB
Java
/**
|
|
* AccessState.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.accesscontrol;
|
|
|
|
public class AccessState implements java.io.Serializable {
|
|
private java.lang.String _value_;
|
|
private static java.util.HashMap _table_ = new java.util.HashMap();
|
|
|
|
// Constructor
|
|
protected AccessState(java.lang.String value) {
|
|
_value_ = value;
|
|
_table_.put(_value_,this);
|
|
}
|
|
|
|
public static final java.lang.String _acepted = "acepted";
|
|
public static final java.lang.String _declined = "declined";
|
|
public static final AccessState acepted = new AccessState(_acepted);
|
|
public static final AccessState declined = new AccessState(_declined);
|
|
public java.lang.String getValue() { return _value_;}
|
|
public static AccessState fromValue(java.lang.String value)
|
|
throws java.lang.IllegalArgumentException {
|
|
AccessState enumeration = (AccessState)
|
|
_table_.get(value);
|
|
if (enumeration==null) throw new java.lang.IllegalArgumentException();
|
|
return enumeration;
|
|
}
|
|
public static AccessState fromString(java.lang.String value)
|
|
throws java.lang.IllegalArgumentException {
|
|
return fromValue(value);
|
|
}
|
|
public boolean equals(java.lang.Object obj) {return (obj == this);}
|
|
public int hashCode() { return toString().hashCode();}
|
|
public java.lang.String toString() { return _value_;}
|
|
public java.lang.Object readResolve() throws java.io.ObjectStreamException { return fromValue(_value_);}
|
|
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.EnumSerializer(
|
|
_javaType, _xmlType);
|
|
}
|
|
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.EnumDeserializer(
|
|
_javaType, _xmlType);
|
|
}
|
|
// Type metadata
|
|
private static org.apache.axis.description.TypeDesc typeDesc =
|
|
new org.apache.axis.description.TypeDesc(AccessState.class);
|
|
|
|
static {
|
|
typeDesc.setXmlType(new javax.xml.namespace.QName("http://www.alfresco.org/ws/service/accesscontrol/1.0", "AccessState"));
|
|
}
|
|
/**
|
|
* Return type metadata object
|
|
*/
|
|
public static org.apache.axis.description.TypeDesc getTypeDesc() {
|
|
return typeDesc;
|
|
}
|
|
|
|
}
|