All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oma.protocols.mlp.svc_init.Session Maven / Gradle / Ivy


package org.oma.protocols.mlp.svc_init;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:element xmlns:ns="MLP_SVC_INIT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="session">
 *   <xs:complexType>
 *     <xs:simpleContent>
 *       <xs:extension base="xs:string">
 *         <xs:attribute use="required" name="type">
 *           <xs:simpleType>
 *             <!-- Reference to inner class Type -->
 *           </xs:simpleType>
 *         </xs:attribute>
 *       </xs:extension>
 *     </xs:simpleContent>
 *   </xs:complexType>
 * </xs:element>
 * 
*/ public class Session { private String string; private Type type; /** * Get the extension value. * * @return value */ public String getString() { return string; } /** * Set the extension value. * * @param string */ public void setString(String string) { this.string = string; } /** * Get the 'type' attribute value. * * @return value */ public Type getType() { return type; } /** * Set the 'type' attribute value. * * @param type */ public void setType(Type type) { this.type = type; } /** * Schema fragment(s) for this class: *
     * <xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema">
     *   <xs:restriction base="xs:string">
     *     <xs:enumeration value="APN"/>
     *     <xs:enumeration value="DIAL"/>
     *   </xs:restriction>
     * </xs:simpleType>
     * 
*/ public static enum Type { APN, DIAL } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy