SorteringType.java
package nl.kadaster.schemas.gds2.afgifte_proces.v20170401;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for SorteringType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="SorteringType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Kolom">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="20"/>
* </restriction>
* </simpleType>
* </element>
* <element name="Volgorde">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ASC"/>
* <enumeration value="DESC"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SorteringType", propOrder = {
"kolom",
"volgorde"
})
public class SorteringType {
@XmlElement(name = "Kolom", required = true)
protected String kolom;
@XmlElement(name = "Volgorde", required = true)
protected String volgorde;
/**
* Gets the value of the kolom property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKolom() {
return kolom;
}
/**
* Sets the value of the kolom property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKolom(String value) {
this.kolom = value;
}
/**
* Gets the value of the volgorde property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVolgorde() {
return volgorde;
}
/**
* Sets the value of the volgorde property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVolgorde(String value) {
this.volgorde = value;
}
}