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 --- .../gv/util/xsd/ur_V2/basicTypes/OenaceType.java | 81 ---------------------- 1 file changed, 81 deletions(-) delete mode 100644 src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java (limited to 'src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java') diff --git a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java b/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java deleted file mode 100644 index 2015fda..0000000 --- a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/OenaceType.java +++ /dev/null @@ -1,81 +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.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for OenaceType complex type. - * - *

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

- * <complexType name="OenaceType">
- *   <simpleContent>
- *     <extension base="<http://statistik.at/namespace/ur/simpleTypes/2#>OenaceCodeTyp">
- *       <attribute name="jahr" use="required" type="{http://statistik.at/namespace/ur/simpleTypes/2#}OenaceJahrTyp" />
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OenaceType", propOrder = { - "value" -}) -public class OenaceType { - - @XmlValue - protected String value; - @XmlAttribute(name = "jahr", required = true) - protected int jahr; - - /** - * - * Ö\u0096NACE - Branchenkennzahl - * - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - - /** - * Gets the value of the jahr property. - * - */ - public int getJahr() { - return jahr; - } - - /** - * Sets the value of the jahr property. - * - */ - public void setJahr(int value) { - this.jahr = value; - } - -} -- cgit v1.2.3