org.oma.protocols.mlp.svc_result.Prio Maven / Gradle / Ivy
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="prio">
* <xs:complexType>
* <xs:attribute default="NORMAL" name="type">
* <xs:simpleType>
* <!-- Reference to inner class Type -->
* </xs:simpleType>
* </xs:attribute>
* </xs:complexType>
* </xs:element>
*
*/
public class Prio
{
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="NORMAL"/>
* <xs:enumeration value="HIGH"/>
* </xs:restriction>
* </xs:simpleType>
*
*/
public static enum Type {
NORMAL, HIGH
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy