From e2150f22562b4bc06307f4ac7b842687390e4856 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Thu, 16 Oct 2014 13:42:04 +0200 Subject: change webservice implementation to Apache CXF --- .../at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java | 209 --------------------- 1 file changed, 209 deletions(-) delete mode 100644 src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java (limited to 'src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java') diff --git a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java b/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java deleted file mode 100644 index 09d2580..0000000 --- a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java +++ /dev/null @@ -1,209 +0,0 @@ - -package at.gv.util.xsd.ur_V2.basicTypes; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlID; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; -import at.gv.util.xsd.ur_V2.simpletypes.VollzugStatusTyp; - - -/** - *

Java class for Vollzug complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Vollzug">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Antrag" type="{http://statistik.at/namespace/ur/stammdaten/2#}VollzugElem"/>
- *         <element name="Vollzug" type="{http://statistik.at/namespace/ur/stammdaten/2#}VollzugElem" minOccurs="0"/>
- *         <element name="Zurueckstellung" type="{http://statistik.at/namespace/ur/stammdaten/2#}VollzugElem" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
- *       <attribute name="nummer" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
- *       <attribute name="status" use="required" type="{http://statistik.at/namespace/ur/simpleTypes/2#}VollzugStatusTyp" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vollzug", propOrder = { - "antrag", - "vollzug", - "zurueckstellung" -}) -public class Vollzug { - - @XmlElement(name = "Antrag", required = true) - protected VollzugElem antrag; - @XmlElement(name = "Vollzug") - protected VollzugElem vollzug; - @XmlElement(name = "Zurueckstellung") - protected VollzugElem zurueckstellung; - @XmlAttribute(name = "id", required = true) - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - @XmlID - @XmlSchemaType(name = "ID") - protected String id; - @XmlAttribute(name = "nummer", required = true) - protected BigInteger nummer; - @XmlAttribute(name = "status", required = true) - protected VollzugStatusTyp status; - - /** - * Gets the value of the antrag property. - * - * @return - * possible object is - * {@link VollzugElem } - * - */ - public VollzugElem getAntrag() { - return antrag; - } - - /** - * Sets the value of the antrag property. - * - * @param value - * allowed object is - * {@link VollzugElem } - * - */ - public void setAntrag(VollzugElem value) { - this.antrag = value; - } - - /** - * Gets the value of the vollzug property. - * - * @return - * possible object is - * {@link VollzugElem } - * - */ - public VollzugElem getVollzug() { - return vollzug; - } - - /** - * Sets the value of the vollzug property. - * - * @param value - * allowed object is - * {@link VollzugElem } - * - */ - public void setVollzug(VollzugElem value) { - this.vollzug = value; - } - - /** - * Gets the value of the zurueckstellung property. - * - * @return - * possible object is - * {@link VollzugElem } - * - */ - public VollzugElem getZurueckstellung() { - return zurueckstellung; - } - - /** - * Sets the value of the zurueckstellung property. - * - * @param value - * allowed object is - * {@link VollzugElem } - * - */ - public void setZurueckstellung(VollzugElem value) { - this.zurueckstellung = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the nummer property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getNummer() { - return nummer; - } - - /** - * Sets the value of the nummer property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setNummer(BigInteger value) { - this.nummer = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link VollzugStatusTyp } - * - */ - public VollzugStatusTyp getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link VollzugStatusTyp } - * - */ - public void setStatus(VollzugStatusTyp value) { - this.status = value; - } - -} -- cgit v1.2.3