Bestand.java
package nl.kadaster.schemas.gds2.afgifte_bestandenlijstresultaat.bestand.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;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>Java class for Bestand complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="Bestand">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="bestandsnaam">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}NCName">
* <maxLength value="297"/>
* <minLength value="1"/>
* </restriction>
* </simpleType>
* </element>
* <element name="bestandsreferentie" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="1024"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Bestand", propOrder = {
"bestandsnaam",
"bestandsreferentie"
})
public class Bestand {
@XmlElement(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String bestandsnaam;
protected String bestandsreferentie;
/**
* Gets the value of the bestandsnaam property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBestandsnaam() {
return bestandsnaam;
}
/**
* Sets the value of the bestandsnaam property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBestandsnaam(String value) {
this.bestandsnaam = value;
}
/**
* Gets the value of the bestandsreferentie property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBestandsreferentie() {
return bestandsreferentie;
}
/**
* Sets the value of the bestandsreferentie property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBestandsreferentie(String value) {
this.bestandsreferentie = value;
}
}