
generated.OpenRechtspraak Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rechtspraak Show documentation
Show all versions of rechtspraak Show documentation
Java library for consuming the Rechtspraak.nl API
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.09.27 at 07:46:05 PM BST
//
package generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import nl.rechtspraak.schema.rechtspraak_1.Conclusie;
import nl.rechtspraak.schema.rechtspraak_1.Inhoudsindicatie;
import nl.rechtspraak.schema.rechtspraak_1.Uitspraak;
import org.w3._1999._02._22_rdf_syntax_ns_.RDF;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF"/>
* <element ref="{http://www.rechtspraak.nl/schema/rechtspraak-1.0}inhoudsindicatie"/>
* <choice>
* <element ref="{http://www.rechtspraak.nl/schema/rechtspraak-1.0}uitspraak"/>
* <element ref="{http://www.rechtspraak.nl/schema/rechtspraak-1.0}conclusie"/>
* </choice>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"rdf",
"inhoudsindicatie",
"uitspraak",
"conclusie"
})
@XmlRootElement(name = "open-rechtspraak")
public class OpenRechtspraak {
@XmlElement(name = "RDF", namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#", required = true)
protected RDF rdf;
@XmlElement(namespace = "http://www.rechtspraak.nl/schema/rechtspraak-1.0", required = true)
protected Inhoudsindicatie inhoudsindicatie;
@XmlElement(namespace = "http://www.rechtspraak.nl/schema/rechtspraak-1.0")
protected Uitspraak uitspraak;
@XmlElement(namespace = "http://www.rechtspraak.nl/schema/rechtspraak-1.0")
protected Conclusie conclusie;
/**
* Gets the value of the rdf property.
*
* @return
* possible object is
* {@link RDF }
*
*/
public RDF getRDF() {
return rdf;
}
/**
* Sets the value of the rdf property.
*
* @param value
* allowed object is
* {@link RDF }
*
*/
public void setRDF(RDF value) {
this.rdf = value;
}
/**
* Gets the value of the inhoudsindicatie property.
*
* @return
* possible object is
* {@link Inhoudsindicatie }
*
*/
public Inhoudsindicatie getInhoudsindicatie() {
return inhoudsindicatie;
}
/**
* Sets the value of the inhoudsindicatie property.
*
* @param value
* allowed object is
* {@link Inhoudsindicatie }
*
*/
public void setInhoudsindicatie(Inhoudsindicatie value) {
this.inhoudsindicatie = value;
}
/**
* Gets the value of the uitspraak property.
*
* @return
* possible object is
* {@link Uitspraak }
*
*/
public Uitspraak getUitspraak() {
return uitspraak;
}
/**
* Sets the value of the uitspraak property.
*
* @param value
* allowed object is
* {@link Uitspraak }
*
*/
public void setUitspraak(Uitspraak value) {
this.uitspraak = value;
}
/**
* Gets the value of the conclusie property.
*
* @return
* possible object is
* {@link Conclusie }
*
*/
public Conclusie getConclusie() {
return conclusie;
}
/**
* Sets the value of the conclusie property.
*
* @param value
* allowed object is
* {@link Conclusie }
*
*/
public void setConclusie(Conclusie value) {
this.conclusie = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy