package de.fh_giessen.epr.container.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * Dieser Typ dient als Behälter für XML-Daten, die Bestandteil eines Dokuments sind. Er wird * verwendet für die strukturierten Daten des urkundlichen Teils und die strukturierten Daten * des Hinweisteils. * * Im Aufbau der Einträge wird dieser Behälter verwendet, damit eine Evolution der Struktur * der Eintrags- und Hinweisdaten möglich wird. Der Registereintrag kann somit Dokumente * enthalten, die verschiedenen Versionen und Fassungen dieser Spezifikation entsprechen, siehe . * *
Java class for TXMLContainer complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TXMLContainer">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <any namespace='http://www.fh-giessen.de/epr/Inhalt/v1'/>
* </sequence>
* <attribute name="fassung" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
* <attribute name="namespace" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="wurzelElement" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TXMLContainer", propOrder = {
"any"
})
public class TXMLContainer {
@XmlAnyElement(lax = true)
protected Object any;
@XmlAttribute(name = "fassung", required = true)
@XmlSchemaType(name = "unsignedInt")
protected long fassung;
@XmlAttribute(name = "namespace", required = true)
@XmlSchemaType(name = "anyURI")
protected String namespace;
@XmlAttribute(name = "wurzelElement", required = true)
protected String wurzelElement;
/**
* Gets the value of the any property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getAny() {
return any;
}
/**
* Sets the value of the any property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setAny(Object value) {
this.any = value;
}
/**
* Gets the value of the fassung property.
*
*/
public long getFassung() {
return fassung;
}
/**
* Sets the value of the fassung property.
*
*/
public void setFassung(long value) {
this.fassung = value;
}
/**
* Gets the value of the namespace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamespace() {
return namespace;
}
/**
* Sets the value of the namespace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamespace(String value) {
this.namespace = value;
}
/**
* Gets the value of the wurzelElement property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWurzelElement() {
return wurzelElement;
}
/**
* Sets the value of the wurzelElement property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWurzelElement(String value) {
this.wurzelElement = value;
}
}