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

org.oma.protocols.mlp.svc_init.Tlrsr 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="tlrsr">
 *   <xs:complexType>
 *     <xs:sequence>
 *       <xs:element ref="ns:req_id"/>
 *     </xs:sequence>
 *     <xs:attribute type="xs:string" fixed="3.0.0" name="ver"/>
 *   </xs:complexType>
 * </xs:element>
 * 
*/ public class Tlrsr { private ReqId reqId; private String ver; /** * Get the 'req_id' element value. * * @return value */ public ReqId getReqId() { return reqId; } /** * Set the 'req_id' element value. * * @param reqId */ public void setReqId(ReqId reqId) { this.reqId = reqId; } /** * Get the 'ver' attribute value. * * @return value */ public String getVer() { return ver; } /** * Set the 'ver' attribute value. * * @param ver */ public void setVer(String ver) { this.ver = ver; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy