summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/mis/usp_v2/eai/syncmsgs/OutputFilterType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/mis/usp_v2/eai/syncmsgs/OutputFilterType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/mis/usp_v2/eai/syncmsgs/OutputFilterType.java71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/mis/usp_v2/eai/syncmsgs/OutputFilterType.java b/src/main/java/at/gv/util/xsd/mis/usp_v2/eai/syncmsgs/OutputFilterType.java
new file mode 100644
index 0000000..9e01228
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/mis/usp_v2/eai/syncmsgs/OutputFilterType.java
@@ -0,0 +1,71 @@
+
+package at.gv.util.xsd.mis.usp_v2.eai.syncmsgs;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java-Klasse für OutputFilterType complex type.
+ *
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ * <pre>
+ * &lt;complexType name="OutputFilterType"&gt;
+ * &lt;complexContent&gt;
+ * &lt;extension base="{http://eai.brz.gv.at/services/vdds/sync-msgs}FilterType"&gt;
+ * &lt;sequence&gt;
+ * &lt;element name="Details" type="{http://eai.brz.gv.at/services/vdds/sync-msgs}DetailsType"/&gt;
+ * &lt;/sequence&gt;
+ * &lt;/extension&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "OutputFilterType", propOrder = {
+ "details"
+})
+@XmlSeeAlso({
+ ListReferencedMandatesOutputFilter.class,
+ ProcessTypeOutputFilter.class
+})
+public class OutputFilterType
+ extends FilterType
+{
+
+ @XmlElement(name = "Details", required = true)
+ @XmlSchemaType(name = "string")
+ protected DetailsType details;
+
+ /**
+ * Ruft den Wert der details-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link DetailsType }
+ *
+ */
+ public DetailsType getDetails() {
+ return details;
+ }
+
+ /**
+ * Legt den Wert der details-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link DetailsType }
+ *
+ */
+ public void setDetails(DetailsType value) {
+ this.details = value;
+ }
+
+}