summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur/search/OenaceType.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2014-03-25 12:11:34 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2014-03-25 12:11:34 +0100
commit107930978eefc7234e99bbccd483f4da3a690c0d (patch)
treefeef5d6db47dada6cb9df3333bebfa8fdb13db29 /src/main/java/at/gv/util/xsd/ur/search/OenaceType.java
parent655d20aa34b819720b20165dc6aeea032df224cc (diff)
downloadegovutils-107930978eefc7234e99bbccd483f4da3a690c0d.tar.gz
egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.tar.bz2
egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.zip
add UR Client version 5
remove UR Client version 1 change egovutils version to 1.0.5
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur/search/OenaceType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur/search/OenaceType.java81
1 files changed, 0 insertions, 81 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur/search/OenaceType.java b/src/main/java/at/gv/util/xsd/ur/search/OenaceType.java
deleted file mode 100644
index 9f5f2ee..0000000
--- a/src/main/java/at/gv/util/xsd/ur/search/OenaceType.java
+++ /dev/null
@@ -1,81 +0,0 @@
-
-package at.gv.util.xsd.ur.search;
-
-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;
-
-
-/**
- * <p>Java class for OenaceType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="OenaceType">
- * &lt;simpleContent>
- * &lt;extension base="&lt;http://statistik.at/namespace/ur/simpleTypes/1#>OenaceCodeTyp">
- * &lt;attribute name="jahr" use="required" type="{http://statistik.at/namespace/ur/simpleTypes/1#}OenaceJahrTyp" />
- * &lt;/extension>
- * &lt;/simpleContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "OenaceType", propOrder = {
- "value"
-})
-public class OenaceType {
-
- @XmlValue
- protected String value;
- @XmlAttribute(name = "jahr", required = true)
- protected int jahr;
-
- /**
- *
- * ÖNACE - 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;
- }
-
-}