BestandKenmerkenType.java
package nl.kadaster.schemas.gds2.afgifte_bestandenlijstselectie.v20170401;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for BestandKenmerkenType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="BestandKenmerkenType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="contractnummer" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="10"/>
* </restriction>
* </simpleType>
* </element>
* <element name="artikelnummer" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="20"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BestandKenmerkenType", propOrder = {
"contractnummer",
"artikelnummer"
})
public class BestandKenmerkenType {
protected String contractnummer;
protected String artikelnummer;
/**
* Gets the value of the contractnummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContractnummer() {
return contractnummer;
}
/**
* Sets the value of the contractnummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContractnummer(String value) {
this.contractnummer = value;
}
/**
* Gets the value of the artikelnummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArtikelnummer() {
return artikelnummer;
}
/**
* Sets the value of the artikelnummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArtikelnummer(String value) {
this.artikelnummer = value;
}
}