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>
 * &lt;complexType name="SorteringType"&gt;
 *   &lt;complexContent&gt;
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
 *       &lt;sequence&gt;
 *         &lt;element name="Kolom"&gt;
 *           &lt;simpleType&gt;
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
 *               &lt;minLength value="1"/&gt;
 *               &lt;maxLength value="20"/&gt;
 *             &lt;/restriction&gt;
 *           &lt;/simpleType&gt;
 *         &lt;/element&gt;
 *         &lt;element name="Volgorde"&gt;
 *           &lt;simpleType&gt;
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
 *               &lt;enumeration value="ASC"/&gt;
 *               &lt;enumeration value="DESC"/&gt;
 *             &lt;/restriction&gt;
 *           &lt;/simpleType&gt;
 *         &lt;/element&gt;
 *       &lt;/sequence&gt;
 *     &lt;/restriction&gt;
 *   &lt;/complexContent&gt;
 * &lt;/complexType&gt;
 * </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;
    }

}