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 --- .../xsd/ur_V2/basicTypes/RechtsformVollzug.java | 92 ---------------------- 1 file changed, 92 deletions(-) delete mode 100644 src/main/java/at/gv/util/xsd/ur_V2/basicTypes/RechtsformVollzug.java (limited to 'src/main/java/at/gv/util/xsd/ur_V2/basicTypes/RechtsformVollzug.java') diff --git a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/RechtsformVollzug.java b/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/RechtsformVollzug.java deleted file mode 100644 index a63c7ef..0000000 --- a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/RechtsformVollzug.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.gv.util.xsd.ur_V2.basicTypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlIDREF; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RechtsformVollzug complex type. - * - *

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

- * <complexType name="RechtsformVollzug">
- *   <complexContent>
- *     <extension base="{http://statistik.at/namespace/ur/stammdaten/2#}Rechtsform">
- *       <attGroup ref="{http://statistik.at/namespace/ur/stammdaten/2#}VollzugAttributes"/>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RechtsformVollzug") -public class RechtsformVollzug - extends Rechtsform -{ - - @XmlAttribute(name = "vollzugBeginn", namespace = "http://statistik.at/namespace/ur/stammdaten/2#") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object vollzugBeginn; - @XmlAttribute(name = "vollzugEnde", namespace = "http://statistik.at/namespace/ur/stammdaten/2#") - @XmlIDREF - @XmlSchemaType(name = "IDREF") - protected Object vollzugEnde; - - /** - * Gets the value of the vollzugBeginn property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getVollzugBeginn() { - return vollzugBeginn; - } - - /** - * Sets the value of the vollzugBeginn property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setVollzugBeginn(Object value) { - this.vollzugBeginn = value; - } - - /** - * Gets the value of the vollzugEnde property. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getVollzugEnde() { - return vollzugEnde; - } - - /** - * Sets the value of the vollzugEnde property. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setVollzugEnde(Object value) { - this.vollzugEnde = value; - } - -} -- cgit v1.2.3