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

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

The newest version!

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="emerep">
 *   <xs:complexType>
 *     <xs:sequence>
 *       <xs:element ref="ns:eme_event"/>
 *     </xs:sequence>
 *     <xs:attribute type="xs:string" fixed="3.0.0" name="ver"/>
 *   </xs:complexType>
 * </xs:element>
 * 
*/ public class Emerep { private EmeEvent emeEvent; private String ver; /** * Get the 'eme_event' element value. * * @return value */ public EmeEvent getEmeEvent() { return emeEvent; } /** * Set the 'eme_event' element value. * * @param emeEvent */ public void setEmeEvent(EmeEvent emeEvent) { this.emeEvent = emeEvent; } /** * 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