Melding.java
package nl.kadaster.schemas.generiek_extern.procesresultaat.v20110922;
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 Melding complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="Melding">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element ref="{http://www.kadaster.nl/schemas/generiek-extern/procesresultaat/v20110922}SeverityCode"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Melding", propOrder = {
"code",
"omschrijving",
"severityCode"
})
public class Melding {
@XmlElement(required = true)
protected String code;
@XmlElement(required = true)
protected String omschrijving;
@XmlElement(name = "SeverityCode", required = true, defaultValue = "INFO")
protected String severityCode;
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
/**
* Gets the value of the omschrijving property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOmschrijving() {
return omschrijving;
}
/**
* Sets the value of the omschrijving property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOmschrijving(String value) {
this.omschrijving = value;
}
/**
* Dit element is een bouwsteen, welke gebruikt kan worden om de ernst van een fout aan te geven. De standaard classificaties worden gebruikt (in aflopende volgorde van ernst): SECURITY, FATAL, ERROR, WARNING, INFO. De default is INFO.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSeverityCode() {
return severityCode;
}
/**
* Sets the value of the severityCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSeverityCode(String value) {
this.severityCode = value;
}
}