Class ProcesVerwerking
- java.lang.Object
-
- nl.kadaster.schemas.generiek_extern.procesresultaat.v20110922.ProcesVerwerking
-
public class ProcesVerwerking extends Object
Java class for ProcesVerwerking complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ProcesVerwerking"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.kadaster.nl/schemas/generiek-extern/procesresultaat/v20110922}ProcesVerwerkingCode"/> <element ref="{http://www.kadaster.nl/schemas/generiek-extern/procesresultaat/v20110922}SeverityCode"/> <element ref="{http://www.kadaster.nl/schemas/generiek-extern/procesresultaat/v20110922}Melding" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Melding>
melding
protected String
procesVerwerkingCode
protected String
severityCode
-
Constructor Summary
Constructors Constructor Description ProcesVerwerking()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Melding>
getMelding()
Dit element is een bouwsteen, welke gebruikt kan worden om een melding, in het bijzonder een foutmelding, terug te koppelen.String
getProcesVerwerkingCode()
Gets the value of the procesVerwerkingCode property.String
getSeverityCode()
Dit element is een bouwsteen, welke gebruikt kan worden om de ernst van een fout aan te geven.void
setProcesVerwerkingCode(String value)
Sets the value of the procesVerwerkingCode property.void
setSeverityCode(String value)
Sets the value of the severityCode property.
-
-
-
Method Detail
-
getProcesVerwerkingCode
public String getProcesVerwerkingCode()
Gets the value of the procesVerwerkingCode property.- Returns:
- possible object is
String
-
setProcesVerwerkingCode
public void setProcesVerwerkingCode(String value)
Sets the value of the procesVerwerkingCode property.- Parameters:
value
- allowed object isString
-
getSeverityCode
public String getSeverityCode()
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.- Returns:
- possible object is
String
-
setSeverityCode
public void setSeverityCode(String value)
Sets the value of the severityCode property.- Parameters:
value
- allowed object isString
-
getMelding
public List<Melding> getMelding()
Dit element is een bouwsteen, welke gebruikt kan worden om een melding, in het bijzonder een foutmelding, terug te koppelen. Gets the value of the melding property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the melding property.For example, to add a new item, do as follows:
getMelding().add(newItem);
Objects of the following type(s) are allowed in the list
Melding
-
-