summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr/pvp/sec/Security.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2013-12-20 12:35:28 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2013-12-20 12:35:28 +0100
commitdefceef8afef538555c13d33e344a89a828a3d97 (patch)
tree24b44f970f161d5b139dde501ca0f5d883f9fdea /src/main/java/at/gv/util/xsd/szr/pvp/sec/Security.java
downloadegovutils-defceef8afef538555c13d33e344a89a828a3d97.tar.gz
egovutils-defceef8afef538555c13d33e344a89a828a3d97.tar.bz2
egovutils-defceef8afef538555c13d33e344a89a828a3d97.zip
inital
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr/pvp/sec/Security.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr/pvp/sec/Security.java65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr/pvp/sec/Security.java b/src/main/java/at/gv/util/xsd/szr/pvp/sec/Security.java
new file mode 100644
index 0000000..7f70ee2
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/szr/pvp/sec/Security.java
@@ -0,0 +1,65 @@
+
+package at.gv.util.xsd.szr.pvp.sec;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+import at.gv.util.xsd.szr.pvp.PvpTokenType;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element ref="{http://egov.gv.at/pvp1.xsd}pvpToken"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+ "pvpToken"
+})
+@XmlRootElement(name = "Security")
+public class Security {
+
+ @XmlElement(namespace = "http://egov.gv.at/pvp1.xsd", required = true)
+ protected PvpTokenType pvpToken;
+
+ /**
+ * Gets the value of the pvpToken property.
+ *
+ * @return
+ * possible object is
+ * {@link PvpTokenType }
+ *
+ */
+ public PvpTokenType getPvpToken() {
+ return pvpToken;
+ }
+
+ /**
+ * Sets the value of the pvpToken property.
+ *
+ * @param value
+ * allowed object is
+ * {@link PvpTokenType }
+ *
+ */
+ public void setPvpToken(PvpTokenType value) {
+ this.pvpToken = value;
+ }
+
+}