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

org.oma.protocols.mlp.svc_result.Subclient Maven / Gradle / Ivy


package org.oma.protocols.mlp.svc_result;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:element xmlns:ns="MLP_SVC_RESULT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="subclient">
 *   <xs:complexType>
 *     <xs:sequence>
 *       <xs:element ref="ns:id"/>
 *       <xs:element ref="ns:pwd" minOccurs="0"/>
 *       <xs:element ref="ns:serviceid" minOccurs="0"/>
 *     </xs:sequence>
 *     <xs:attribute default="NO" name="last_client">
 *       <xs:simpleType>
 *         <!-- Reference to inner class LastClient -->
 *       </xs:simpleType>
 *     </xs:attribute>
 *   </xs:complexType>
 * </xs:element>
 * 
*/ public class Subclient { private Id id; private Pwd pwd; private Serviceid serviceid; private LastClient lastClient; /** * Get the 'id' element value. * * @return value */ public Id getId() { return id; } /** * Set the 'id' element value. * * @param id */ public void setId(Id id) { this.id = id; } /** * Get the 'pwd' element value. * * @return value */ public Pwd getPwd() { return pwd; } /** * Set the 'pwd' element value. * * @param pwd */ public void setPwd(Pwd pwd) { this.pwd = pwd; } /** * Get the 'serviceid' element value. * * @return value */ public Serviceid getServiceid() { return serviceid; } /** * Set the 'serviceid' element value. * * @param serviceid */ public void setServiceid(Serviceid serviceid) { this.serviceid = serviceid; } /** * Get the 'last_client' attribute value. * * @return value */ public LastClient getLastClient() { return lastClient; } /** * Set the 'last_client' attribute value. * * @param lastClient */ public void setLastClient(LastClient lastClient) { this.lastClient = lastClient; } /** * Schema fragment(s) for this class: *
     * <xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema">
     *   <xs:restriction base="xs:string">
     *     <xs:enumeration value="YES"/>
     *     <xs:enumeration value="NO"/>
     *   </xs:restriction>
     * </xs:simpleType>
     * 
*/ public static enum LastClient { YES, NO } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy