org.oma.protocols.mlp.svc_init.StartTime 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="start_time">
* <xs:complexType>
* <xs:simpleContent>
* <xs:extension base="xs:string">
* <xs:attribute type="xs:string" default="0000" name="utc_off"/>
* </xs:extension>
* </xs:simpleContent>
* </xs:complexType>
* </xs:element>
*
*/
public class StartTime
{
private String string;
private String utcOff;
/**
* 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 'utc_off' attribute value.
*
* @return value
*/
public String getUtcOff() {
return utcOff;
}
/**
* Set the 'utc_off' attribute value.
*
* @param utcOff
*/
public void setUtcOff(String utcOff) {
this.utcOff = utcOff;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy