-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from hannonhill/8.6.0
Updating migration tool for Cascade CMS v8.6
- Loading branch information
Showing
13 changed files
with
5,263 additions
and
7,928 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
src/com/hannonhill/www/ws/ns/AssetOperationService/AuthMode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/** | ||
* AuthMode.java | ||
* | ||
* This file was auto-generated from WSDL | ||
* by the Apache Axis 1.4 Apr 12, 2007 (02:39:05 EDT) WSDL2Java emitter. | ||
*/ | ||
|
||
package com.hannonhill.www.ws.ns.AssetOperationService; | ||
|
||
public class AuthMode implements java.io.Serializable { | ||
private java.lang.String _value_; | ||
private static java.util.HashMap _table_ = new java.util.HashMap(); | ||
|
||
// Constructor | ||
protected AuthMode(java.lang.String value) { | ||
_value_ = value; | ||
_table_.put(_value_,this); | ||
} | ||
|
||
public static final java.lang.String _PASSWORD = "PASSWORD"; | ||
public static final java.lang.String _PUBLIC_KEY = "PUBLIC_KEY"; | ||
public static final AuthMode PASSWORD = new AuthMode(_PASSWORD); | ||
public static final AuthMode PUBLIC_KEY = new AuthMode(_PUBLIC_KEY); | ||
public java.lang.String getValue() { return _value_;} | ||
public static AuthMode fromValue(java.lang.String value) | ||
throws java.lang.IllegalArgumentException { | ||
AuthMode enumeration = (AuthMode) | ||
_table_.get(value); | ||
if (enumeration==null) throw new java.lang.IllegalArgumentException(); | ||
return enumeration; | ||
} | ||
public static AuthMode 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(AuthMode.class); | ||
|
||
static { | ||
typeDesc.setXmlType(new javax.xml.namespace.QName("http://www.hannonhill.com/ws/ns/AssetOperationService", "authMode")); | ||
} | ||
/** | ||
* Return type metadata object | ||
*/ | ||
public static org.apache.axis.description.TypeDesc getTypeDesc() { | ||
return typeDesc; | ||
} | ||
|
||
} |
Oops, something went wrong.