aboutsummaryrefslogtreecommitdiff
path: root/id/server/idserverlib/src/main/java/at/gv/util/xsd/srzgw/MISType.java
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/idserverlib/src/main/java/at/gv/util/xsd/srzgw/MISType.java')
-rw-r--r--id/server/idserverlib/src/main/java/at/gv/util/xsd/srzgw/MISType.java185
1 files changed, 0 insertions, 185 deletions
diff --git a/id/server/idserverlib/src/main/java/at/gv/util/xsd/srzgw/MISType.java b/id/server/idserverlib/src/main/java/at/gv/util/xsd/srzgw/MISType.java
deleted file mode 100644
index 7b626ce23..000000000
--- a/id/server/idserverlib/src/main/java/at/gv/util/xsd/srzgw/MISType.java
+++ /dev/null
@@ -1,185 +0,0 @@
-
-package at.gv.util.xsd.srzgw;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-import at.gv.util.xsd.mis.MandateIdentifiers;
-import at.gv.util.xsd.mis.Target;
-
-
-/**
- * <p>Java class for MISType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="MISType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="Filters">
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd}MandateIdentifiers" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd}Target" minOccurs="0"/>
- * &lt;element name="OAFriendlyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "MISType", propOrder = {
- "filters",
- "target",
- "oaFriendlyName"
-})
-public class MISType {
-
- @XmlElement(name = "Filters", required = true)
- protected MISType.Filters filters;
- @XmlElement(name = "Target", namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd")
- protected Target target;
- @XmlElement(name = "OAFriendlyName", required = true)
- protected String oaFriendlyName;
-
- /**
- * Gets the value of the filters property.
- *
- * @return
- * possible object is
- * {@link MISType.Filters }
- *
- */
- public MISType.Filters getFilters() {
- return filters;
- }
-
- /**
- * Sets the value of the filters property.
- *
- * @param value
- * allowed object is
- * {@link MISType.Filters }
- *
- */
- public void setFilters(MISType.Filters value) {
- this.filters = value;
- }
-
- /**
- * Gets the value of the target property.
- *
- * @return
- * possible object is
- * {@link Target }
- *
- */
- public Target getTarget() {
- return target;
- }
-
- /**
- * Sets the value of the target property.
- *
- * @param value
- * allowed object is
- * {@link Target }
- *
- */
- public void setTarget(Target value) {
- this.target = value;
- }
-
- /**
- * Gets the value of the oaFriendlyName property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getOAFriendlyName() {
- return oaFriendlyName;
- }
-
- /**
- * Sets the value of the oaFriendlyName property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setOAFriendlyName(String value) {
- this.oaFriendlyName = value;
- }
-
-
- /**
- * <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://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd}MandateIdentifiers" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "mandateIdentifiers"
- })
- public static class Filters {
-
- @XmlElement(name = "MandateIdentifiers", namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd")
- protected MandateIdentifiers mandateIdentifiers;
-
- /**
- * Gets the value of the mandateIdentifiers property.
- *
- * @return
- * possible object is
- * {@link MandateIdentifiers }
- *
- */
- public MandateIdentifiers getMandateIdentifiers() {
- return mandateIdentifiers;
- }
-
- /**
- * Sets the value of the mandateIdentifiers property.
- *
- * @param value
- * allowed object is
- * {@link MandateIdentifiers }
- *
- */
- public void setMandateIdentifiers(MandateIdentifiers value) {
- this.mandateIdentifiers = value;
- }
-
- }
-
-}