org.oma.protocols.mlp.svc_init.RespReq 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="resp_req">
* <xs:complexType>
* <xs:attribute default="DELAY_TOL" name="type">
* <xs:simpleType>
* <!-- Reference to inner class Type -->
* </xs:simpleType>
* </xs:attribute>
* </xs:complexType>
* </xs:element>
*
*/
public class RespReq
{
private Type type;
/**
* Get the 'type' attribute value.
*
* @return value
*/
public Type getType() {
return type;
}
/**
* Set the 'type' attribute value.
*
* @param type
*/
public void setType(Type type) {
this.type = type;
}
/**
* Schema fragment(s) for this class:
*
* <xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema">
* <xs:restriction base="xs:string">
* <xs:enumeration value="NO_DELAY"/>
* <xs:enumeration value="LOW_DELAY"/>
* <xs:enumeration value="DELAY_TOL"/>
* </xs:restriction>
* </xs:simpleType>
*
*/
public static enum Type {
NO_DELAY, LOW_DELAY, DELAY_TOL
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy