summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur/search/SucheBranche.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/SucheBranche.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/SucheBranche.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur/search/SucheBranche.java115
1 files changed, 0 insertions, 115 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur/search/SucheBranche.java b/src/main/java/at/gv/util/xsd/ur/search/SucheBranche.java
deleted file mode 100644
index 1131840..0000000
--- a/src/main/java/at/gv/util/xsd/ur/search/SucheBranche.java
+++ /dev/null
@@ -1,115 +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.XmlType;
-import at.gv.util.xsd.ur.simpletypes.OenaceArtTyp;
-
-
-/**
- * <p>Java class for SucheBranche complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="SucheBranche">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="oenaceJahr" type="{http://statistik.at/namespace/ur/simpleTypes/1#}OenaceJahrTyp" minOccurs="0"/>
- * &lt;element name="oenaceCode" type="{http://statistik.at/namespace/ur/simpleTypes/1#}OenaceCodeTyp" minOccurs="0"/>
- * &lt;element name="oenaceArt" type="{http://statistik.at/namespace/ur/simpleTypes/1#}OenaceArtTyp" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SucheBranche", propOrder = {
- "oenaceJahr",
- "oenaceCode",
- "oenaceArt"
-})
-public class SucheBranche {
-
- protected Integer oenaceJahr;
- protected String oenaceCode;
- protected OenaceArtTyp oenaceArt;
-
- /**
- * Gets the value of the oenaceJahr property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getOenaceJahr() {
- return oenaceJahr;
- }
-
- /**
- * Sets the value of the oenaceJahr property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setOenaceJahr(Integer value) {
- this.oenaceJahr = value;
- }
-
- /**
- * Gets the value of the oenaceCode property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getOenaceCode() {
- return oenaceCode;
- }
-
- /**
- * Sets the value of the oenaceCode property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setOenaceCode(String value) {
- this.oenaceCode = value;
- }
-
- /**
- * Gets the value of the oenaceArt property.
- *
- * @return
- * possible object is
- * {@link OenaceArtTyp }
- *
- */
- public OenaceArtTyp getOenaceArt() {
- return oenaceArt;
- }
-
- /**
- * Sets the value of the oenaceArt property.
- *
- * @param value
- * allowed object is
- * {@link OenaceArtTyp }
- *
- */
- public void setOenaceArt(OenaceArtTyp value) {
- this.oenaceArt = value;
- }
-
-}