org.oma.protocols.mlp.svc_init.Esrk 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="esrk">
* <xs:complexType>
* <xs:simpleContent>
* <xs:extension base="xs:string">
* <xs:attribute default="NA" name="type">
* <xs:simpleType>
* <!-- Reference to inner class Type -->
* </xs:simpleType>
* </xs:attribute>
* </xs:extension>
* </xs:simpleContent>
* </xs:complexType>
* </xs:element>
*
*/
public class Esrk
{
private String string;
private Type type;
/**
* 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 '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="NA"/>
* </xs:restriction>
* </xs:simpleType>
*
*/
public static enum Type {
NA
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy