org.oma.protocols.mlp.svc_init.MsidRange 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="msid_range">
* <xs:complexType>
* <xs:sequence>
* <xs:element ref="ns:start_msid"/>
* <xs:element ref="ns:stop_msid"/>
* </xs:sequence>
* </xs:complexType>
* </xs:element>
*
*/
public class MsidRange
{
private StartMsid startMsid;
private StopMsid stopMsid;
/**
* Get the 'start_msid' element value.
*
* @return value
*/
public StartMsid getStartMsid() {
return startMsid;
}
/**
* Set the 'start_msid' element value.
*
* @param startMsid
*/
public void setStartMsid(StartMsid startMsid) {
this.startMsid = startMsid;
}
/**
* Get the 'stop_msid' element value.
*
* @return value
*/
public StopMsid getStopMsid() {
return stopMsid;
}
/**
* Set the 'stop_msid' element value.
*
* @param stopMsid
*/
public void setStopMsid(StopMsid stopMsid) {
this.stopMsid = stopMsid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy