();
+ }
+ return this.values;
+ }
+
+ /**
+ * Ruft den Wert der minAnz-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getMinAnz() {
+ return minAnz;
+ }
+
+ /**
+ * Legt den Wert der minAnz-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setMinAnz(Integer value) {
+ this.minAnz = value;
+ }
+
+}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ASingleAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ASingleAttributType.java
new file mode 100644
index 00000000..79fdd485
--- /dev/null
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ASingleAttributType.java
@@ -0,0 +1,74 @@
+
+package at.vvo.omds.types.omds3Types.r1_5_0.common;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * Abstrakter Basistyp für Attribute mit einem Wert
+ *
+ * Java-Klasse für ASingleAttribut_Type complex type.
+ *
+ *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ *
+ * <complexType name="ASingleAttribut_Type">
+ * <complexContent>
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
+ * <sequence>
+ * <element name="Pflichtfeld" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * </sequence>
+ * </extension>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ASingleAttribut_Type", propOrder = {
+ "pflichtfeld"
+})
+@XmlSeeAlso({
+ AttributStringType.class,
+ AttributIntType.class,
+ AttributDezimalType.class,
+ AttributDoubleType.class,
+ AttributDatumType.class
+})
+public abstract class ASingleAttributType
+ extends AttributType
+{
+
+ @XmlElement(name = "Pflichtfeld")
+ protected Boolean pflichtfeld;
+
+ /**
+ * Ruft den Wert der pflichtfeld-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
+ */
+ public Boolean isPflichtfeld() {
+ return pflichtfeld;
+ }
+
+ /**
+ * Legt den Wert der pflichtfeld-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
+ */
+ public void setPflichtfeld(Boolean value) {
+ this.pflichtfeld = value;
+ }
+
+}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDatumType.java
index 7cbfa2c0..d9ccdbf8 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDatumType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDatumType.java
@@ -21,9 +21,9 @@ import javax.xml.datatype.XMLGregorianCalendar;
*
* <complexType name="AttributDatum_Type">
* <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
* <sequence>
- * <element name="Value" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ * <element name="Value" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}date" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
@@ -45,10 +45,10 @@ import javax.xml.datatype.XMLGregorianCalendar;
"max"
})
public class AttributDatumType
- extends AttributType
+ extends ASingleAttributType
{
- @XmlElement(name = "Value", required = true)
+ @XmlElement(name = "Value")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar value;
@XmlElement(name = "Default")
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDezimalType.java
index 9df26045..7a2d243c 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDezimalType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDezimalType.java
@@ -20,9 +20,9 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="AttributDezimal_Type">
* <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
* <sequence>
- * <element name="Value" type="{urn:omds20}decimal"/>
+ * <element name="Value" type="{urn:omds20}decimal" minOccurs="0"/>
* <element name="Default" type="{urn:omds20}decimal" minOccurs="0"/>
* <element name="Values" type="{urn:omds20}decimal" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Min" type="{urn:omds20}decimal" minOccurs="0"/>
@@ -44,10 +44,10 @@ import javax.xml.bind.annotation.XmlType;
"max"
})
public class AttributDezimalType
- extends AttributType
+ extends ASingleAttributType
{
- @XmlElement(name = "Value", required = true)
+ @XmlElement(name = "Value")
protected BigDecimal value;
@XmlElement(name = "Default")
protected BigDecimal _default;
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDoubleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDoubleType.java
index 2ca92895..85807785 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDoubleType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributDoubleType.java
@@ -19,9 +19,9 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="AttributDouble_Type">
* <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
* <sequence>
- * <element name="Value" type="{http://www.w3.org/2001/XMLSchema}double"/>
+ * <element name="Value" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
@@ -43,11 +43,11 @@ import javax.xml.bind.annotation.XmlType;
"max"
})
public class AttributDoubleType
- extends AttributType
+ extends ASingleAttributType
{
@XmlElement(name = "Value")
- protected double value;
+ protected Double value;
@XmlElement(name = "Default")
protected Double _default;
@XmlElement(name = "Values", type = Double.class)
@@ -60,16 +60,24 @@ public class AttributDoubleType
/**
* Ruft den Wert der value-Eigenschaft ab.
*
+ * @return
+ * possible object is
+ * {@link Double }
+ *
*/
- public double getValue() {
+ public Double getValue() {
return value;
}
/**
* Legt den Wert der value-Eigenschaft fest.
*
+ * @param value
+ * allowed object is
+ * {@link Double }
+ *
*/
- public void setValue(double value) {
+ public void setValue(Double value) {
this.value = value;
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributEnumType.java
index 78ca00f4..97c6ef4b 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributEnumType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributEnumType.java
@@ -1,8 +1,6 @@
package at.vvo.omds.types.omds3Types.r1_5_0.common;
-import java.util.ArrayList;
-import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
@@ -19,19 +17,10 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="AttributEnum_Type">
* <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}AListenAttribut_Type">
* <sequence>
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="MinAnz">
- * <simpleType>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- * <enumeration value="0"/>
- * <enumeration value="1"/>
- * </restriction>
- * </simpleType>
- * </element>
* </sequence>
* </extension>
* </complexContent>
@@ -43,22 +32,16 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributEnum_Type", propOrder = {
"value",
- "_default",
- "values",
- "minAnz"
+ "_default"
})
public class AttributEnumType
- extends AttributType
+ extends AListenAttributType
{
@XmlElement(name = "Value")
protected String value;
@XmlElement(name = "Default")
protected String _default;
- @XmlElement(name = "Values")
- protected List values;
- @XmlElement(name = "MinAnz")
- protected long minAnz;
/**
* Ruft den Wert der value-Eigenschaft ab.
@@ -108,49 +91,4 @@ public class AttributEnumType
this._default = value;
}
- /**
- * Gets the value of the values property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the values property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getValues().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link EintragSchluessellisteType }
- *
- *
- */
- public List getValues() {
- if (values == null) {
- values = new ArrayList();
- }
- return this.values;
- }
-
- /**
- * Ruft den Wert der minAnz-Eigenschaft ab.
- *
- */
- public long getMinAnz() {
- return minAnz;
- }
-
- /**
- * Legt den Wert der minAnz-Eigenschaft fest.
- *
- */
- public void setMinAnz(long value) {
- this.minAnz = value;
- }
-
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributIntType.java
index 1fcdffcd..d0643b3b 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributIntType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributIntType.java
@@ -19,7 +19,7 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="AttributInt_Type">
* <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
* <sequence>
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
@@ -43,7 +43,7 @@ import javax.xml.bind.annotation.XmlType;
"max"
})
public class AttributIntType
- extends AttributType
+ extends ASingleAttributType
{
@XmlElement(name = "Value")
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenStringType.java
index 9dd7bf01..f7690c9f 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenStringType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMetadatenStringType.java
@@ -24,8 +24,8 @@ import javax.xml.bind.annotation.XmlType;
* <sequence>
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- * <element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
+ * <element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ * <element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
* <element name="Regex" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
@@ -52,11 +52,11 @@ public class AttributMetadatenStringType
@XmlElement(name = "Values")
protected List values;
@XmlElement(name = "MinLaenge")
- @XmlSchemaType(name = "unsignedInt")
- protected Long minLaenge;
+ @XmlSchemaType(name = "unsignedShort")
+ protected Integer minLaenge;
@XmlElement(name = "MaxLaenge")
- @XmlSchemaType(name = "unsignedInt")
- protected Long maxLaenge;
+ @XmlSchemaType(name = "unsignedShort")
+ protected Integer maxLaenge;
@XmlElement(name = "Regex")
protected String regex;
@@ -118,10 +118,10 @@ public class AttributMetadatenStringType
*
* @return
* possible object is
- * {@link Long }
+ * {@link Integer }
*
*/
- public Long getMinLaenge() {
+ public Integer getMinLaenge() {
return minLaenge;
}
@@ -130,10 +130,10 @@ public class AttributMetadatenStringType
*
* @param value
* allowed object is
- * {@link Long }
+ * {@link Integer }
*
*/
- public void setMinLaenge(Long value) {
+ public void setMinLaenge(Integer value) {
this.minLaenge = value;
}
@@ -142,10 +142,10 @@ public class AttributMetadatenStringType
*
* @return
* possible object is
- * {@link Long }
+ * {@link Integer }
*
*/
- public Long getMaxLaenge() {
+ public Integer getMaxLaenge() {
return maxLaenge;
}
@@ -154,10 +154,10 @@ public class AttributMetadatenStringType
*
* @param value
* allowed object is
- * {@link Long }
+ * {@link Integer }
*
*/
- public void setMaxLaenge(Long value) {
+ public void setMaxLaenge(Integer value) {
this.maxLaenge = value;
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMultiEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMultiEnumType.java
index d3b4ab4c..29496034 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMultiEnumType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributMultiEnumType.java
@@ -6,7 +6,6 @@ import java.util.List;
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.XmlType;
@@ -20,13 +19,11 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="AttributMultiEnum_Type">
* <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}AListenAttribut_Type">
* <sequence>
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="MinAnz" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- * <element name="MaxAnz" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
+ * <element name="MaxAnz" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -39,24 +36,17 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "AttributMultiEnum_Type", propOrder = {
"value",
"_default",
- "values",
- "minAnz",
"maxAnz"
})
public class AttributMultiEnumType
- extends AttributType
+ extends AListenAttributType
{
@XmlElement(name = "Value")
protected List value;
@XmlElement(name = "Default")
protected List _default;
- @XmlElement(name = "Values")
- protected List values;
- @XmlElement(name = "MinAnz")
- @XmlSchemaType(name = "unsignedInt")
- protected long minAnz;
- @XmlElement(name = "MaxAnz", required = true)
+ @XmlElement(name = "MaxAnz")
protected Object maxAnz;
/**
@@ -117,51 +107,6 @@ public class AttributMultiEnumType
return this._default;
}
- /**
- * Gets the value of the values property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the values property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getValues().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link EintragSchluessellisteType }
- *
- *
- */
- public List getValues() {
- if (values == null) {
- values = new ArrayList();
- }
- return this.values;
- }
-
- /**
- * Ruft den Wert der minAnz-Eigenschaft ab.
- *
- */
- public long getMinAnz() {
- return minAnz;
- }
-
- /**
- * Legt den Wert der minAnz-Eigenschaft fest.
- *
- */
- public void setMinAnz(long value) {
- this.minAnz = value;
- }
-
/**
* Ruft den Wert der maxAnz-Eigenschaft ab.
*
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributStringType.java
index 8c81e90a..a5e3bde1 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributStringType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributStringType.java
@@ -20,13 +20,13 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="AttributString_Type">
* <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
* <sequence>
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Regex" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- * <element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
+ * <element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ * <element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
@@ -46,7 +46,7 @@ import javax.xml.bind.annotation.XmlType;
"values"
})
public class AttributStringType
- extends AttributType
+ extends ASingleAttributType
{
@XmlElement(name = "Value")
@@ -56,11 +56,11 @@ public class AttributStringType
@XmlElement(name = "Regex")
protected String regex;
@XmlElement(name = "MaxLaenge")
- @XmlSchemaType(name = "unsignedInt")
- protected Long maxLaenge;
+ @XmlSchemaType(name = "unsignedShort")
+ protected Integer maxLaenge;
@XmlElement(name = "MinLaenge")
- @XmlSchemaType(name = "unsignedInt")
- protected Long minLaenge;
+ @XmlSchemaType(name = "unsignedShort")
+ protected Integer minLaenge;
@XmlElement(name = "Values")
protected List values;
@@ -141,10 +141,10 @@ public class AttributStringType
*
* @return
* possible object is
- * {@link Long }
+ * {@link Integer }
*
*/
- public Long getMaxLaenge() {
+ public Integer getMaxLaenge() {
return maxLaenge;
}
@@ -153,10 +153,10 @@ public class AttributStringType
*
* @param value
* allowed object is
- * {@link Long }
+ * {@link Integer }
*
*/
- public void setMaxLaenge(Long value) {
+ public void setMaxLaenge(Integer value) {
this.maxLaenge = value;
}
@@ -165,10 +165,10 @@ public class AttributStringType
*
* @return
* possible object is
- * {@link Long }
+ * {@link Integer }
*
*/
- public Long getMinLaenge() {
+ public Integer getMinLaenge() {
return minLaenge;
}
@@ -177,10 +177,10 @@ public class AttributStringType
*
* @param value
* allowed object is
- * {@link Long }
+ * {@link Integer }
*
*/
- public void setMinLaenge(Long value) {
+ public void setMinLaenge(Integer value) {
this.minLaenge = value;
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributType.java
index 1c7aa530..4917b8d7 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/AttributType.java
@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlType;
/**
- * Abstrakter Basistyp für Metadaten von Attributen
+ * Abstrakter Basistyp für Attribute die Metadaten enthalten können (feiner Unterschied zu AttributMetadaten_Type)
*
* Java-Klasse für Attribut_Type complex type.
*
@@ -20,8 +20,7 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="Aenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="Pflichtfeld" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * <element name="Aenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Msg" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMsg_Type" minOccurs="0"/>
@@ -36,27 +35,19 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Attribut_Type", propOrder = {
"aenderbar",
- "pflichtfeld",
"bezeichnung",
"beschreibungTxt",
"msg"
})
@XmlSeeAlso({
- AttributStringType.class,
- AttributIntType.class,
- AttributDezimalType.class,
- AttributDoubleType.class,
- AttributDatumType.class,
- AttributEnumType.class,
- AttributMultiEnumType.class,
+ ASingleAttributType.class,
+ AListenAttributType.class,
RaucherType.class
})
public abstract class AttributType {
@XmlElement(name = "Aenderbar")
- protected boolean aenderbar;
- @XmlElement(name = "Pflichtfeld")
- protected boolean pflichtfeld;
+ protected Boolean aenderbar;
@XmlElement(name = "Bezeichnung")
protected String bezeichnung;
@XmlElement(name = "BeschreibungTxt")
@@ -67,35 +58,27 @@ public abstract class AttributType {
/**
* Ruft den Wert der aenderbar-Eigenschaft ab.
*
+ * @return
+ * possible object is
+ * {@link Boolean }
+ *
*/
- public boolean isAenderbar() {
+ public Boolean isAenderbar() {
return aenderbar;
}
/**
* Legt den Wert der aenderbar-Eigenschaft fest.
*
+ * @param value
+ * allowed object is
+ * {@link Boolean }
+ *
*/
- public void setAenderbar(boolean value) {
+ public void setAenderbar(Boolean value) {
this.aenderbar = value;
}
- /**
- * Ruft den Wert der pflichtfeld-Eigenschaft ab.
- *
- */
- public boolean isPflichtfeld() {
- return pflichtfeld;
- }
-
- /**
- * Legt den Wert der pflichtfeld-Eigenschaft fest.
- *
- */
- public void setPflichtfeld(boolean value) {
- this.pflichtfeld = value;
- }
-
/**
* Ruft den Wert der bezeichnung-Eigenschaft ab.
*
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BasisProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BasisProduktbausteinType.java
index 4d42e784..652b09cb 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BasisProduktbausteinType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BasisProduktbausteinType.java
@@ -20,14 +20,14 @@ import javax.xml.bind.annotation.XmlType;
*
* <complexType name="BasisProduktbaustein_Type">
* <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Modellelement_Type">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
- * </extension>
+ * </restriction>
* </complexContent>
* </complexType>
*
@@ -44,9 +44,7 @@ import javax.xml.bind.annotation.XmlType;
@XmlSeeAlso({
ProduktbausteinType.class
})
-public abstract class BasisProduktbausteinType
- extends ModellelementType
-{
+public abstract class BasisProduktbausteinType {
@XmlElement(name = "Id")
protected String id;
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungNamentlich.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungNamentlich.java
index 500845b7..5926f018 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungNamentlich.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungNamentlich.java
@@ -1,11 +1,10 @@
package at.vvo.omds.types.omds3Types.r1_5_0.common;
-import java.util.ArrayList;
-import java.util.List;
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.XmlType;
@@ -21,7 +20,8 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
* <sequence>
- * <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BezugsrechtPerson_Type" maxOccurs="unbounded"/>
+ * <element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ * <element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="Unwiderruflich" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
@@ -33,45 +33,60 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BezugsberechtigungNamentlich", propOrder = {
- "personen",
+ "personRefLfnr",
+ "prozentsatz",
"unwiderruflich"
})
public class BezugsberechtigungNamentlich
extends BezugsberechtigungType
{
- @XmlElement(name = "Personen", required = true)
- protected List personen;
+ @XmlElement(name = "PersonRefLfnr")
+ @XmlSchemaType(name = "unsignedShort")
+ protected int personRefLfnr;
+ @XmlElement(name = "Prozentsatz")
+ protected Double prozentsatz;
@XmlElement(name = "Unwiderruflich")
protected boolean unwiderruflich;
/**
- * Gets the value of the personen property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the personen property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getPersonen().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link BezugsrechtPersonType }
- *
+ * Ruft den Wert der personRefLfnr-Eigenschaft ab.
*
*/
- public List getPersonen() {
- if (personen == null) {
- personen = new ArrayList();
- }
- return this.personen;
+ public int getPersonRefLfnr() {
+ return personRefLfnr;
+ }
+
+ /**
+ * Legt den Wert der personRefLfnr-Eigenschaft fest.
+ *
+ */
+ public void setPersonRefLfnr(int value) {
+ this.personRefLfnr = value;
+ }
+
+ /**
+ * Ruft den Wert der prozentsatz-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link Double }
+ *
+ */
+ public Double getProzentsatz() {
+ return prozentsatz;
+ }
+
+ /**
+ * Legt den Wert der prozentsatz-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link Double }
+ *
+ */
+ public void setProzentsatz(Double value) {
+ this.prozentsatz = value;
}
/**
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungTestamentarischeErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungTestamentarischeErbenType.java
new file mode 100644
index 00000000..72cfd67c
--- /dev/null
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungTestamentarischeErbenType.java
@@ -0,0 +1,34 @@
+
+package at.vvo.omds.types.omds3Types.r1_5_0.common;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * Bezugsberechtigung testamentarische Erben
+ *
+ * Java-Klasse für BezugsberechtigungTestamentarischeErben_Type complex type.
+ *
+ *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ *
+ * <complexType name="BezugsberechtigungTestamentarischeErben_Type">
+ * <complexContent>
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
+ * </extension>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "BezugsberechtigungTestamentarischeErben_Type")
+public class BezugsberechtigungTestamentarischeErbenType
+ extends BezugsberechtigungType
+{
+
+
+}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungType.java
index 24c5c16d..6d2f759c 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungType.java
@@ -3,6 +3,7 @@ package at.vvo.omds.types.omds3Types.r1_5_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
@@ -18,6 +19,16 @@ import javax.xml.bind.annotation.XmlType;
* <complexType name="Bezugsberechtigung_Type">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="Art">
+ * <simpleType>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
+ * <enumeration value="0"/>
+ * <enumeration value="1"/>
+ * </restriction>
+ * </simpleType>
+ * </element>
+ * </sequence>
* </restriction>
* </complexContent>
* </complexType>
@@ -26,14 +37,37 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "Bezugsberechtigung_Type")
+@XmlType(name = "Bezugsberechtigung_Type", propOrder = {
+ "art"
+})
@XmlSeeAlso({
BezugsberechtigungGesetzlicheErbenType.class,
+ BezugsberechtigungTestamentarischeErbenType.class,
BezugsberechtigungUeberbringerType.class,
BezugsberechtigungNamentlich.class,
+ BezugsberechtigungVersicherungsnehmerType.class,
+ BezugsberechtigungVersichertePersonType.class,
BezugsberechtigungIndividuell.class
})
public abstract class BezugsberechtigungType {
+ @XmlElement(name = "Art")
+ protected short art;
+
+ /**
+ * Ruft den Wert der art-Eigenschaft ab.
+ *
+ */
+ public short getArt() {
+ return art;
+ }
+
+ /**
+ * Legt den Wert der art-Eigenschaft fest.
+ *
+ */
+ public void setArt(short value) {
+ this.art = value;
+ }
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheZusatzproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungVersichertePersonType.java
similarity index 50%
rename from OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheZusatzproduktdatenType.java
rename to OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungVersichertePersonType.java
index 36c44d1b..d8e28931 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheZusatzproduktdatenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungVersichertePersonType.java
@@ -7,17 +7,17 @@ import javax.xml.bind.annotation.XmlType;
/**
- * VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt
+ * Bezugsberechtigung VersichertePerson
*
- * Java-Klasse für ZusaetzlicheZusatzproduktdaten_Type complex type.
+ *
Java-Klasse für BezugsberechtigungVersichertePerson_Type complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
- * <complexType name="ZusaetzlicheZusatzproduktdaten_Type">
+ * <complexType name="BezugsberechtigungVersichertePerson_Type">
* <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * </restriction>
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
+ * </extension>
* </complexContent>
* </complexType>
*
@@ -25,8 +25,10 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ZusaetzlicheZusatzproduktdaten_Type")
-public abstract class ZusaetzlicheZusatzproduktdatenType {
+@XmlType(name = "BezugsberechtigungVersichertePerson_Type")
+public class BezugsberechtigungVersichertePersonType
+ extends BezugsberechtigungType
+{
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheBetriebsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungVersicherungsnehmerType.java
similarity index 50%
rename from OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheBetriebsdatenType.java
rename to OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungVersicherungsnehmerType.java
index a16d1c50..22c463ff 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusaetzlicheBetriebsdatenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsberechtigungVersicherungsnehmerType.java
@@ -7,17 +7,17 @@ import javax.xml.bind.annotation.XmlType;
/**
- * Abstrakter Typ fuer zusaetzliche Betriebsdaten zur Erweiterung des VersicherterBetrieb_Type
+ * Bezugsberechtigung Versicherungsnehmer
*
- * Java-Klasse für ZusaetzlicheBetriebsdaten_Type complex type.
+ *
Java-Klasse für BezugsberechtigungVersicherungsnehmer_Type complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
- * <complexType name="ZusaetzlicheBetriebsdaten_Type">
+ * <complexType name="BezugsberechtigungVersicherungsnehmer_Type">
* <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * </restriction>
+ * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
+ * </extension>
* </complexContent>
* </complexType>
*
@@ -25,8 +25,10 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ZusaetzlicheBetriebsdaten_Type")
-public abstract class ZusaetzlicheBetriebsdatenType {
+@XmlType(name = "BezugsberechtigungVersicherungsnehmer_Type")
+public class BezugsberechtigungVersicherungsnehmerType
+ extends BezugsberechtigungType
+{
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsrechtPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsrechtPersonType.java
deleted file mode 100644
index 41b82106..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/BezugsrechtPersonType.java
+++ /dev/null
@@ -1,86 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-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.XmlType;
-
-
-/**
- * Namentliches Bezugsrecht fuer eine Person
- *
- * Java-Klasse für BezugsrechtPerson_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="BezugsrechtPerson_Type">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="ReferenzPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- * <element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "BezugsrechtPerson_Type", propOrder = {
- "referenzPerson",
- "prozentsatz"
-})
-public class BezugsrechtPersonType {
-
- @XmlElement(name = "ReferenzPerson")
- @XmlSchemaType(name = "unsignedShort")
- protected int referenzPerson;
- @XmlElement(name = "Prozentsatz")
- protected Double prozentsatz;
-
- /**
- * Ruft den Wert der referenzPerson-Eigenschaft ab.
- *
- */
- public int getReferenzPerson() {
- return referenzPerson;
- }
-
- /**
- * Legt den Wert der referenzPerson-Eigenschaft fest.
- *
- */
- public void setReferenzPerson(int value) {
- this.referenzPerson = value;
- }
-
- /**
- * Ruft den Wert der prozentsatz-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link Double }
- *
- */
- public Double getProzentsatz() {
- return prozentsatz;
- }
-
- /**
- * Legt den Wert der prozentsatz-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link Double }
- *
- */
- public void setProzentsatz(Double value) {
- this.prozentsatz = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonRequestType.java
index 05befcf8..5d94836f 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonRequestType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonRequestType.java
@@ -9,16 +9,6 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.GetApplicationDocumentRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.CollectionChangeRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.GetPoliciesOfPartnerRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.SetMailingAddressRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.AddCommunicationObjectRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangeCommunicationObjectRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePartnerMainAddressRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePersonDataRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.CheckAddressRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.DeleteCommunicationObjectRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.GetPartnerRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimRequestType;
@@ -56,22 +46,12 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimRequestType;
"korrelationsId"
})
@XmlSeeAlso({
+ GetApplicationDocumentRequestType.class,
CheckClaimRequestType.class,
SubmitClaimRequestType.class,
GetClaimRequestType.class,
- CommonSearchRequestType.class,
- GetApplicationDocumentRequestType.class,
- GetPartnerRequestType.class,
- CheckAddressRequestType.class,
- ChangePartnerMainAddressRequestType.class,
- ChangePersonDataRequestType.class,
- ChangeCommunicationObjectRequestType.class,
- AddCommunicationObjectRequestType.class,
- DeleteCommunicationObjectRequestType.class,
CommonProcessRequestType.class,
- GetPoliciesOfPartnerRequestType.class,
- SetMailingAddressRequestType.class,
- CollectionChangeRequestType.class
+ CommonSearchRequestType.class
})
public abstract class CommonRequestType {
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonResponseType.java
index b74dc6fe..19370746 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonResponseType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/CommonResponseType.java
@@ -7,16 +7,6 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.GetApplicationDocumentResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.CollectionChangeResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.GetPoliciesOfPartnerResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.SetMailingAddressResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.AddCommunicationObjectResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangeCommunicationObjectResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePartnerMainAddressResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePersonDataResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.CheckAddressResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.DeleteCommunicationObjectResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on4partner.GetPartnerResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimResponseType;
@@ -48,22 +38,12 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimResponseType;
"status"
})
@XmlSeeAlso({
+ GetApplicationDocumentResponseType.class,
CheckClaimResponseType.class,
SubmitClaimResponseType.class,
GetClaimResponseType.class,
- CommonSearchResponseType.class,
- GetApplicationDocumentResponseType.class,
- GetPartnerResponseType.class,
- CheckAddressResponseType.class,
- ChangePartnerMainAddressResponseType.class,
- ChangePersonDataResponseType.class,
- AddCommunicationObjectResponseType.class,
- DeleteCommunicationObjectResponseType.class,
CommonProcessResponseType.class,
- GetPoliciesOfPartnerResponseType.class,
- SetMailingAddressResponseType.class,
- CollectionChangeResponseType.class,
- ChangeCommunicationObjectResponseType.class
+ CommonSearchResponseType.class
})
public abstract class CommonResponseType {
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DeckungProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DeckungProzentType.java
deleted file mode 100644
index a70f2b22..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DeckungProzentType.java
+++ /dev/null
@@ -1,73 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Type Deckung Prozent
- *
- * Java-Klasse für DeckungProzent_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="DeckungProzent_Type">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="deckungActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="deckungProzent" type="{http://www.w3.org/2001/XMLSchema}int"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "DeckungProzent_Type", propOrder = {
- "deckungActive",
- "deckungProzent"
-})
-public class DeckungProzentType {
-
- protected boolean deckungActive;
- protected int deckungProzent;
-
- /**
- * Ruft den Wert der deckungActive-Eigenschaft ab.
- *
- */
- public boolean isDeckungActive() {
- return deckungActive;
- }
-
- /**
- * Legt den Wert der deckungActive-Eigenschaft fest.
- *
- */
- public void setDeckungActive(boolean value) {
- this.deckungActive = value;
- }
-
- /**
- * Ruft den Wert der deckungProzent-Eigenschaft ab.
- *
- */
- public int getDeckungProzent() {
- return deckungProzent;
- }
-
- /**
- * Legt den Wert der deckungProzent-Eigenschaft fest.
- *
- */
- public void setDeckungProzent(int value) {
- this.deckungProzent = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DeckungVsType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DeckungVsType.java
deleted file mode 100644
index 04c95720..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DeckungVsType.java
+++ /dev/null
@@ -1,65 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-import java.math.BigDecimal;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Type Deckung
- *
- * Java-Klasse für DeckungVs_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="DeckungVs_Type">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="Versicherungssumme" type="{urn:omds20}decimal14_2"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "DeckungVs_Type", propOrder = {
- "versicherungssumme"
-})
-public class DeckungVsType {
-
- @XmlElement(name = "Versicherungssumme", required = true)
- protected BigDecimal versicherungssumme;
-
- /**
- * Ruft den Wert der versicherungssumme-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link BigDecimal }
- *
- */
- public BigDecimal getVersicherungssumme() {
- return versicherungssumme;
- }
-
- /**
- * Legt den Wert der versicherungssumme-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link BigDecimal }
- *
- */
- public void setVersicherungssumme(BigDecimal value) {
- this.versicherungssumme = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DeckungVsVIType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DeckungVsVIType.java
deleted file mode 100644
index 1df61960..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/DeckungVsVIType.java
+++ /dev/null
@@ -1,112 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-import java.math.BigDecimal;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Type Deckung
- *
- * Java-Klasse für DeckungVsVI_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="DeckungVsVI_Type">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="deckungActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="deckungVs" type="{urn:omds20}decimal14_2"/>
- * <element name="VersichertesInteresse" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "DeckungVsVI_Type", propOrder = {
- "deckungActive",
- "deckungVs",
- "versichertesInteresse"
-})
-public class DeckungVsVIType {
-
- protected boolean deckungActive;
- @XmlElement(required = true)
- protected BigDecimal deckungVs;
- @XmlElement(name = "VersichertesInteresse", required = true)
- protected Object versichertesInteresse;
-
- /**
- * Ruft den Wert der deckungActive-Eigenschaft ab.
- *
- */
- public boolean isDeckungActive() {
- return deckungActive;
- }
-
- /**
- * Legt den Wert der deckungActive-Eigenschaft fest.
- *
- */
- public void setDeckungActive(boolean value) {
- this.deckungActive = value;
- }
-
- /**
- * Ruft den Wert der deckungVs-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link BigDecimal }
- *
- */
- public BigDecimal getDeckungVs() {
- return deckungVs;
- }
-
- /**
- * Legt den Wert der deckungVs-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link BigDecimal }
- *
- */
- public void setDeckungVs(BigDecimal value) {
- this.deckungVs = value;
- }
-
- /**
- * Ruft den Wert der versichertesInteresse-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link Object }
- *
- */
- public Object getVersichertesInteresse() {
- return versichertesInteresse;
- }
-
- /**
- * Legt den Wert der versichertesInteresse-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link Object }
- *
- */
- public void setVersichertesInteresse(Object value) {
- this.versichertesInteresse = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktGenerischType.java
index 83e89ec3..984080e1 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktGenerischType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktGenerischType.java
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.ElementarproduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType;
@@ -47,7 +46,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.Elementarprodukt
"versicherungssumme"
})
@XmlSeeAlso({
- ElementarproduktRechtsschutzType.class,
ElementarproduktSachPrivatType.class
})
public abstract class ElementarproduktGenerischType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktType.java
index 6c83d351..8ee2768e 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ElementarproduktType.java
@@ -42,9 +42,9 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VerkehrsrechtsschutzKfz
"zusaetzlicheElementarproduktdaten"
})
@XmlSeeAlso({
- ElementarproduktGenerischType.class,
ElementarproduktKfzType.class,
- VerkehrsrechtsschutzKfzType.class
+ VerkehrsrechtsschutzKfzType.class,
+ ElementarproduktGenerischType.class
})
public abstract class ElementarproduktType
extends ProduktbausteinType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCANatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCANatPersonType.java
index 0c3ca19e..2f0df0be 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCANatPersonType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCANatPersonType.java
@@ -22,6 +22,7 @@ import javax.xml.bind.annotation.XmlType;
* <element name="Geburtsland" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
* <element name="US_Indizien" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="US_Steuerpflicht" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * <element name="US_TIN" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -34,7 +35,8 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "FATCA_NatPersonType", propOrder = {
"geburtsland",
"usIndizien",
- "usSteuerpflicht"
+ "usSteuerpflicht",
+ "ustin"
})
public class FATCANatPersonType {
@@ -44,6 +46,8 @@ public class FATCANatPersonType {
protected boolean usIndizien;
@XmlElement(name = "US_Steuerpflicht")
protected boolean usSteuerpflicht;
+ @XmlElement(name = "US_TIN", required = true)
+ protected String ustin;
/**
* Ruft den Wert der geburtsland-Eigenschaft ab.
@@ -101,4 +105,28 @@ public class FATCANatPersonType {
this.usSteuerpflicht = value;
}
+ /**
+ * Ruft den Wert der ustin-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getUSTIN() {
+ return ustin;
+ }
+
+ /**
+ * Legt den Wert der ustin-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUSTIN(String value) {
+ this.ustin = value;
+ }
+
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCASonstPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCASonstPersonType.java
index 162924b5..8c9615dc 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCASonstPersonType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCASonstPersonType.java
@@ -20,6 +20,9 @@ import javax.xml.bind.annotation.XmlType;
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="LandFirmensitz" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
+ * <element name="GIIN" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * <element name="KonzessionFinanzen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * <element name="NichtFinanzielleDienstleistungen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -30,12 +33,21 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FATCA_SonstPersonType", propOrder = {
- "landFirmensitz"
+ "landFirmensitz",
+ "giin",
+ "konzessionFinanzen",
+ "nichtFinanzielleDienstleistungen"
})
public class FATCASonstPersonType {
@XmlElement(name = "LandFirmensitz", required = true)
protected AttributEnumType landFirmensitz;
+ @XmlElement(name = "GIIN", required = true)
+ protected String giin;
+ @XmlElement(name = "KonzessionFinanzen")
+ protected boolean konzessionFinanzen;
+ @XmlElement(name = "NichtFinanzielleDienstleistungen")
+ protected boolean nichtFinanzielleDienstleistungen;
/**
* Ruft den Wert der landFirmensitz-Eigenschaft ab.
@@ -61,4 +73,60 @@ public class FATCASonstPersonType {
this.landFirmensitz = value;
}
+ /**
+ * Ruft den Wert der giin-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getGIIN() {
+ return giin;
+ }
+
+ /**
+ * Legt den Wert der giin-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setGIIN(String value) {
+ this.giin = value;
+ }
+
+ /**
+ * Ruft den Wert der konzessionFinanzen-Eigenschaft ab.
+ *
+ */
+ public boolean isKonzessionFinanzen() {
+ return konzessionFinanzen;
+ }
+
+ /**
+ * Legt den Wert der konzessionFinanzen-Eigenschaft fest.
+ *
+ */
+ public void setKonzessionFinanzen(boolean value) {
+ this.konzessionFinanzen = value;
+ }
+
+ /**
+ * Ruft den Wert der nichtFinanzielleDienstleistungen-Eigenschaft ab.
+ *
+ */
+ public boolean isNichtFinanzielleDienstleistungen() {
+ return nichtFinanzielleDienstleistungen;
+ }
+
+ /**
+ * Legt den Wert der nichtFinanzielleDienstleistungen-Eigenschaft fest.
+ *
+ */
+ public void setNichtFinanzielleDienstleistungen(boolean value) {
+ this.nichtFinanzielleDienstleistungen = value;
+ }
+
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCAType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCAType.java
index 07445fea..c166b057 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCAType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/FATCAType.java
@@ -20,7 +20,7 @@ import javax.xml.bind.annotation.XmlType;
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="FATCA_NatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_NatPersonType"/>
- * <element name="FATCA_SonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
+ * <element name="FATCA_SonstPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_SonstPersonType"/>
* </choice>
* </restriction>
* </complexContent>
@@ -39,7 +39,7 @@ public class FATCAType {
@XmlElement(name = "FATCA_NatPerson")
protected FATCANatPersonType fatcaNatPerson;
@XmlElement(name = "FATCA_SonstPerson")
- protected Object fatcaSonstPerson;
+ protected FATCASonstPersonType fatcaSonstPerson;
/**
* Ruft den Wert der fatcaNatPerson-Eigenschaft ab.
@@ -70,10 +70,10 @@ public class FATCAType {
*
* @return
* possible object is
- * {@link Object }
+ * {@link FATCASonstPersonType }
*
*/
- public Object getFATCASonstPerson() {
+ public FATCASonstPersonType getFATCASonstPerson() {
return fatcaSonstPerson;
}
@@ -82,10 +82,10 @@ public class FATCAType {
*
* @param value
* allowed object is
- * {@link Object }
+ * {@link FATCASonstPersonType }
*
*/
- public void setFATCASonstPerson(Object value) {
+ public void setFATCASonstPerson(FATCASonstPersonType value) {
this.fatcaSonstPerson = value;
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GMSGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GMSGType.java
index ec67fb46..d121de5b 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GMSGType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/GMSGType.java
@@ -27,7 +27,7 @@ import javax.xml.bind.annotation.XmlType;
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- * <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type"/>
+ * <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -91,7 +91,7 @@ public class GMSGType {
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
- * <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type"/>
+ * <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -109,7 +109,7 @@ public class GMSGType {
@XmlElement(name = "Land", required = true)
protected AttributEnumType land;
- @XmlElement(name = "Steuernummer", required = true)
+ @XmlElement(name = "Steuernummer")
protected AttributStringType steuernummer;
/**
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Gruppe.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Gruppe.java
deleted file mode 100644
index f43b77ee..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Gruppe.java
+++ /dev/null
@@ -1,121 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Gruppe von Bausteinen, aus der eine Auswahl möglich ist
- *
- * Java-Klasse für Gruppe complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="Gruppe">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Modellelement_Type">
- * <sequence>
- * <element name="Elemente" type="{urn:omds3CommonServiceTypes-1-1-0}Modellelement_Type" maxOccurs="unbounded"/>
- * <element name="Min" type="{http://www.w3.org/2001/XMLSchema}int"/>
- * <element name="Max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "Gruppe", propOrder = {
- "elemente",
- "min",
- "max"
-})
-public class Gruppe
- extends ModellelementType
-{
-
- @XmlElement(name = "Elemente", required = true)
- protected List elemente;
- @XmlElement(name = "Min")
- protected int min;
- @XmlElement(name = "Max")
- protected Integer max;
-
- /**
- * Gets the value of the elemente property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the elemente property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getElemente().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link ModellelementType }
- *
- *
- */
- public List getElemente() {
- if (elemente == null) {
- elemente = new ArrayList();
- }
- return this.elemente;
- }
-
- /**
- * Ruft den Wert der min-Eigenschaft ab.
- *
- */
- public int getMin() {
- return min;
- }
-
- /**
- * Legt den Wert der min-Eigenschaft fest.
- *
- */
- public void setMin(int value) {
- this.min = value;
- }
-
- /**
- * Ruft den Wert der max-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getMax() {
- return max;
- }
-
- /**
- * Legt den Wert der max-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setMax(Integer value) {
- this.max = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KostenFixOderProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KostenFixOderProzentType.java
index fd680528..fff2ba93 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KostenFixOderProzentType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/KostenFixOderProzentType.java
@@ -23,7 +23,7 @@ import javax.xml.bind.annotation.XmlType;
* <sequence>
* <choice>
* <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
- * <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ * <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
* </choice>
* </sequence>
* </restriction>
@@ -43,8 +43,8 @@ public class KostenFixOderProzentType {
@XmlElement(name = "AbsoluterBetrag")
protected BigDecimal absoluterBetrag;
@XmlElement(name = "ProzentVs")
- @XmlSchemaType(name = "unsignedShort")
- protected Integer prozentVs;
+ @XmlSchemaType(name = "unsignedByte")
+ protected Short prozentVs;
/**
* Ruft den Wert der absoluterBetrag-Eigenschaft ab.
@@ -75,10 +75,10 @@ public class KostenFixOderProzentType {
*
* @return
* possible object is
- * {@link Integer }
+ * {@link Short }
*
*/
- public Integer getProzentVs() {
+ public Short getProzentVs() {
return prozentVs;
}
@@ -87,10 +87,10 @@ public class KostenFixOderProzentType {
*
* @param value
* allowed object is
- * {@link Integer }
+ * {@link Short }
*
*/
- public void setProzentVs(Integer value) {
+ public void setProzentVs(Short value) {
this.prozentVs = value;
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ModellelementType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ModellelementType.java
deleted file mode 100644
index 549e842c..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ModellelementType.java
+++ /dev/null
@@ -1,37 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlSeeAlso;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Abstrakter gemeinsamer Basistyp von Produktbausteinen und Gruppen
- *
- * Java-Klasse für Modellelement_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="Modellelement_Type">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "Modellelement_Type")
-@XmlSeeAlso({
- Gruppe.class,
- BasisProduktbausteinType.class
-})
-public abstract class ModellelementType {
-
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjectFactory.java
index 0ccb9027..183c5d96 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjectFactory.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ObjectFactory.java
@@ -109,6 +109,14 @@ public class ObjectFactory {
return new ResponseStatusType();
}
+ /**
+ * Create an instance of {@link Referenz }
+ *
+ */
+ public Referenz createReferenz() {
+ return new Referenz();
+ }
+
/**
* Create an instance of {@link DateianhangType }
*
@@ -125,22 +133,6 @@ public class ObjectFactory {
return new KontierungType();
}
- /**
- * Create an instance of {@link ZusatzproduktGenerischType }
- *
- */
- public ZusatzproduktGenerischType createZusatzproduktGenerischType() {
- return new ZusatzproduktGenerischType();
- }
-
- /**
- * Create an instance of {@link Gruppe }
- *
- */
- public Gruppe createGruppe() {
- return new Gruppe();
- }
-
/**
* Create an instance of {@link BeteiligtePersonVertragType }
*
@@ -213,6 +205,14 @@ public class ObjectFactory {
return new BezugsberechtigungGesetzlicheErbenType();
}
+ /**
+ * Create an instance of {@link BezugsberechtigungTestamentarischeErbenType }
+ *
+ */
+ public BezugsberechtigungTestamentarischeErbenType createBezugsberechtigungTestamentarischeErbenType() {
+ return new BezugsberechtigungTestamentarischeErbenType();
+ }
+
/**
* Create an instance of {@link BezugsberechtigungUeberbringerType }
*
@@ -230,11 +230,19 @@ public class ObjectFactory {
}
/**
- * Create an instance of {@link BezugsrechtPersonType }
+ * Create an instance of {@link BezugsberechtigungVersicherungsnehmerType }
*
*/
- public BezugsrechtPersonType createBezugsrechtPersonType() {
- return new BezugsrechtPersonType();
+ public BezugsberechtigungVersicherungsnehmerType createBezugsberechtigungVersicherungsnehmerType() {
+ return new BezugsberechtigungVersicherungsnehmerType();
+ }
+
+ /**
+ * Create an instance of {@link BezugsberechtigungVersichertePersonType }
+ *
+ */
+ public BezugsberechtigungVersichertePersonType createBezugsberechtigungVersichertePersonType() {
+ return new BezugsberechtigungVersichertePersonType();
}
/**
@@ -309,30 +317,6 @@ public class ObjectFactory {
return new ErsatzpolizzenType();
}
- /**
- * Create an instance of {@link DeckungVsType }
- *
- */
- public DeckungVsType createDeckungVsType() {
- return new DeckungVsType();
- }
-
- /**
- * Create an instance of {@link DeckungVsVIType }
- *
- */
- public DeckungVsVIType createDeckungVsVIType() {
- return new DeckungVsVIType();
- }
-
- /**
- * Create an instance of {@link DeckungProzentType }
- *
- */
- public DeckungProzentType createDeckungProzentType() {
- return new DeckungProzentType();
- }
-
/**
* Create an instance of {@link DokumentInfoType }
*
@@ -413,22 +397,6 @@ public class ObjectFactory {
return new ZulassungsdatenType();
}
- /**
- * Create an instance of {@link VersicherterBetriebType }
- *
- */
- public VersicherterBetriebType createVersicherterBetriebType() {
- return new VersicherterBetriebType();
- }
-
- /**
- * Create an instance of {@link VersicherteLiegenschaftType }
- *
- */
- public VersicherteLiegenschaftType createVersicherteLiegenschaftType() {
- return new VersicherteLiegenschaftType();
- }
-
/**
* Create an instance of {@link KostenFixOderProzentType }
*
@@ -597,14 +565,6 @@ public class ObjectFactory {
return new AttributMultiEnumType();
}
- /**
- * Create an instance of {@link SicherstellungType }
- *
- */
- public SicherstellungType createSicherstellungType() {
- return new SicherstellungType();
- }
-
/**
* Create an instance of {@link AbtretungType }
*
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktGenerischType.java
index 465930fd..c6fa32fd 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktGenerischType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktGenerischType.java
@@ -8,7 +8,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.ProduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.ProduktSachPrivatType;
@@ -44,7 +43,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.ProduktSachPriva
"beschreibungTxt"
})
@XmlSeeAlso({
- ProduktRechtsschutzType.class,
ProduktSachPrivatType.class
})
public abstract class ProduktGenerischType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktType.java
index 9102d75c..9b1ccabf 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktType.java
@@ -50,9 +50,9 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.ZusatzproduktKfzType;
"zusaetzlicheProduktdaten"
})
@XmlSeeAlso({
- ProduktGenerischType.class,
ProduktKfzType.class,
- ZusatzproduktKfzType.class
+ ZusatzproduktKfzType.class,
+ ProduktGenerischType.class
})
public abstract class ProduktType
extends ProduktbausteinType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktbausteinType.java
index 3190c39d..8449e1e6 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktbausteinType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ProduktbausteinType.java
@@ -44,7 +44,6 @@ import javax.xml.datatype.XMLGregorianCalendar;
})
@XmlSeeAlso({
ProduktbausteinGenerischType.class,
- ZusatzproduktType.class,
VerkaufsproduktType.class,
ProduktType.class,
ElementarproduktType.class
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Referenz.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Referenz.java
new file mode 100644
index 00000000..6201ca26
--- /dev/null
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/Referenz.java
@@ -0,0 +1,92 @@
+
+package at.vvo.omds.types.omds3Types.r1_5_0.common;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * Ein Link auf ein Element
+ *
+ * Java-Klasse für Referenz complex type.
+ *
+ *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ *
+ * <complexType name="Referenz">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="Link" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
+ * <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "Referenz", propOrder = {
+ "link",
+ "bezeichnung"
+})
+public class Referenz {
+
+ @XmlElement(name = "Link", required = true)
+ protected Object link;
+ @XmlElement(name = "Bezeichnung")
+ protected Object bezeichnung;
+
+ /**
+ * Ruft den Wert der link-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link Object }
+ *
+ */
+ public Object getLink() {
+ return link;
+ }
+
+ /**
+ * Legt den Wert der link-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link Object }
+ *
+ */
+ public void setLink(Object value) {
+ this.link = value;
+ }
+
+ /**
+ * Ruft den Wert der bezeichnung-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link Object }
+ *
+ */
+ public Object getBezeichnung() {
+ return bezeichnung;
+ }
+
+ /**
+ * Legt den Wert der bezeichnung-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link Object }
+ *
+ */
+ public void setBezeichnung(Object value) {
+ this.bezeichnung = value;
+ }
+
+}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ResponseStatusType.java
index 8ca4c65d..3bcab36d 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ResponseStatusType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ResponseStatusType.java
@@ -25,6 +25,7 @@ import javax.xml.bind.annotation.XmlType;
* <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
* <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="Referenzen" type="{urn:omds3CommonServiceTypes-1-1-0}Referenz" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -37,7 +38,8 @@ import javax.xml.bind.annotation.XmlType;
@XmlType(name = "ResponseStatus_Type", propOrder = {
"korrelationsId",
"ergebnis",
- "meldungen"
+ "meldungen",
+ "referenzen"
})
public class ResponseStatusType {
@@ -48,6 +50,8 @@ public class ResponseStatusType {
protected StatusType ergebnis;
@XmlElement(name = "Meldungen")
protected List meldungen;
+ @XmlElement(name = "Referenzen")
+ protected List referenzen;
/**
* Ruft den Wert der korrelationsId-Eigenschaft ab.
@@ -126,4 +130,33 @@ public class ResponseStatusType {
return this.meldungen;
}
+ /**
+ * Gets the value of the referenzen property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set method for the referenzen property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getReferenzen().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Referenz }
+ *
+ *
+ */
+ public List getReferenzen() {
+ if (referenzen == null) {
+ referenzen = new ArrayList();
+ }
+ return this.referenzen;
+ }
+
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/RisikoNatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/RisikoNatPersonType.java
index 831f0f2c..23bae784 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/RisikoNatPersonType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/RisikoNatPersonType.java
@@ -28,12 +28,14 @@ import javax.xml.bind.annotation.XmlType;
* <element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
* <element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
* <element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- * <element name="FreizeitSportRisiko" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- * <element name="Risikozuschlag" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
+ * <element name="FreizeitSportRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="Risikozuschlaege" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
* <element name="GesetzlicheUV" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
* <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
* <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
* <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
+ * <element name="BehandelnderArzt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="KontaktRueckfragen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
@@ -52,12 +54,14 @@ import javax.xml.bind.annotation.XmlType;
"gefahrenklasse",
"beruf",
"medizinischerBeruf",
- "freizeitSportRisiko",
- "risikozuschlag",
+ "freizeitSportRisiken",
+ "risikozuschlaege",
"gesetzlicheUV",
"personenartKranken",
"berufsgruppe",
"manuelleTaetigkeit",
+ "behandelnderArzt",
+ "kontaktRueckfragen",
"zusaetzlicheRisikodaten"
})
public class RisikoNatPersonType {
@@ -76,10 +80,10 @@ public class RisikoNatPersonType {
protected AttributStringType beruf;
@XmlElement(name = "MedizinischerBeruf")
protected AttributEnumType medizinischerBeruf;
- @XmlElement(name = "FreizeitSportRisiko")
- protected AttributEnumType freizeitSportRisiko;
- @XmlElement(name = "Risikozuschlag")
- protected AttributEnumType risikozuschlag;
+ @XmlElement(name = "FreizeitSportRisiken")
+ protected List freizeitSportRisiken;
+ @XmlElement(name = "Risikozuschlaege")
+ protected List risikozuschlaege;
@XmlElement(name = "GesetzlicheUV")
protected AttributEnumType gesetzlicheUV;
@XmlElement(name = "PersonenartKranken")
@@ -88,6 +92,10 @@ public class RisikoNatPersonType {
protected AttributEnumType berufsgruppe;
@XmlElement(name = "ManuelleTaetigkeit")
protected AttributEnumType manuelleTaetigkeit;
+ @XmlElement(name = "BehandelnderArzt")
+ protected String behandelnderArzt;
+ @XmlElement(name = "KontaktRueckfragen")
+ protected String kontaktRueckfragen;
@XmlElement(name = "ZusaetzlicheRisikodaten")
protected List zusaetzlicheRisikodaten;
@@ -260,51 +268,61 @@ public class RisikoNatPersonType {
}
/**
- * Ruft den Wert der freizeitSportRisiko-Eigenschaft ab.
+ * Gets the value of the freizeitSportRisiken property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set method for the freizeitSportRisiken property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getFreizeitSportRisiken().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link AttributEnumType }
+ *
*
- * @return
- * possible object is
- * {@link AttributEnumType }
- *
*/
- public AttributEnumType getFreizeitSportRisiko() {
- return freizeitSportRisiko;
+ public List getFreizeitSportRisiken() {
+ if (freizeitSportRisiken == null) {
+ freizeitSportRisiken = new ArrayList();
+ }
+ return this.freizeitSportRisiken;
}
/**
- * Legt den Wert der freizeitSportRisiko-Eigenschaft fest.
+ * Gets the value of the risikozuschlaege property.
*
- * @param value
- * allowed object is
- * {@link AttributEnumType }
- *
- */
- public void setFreizeitSportRisiko(AttributEnumType value) {
- this.freizeitSportRisiko = value;
- }
-
- /**
- * Ruft den Wert der risikozuschlag-Eigenschaft ab.
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set method for the risikozuschlaege property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getRisikozuschlaege().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link AttributEnumType }
*
- * @return
- * possible object is
- * {@link AttributEnumType }
- *
- */
- public AttributEnumType getRisikozuschlag() {
- return risikozuschlag;
- }
-
- /**
- * Legt den Wert der risikozuschlag-Eigenschaft fest.
*
- * @param value
- * allowed object is
- * {@link AttributEnumType }
- *
*/
- public void setRisikozuschlag(AttributEnumType value) {
- this.risikozuschlag = value;
+ public List getRisikozuschlaege() {
+ if (risikozuschlaege == null) {
+ risikozuschlaege = new ArrayList();
+ }
+ return this.risikozuschlaege;
}
/**
@@ -403,6 +421,54 @@ public class RisikoNatPersonType {
this.manuelleTaetigkeit = value;
}
+ /**
+ * Ruft den Wert der behandelnderArzt-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getBehandelnderArzt() {
+ return behandelnderArzt;
+ }
+
+ /**
+ * Legt den Wert der behandelnderArzt-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setBehandelnderArzt(String value) {
+ this.behandelnderArzt = value;
+ }
+
+ /**
+ * Ruft den Wert der kontaktRueckfragen-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getKontaktRueckfragen() {
+ return kontaktRueckfragen;
+ }
+
+ /**
+ * Legt den Wert der kontaktRueckfragen-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setKontaktRueckfragen(String value) {
+ this.kontaktRueckfragen = value;
+ }
+
/**
* Gets the value of the zusaetzlicheRisikodaten property.
*
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SelbstbehaltType.java
index 5b330356..4a5669b1 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SelbstbehaltType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SelbstbehaltType.java
@@ -22,7 +22,7 @@ import javax.xml.bind.annotation.XmlType;
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Selbstbehalt" type="{urn:omds20}decimal" minOccurs="0"/>
- * <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ * <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
* <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
* <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
* </sequence>
@@ -45,8 +45,8 @@ public class SelbstbehaltType {
@XmlElement(name = "Selbstbehalt")
protected BigDecimal selbstbehalt;
@XmlElement(name = "SelbstbehaltProzentVs")
- @XmlSchemaType(name = "unsignedShort")
- protected Integer selbstbehaltProzentVs;
+ @XmlSchemaType(name = "unsignedByte")
+ protected Short selbstbehaltProzentVs;
@XmlElement(name = "SelbstbehaltMinBetrag")
protected BigDecimal selbstbehaltMinBetrag;
@XmlElement(name = "SelbstbehaltMaxBetrag")
@@ -81,10 +81,10 @@ public class SelbstbehaltType {
*
* @return
* possible object is
- * {@link Integer }
+ * {@link Short }
*
*/
- public Integer getSelbstbehaltProzentVs() {
+ public Short getSelbstbehaltProzentVs() {
return selbstbehaltProzentVs;
}
@@ -93,10 +93,10 @@ public class SelbstbehaltType {
*
* @param value
* allowed object is
- * {@link Integer }
+ * {@link Short }
*
*/
- public void setSelbstbehaltProzentVs(Integer value) {
+ public void setSelbstbehaltProzentVs(Short value) {
this.selbstbehaltProzentVs = value;
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SicherstellungType.java
index e05d2b62..2fe74795 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SicherstellungType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/SicherstellungType.java
@@ -11,7 +11,7 @@ import javax.xml.bind.annotation.XmlType;
/**
- * Typ fuer Sicherstellungen in der Personenversicherung
+ * Abstrakter Typ fuer Sicherstellungen
*
* Java-Klasse für Sicherstellung_Type complex type.
*
@@ -44,7 +44,7 @@ import javax.xml.bind.annotation.XmlType;
VerpfaendungType.class,
VinkulierungPersonenType.class
})
-public class SicherstellungType {
+public abstract class SicherstellungType {
@XmlElement(name = "Lfnr")
@XmlSchemaType(name = "unsignedShort")
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VarianteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VarianteType.java
deleted file mode 100644
index 77094c71..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VarianteType.java
+++ /dev/null
@@ -1,54 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-import javax.xml.bind.annotation.XmlEnum;
-import javax.xml.bind.annotation.XmlEnumValue;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- *
Java-Klasse für Variante_Type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <simpleType name="Variante_Type">
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="Premiumschutz"/>
- * <enumeration value="Classicschutz"/>
- * <enumeration value="Basisschutz"/>
- * </restriction>
- * </simpleType>
- *
- *
- */
-@XmlType(name = "Variante_Type")
-@XmlEnum
-public enum VarianteType {
-
- @XmlEnumValue("Premiumschutz")
- PREMIUMSCHUTZ("Premiumschutz"),
- @XmlEnumValue("Classicschutz")
- CLASSICSCHUTZ("Classicschutz"),
- @XmlEnumValue("Basisschutz")
- BASISSCHUTZ("Basisschutz");
- private final String value;
-
- VarianteType(String v) {
- value = v;
- }
-
- public String value() {
- return value;
- }
-
- public static VarianteType fromValue(String v) {
- for (VarianteType c: VarianteType.values()) {
- if (c.value.equals(v)) {
- return c;
- }
- }
- throw new IllegalArgumentException(v);
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktGenerischType.java
index 77ba6b41..518caa8e 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktGenerischType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktGenerischType.java
@@ -8,7 +8,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.VerkaufsproduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType;
@@ -44,7 +43,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.VerkaufsproduktS
"beschreibungTxt"
})
@XmlSeeAlso({
- VerkaufsproduktRechtsschutzType.class,
VerkaufsproduktSachPrivatType.class
})
public abstract class VerkaufsproduktGenerischType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktType.java
index c8b7043f..fb6f0b93 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VerkaufsproduktType.java
@@ -50,8 +50,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VerkaufsproduktKfzType;
"zusaetzlicheVerkaufproduktdaten"
})
@XmlSeeAlso({
- VerkaufsproduktGenerischType.class,
- VerkaufsproduktKfzType.class
+ VerkaufsproduktKfzType.class,
+ VerkaufsproduktGenerischType.class
})
public abstract class VerkaufsproduktType
extends ProduktbausteinType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherteLiegenschaftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherteLiegenschaftType.java
deleted file mode 100644
index e1bbde1c..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherteLiegenschaftType.java
+++ /dev/null
@@ -1,138 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-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.XmlType;
-import at.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
-
-
-/**
- * Versicherte Liegenschaft
- *
- * Java-Klasse für VersicherteLiegenschaft_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="VersicherteLiegenschaft_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- * <sequence>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
- * <element name="BebauteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- * <element name="UeberdachteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "VersicherteLiegenschaft_Type", propOrder = {
- "objektId",
- "adresse",
- "bebauteFlaecheInQm",
- "ueberdachteFlaecheInQm"
-})
-public class VersicherteLiegenschaftType
- extends VersichertesInteresseMitAttributMetadatenType
-{
-
- @XmlElement(name = "ObjektId", required = true)
- protected ObjektIdType objektId;
- @XmlElement(name = "Adresse", required = true)
- protected ADRESSEType adresse;
- @XmlElement(name = "BebauteFlaecheInQm")
- @XmlSchemaType(name = "unsignedInt")
- protected long bebauteFlaecheInQm;
- @XmlElement(name = "UeberdachteFlaecheInQm")
- @XmlSchemaType(name = "unsignedInt")
- protected long ueberdachteFlaecheInQm;
-
- /**
- * Ruft den Wert der objektId-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- /**
- * Ruft den Wert der adresse-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link ADRESSEType }
- *
- */
- public ADRESSEType getAdresse() {
- return adresse;
- }
-
- /**
- * Legt den Wert der adresse-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ADRESSEType }
- *
- */
- public void setAdresse(ADRESSEType value) {
- this.adresse = value;
- }
-
- /**
- * Ruft den Wert der bebauteFlaecheInQm-Eigenschaft ab.
- *
- */
- public long getBebauteFlaecheInQm() {
- return bebauteFlaecheInQm;
- }
-
- /**
- * Legt den Wert der bebauteFlaecheInQm-Eigenschaft fest.
- *
- */
- public void setBebauteFlaecheInQm(long value) {
- this.bebauteFlaecheInQm = value;
- }
-
- /**
- * Ruft den Wert der ueberdachteFlaecheInQm-Eigenschaft ab.
- *
- */
- public long getUeberdachteFlaecheInQm() {
- return ueberdachteFlaecheInQm;
- }
-
- /**
- * Legt den Wert der ueberdachteFlaecheInQm-Eigenschaft fest.
- *
- */
- public void setUeberdachteFlaecheInQm(long value) {
- this.ueberdachteFlaecheInQm = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertePersonType.java
index 03cec724..48610895 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertePersonType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertePersonType.java
@@ -4,6 +4,7 @@ package at.vvo.omds.types.omds3Types.r1_5_0.common;
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.XmlType;
@@ -19,7 +20,7 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
* <sequence>
- * <element name="Person" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
+ * <element name="RefPersonLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
* <choice minOccurs="0">
* <element name="RisikoNatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}RisikoNatPerson_Type"/>
* <element name="RisikoSonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
@@ -34,7 +35,7 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VersichertePerson_Type", propOrder = {
- "person",
+ "refPersonLfnr",
"risikoNatPerson",
"risikoSonstPerson"
})
@@ -42,35 +43,28 @@ public class VersichertePersonType
extends VersichertesInteresseMitAttributMetadatenType
{
- @XmlElement(name = "Person", required = true)
- protected PersonType person;
+ @XmlElement(name = "RefPersonLfnr")
+ @XmlSchemaType(name = "unsignedShort")
+ protected int refPersonLfnr;
@XmlElement(name = "RisikoNatPerson")
protected RisikoNatPersonType risikoNatPerson;
@XmlElement(name = "RisikoSonstPerson")
protected Object risikoSonstPerson;
/**
- * Ruft den Wert der person-Eigenschaft ab.
+ * Ruft den Wert der refPersonLfnr-Eigenschaft ab.
*
- * @return
- * possible object is
- * {@link PersonType }
- *
*/
- public PersonType getPerson() {
- return person;
+ public int getRefPersonLfnr() {
+ return refPersonLfnr;
}
/**
- * Legt den Wert der person-Eigenschaft fest.
+ * Legt den Wert der refPersonLfnr-Eigenschaft fest.
*
- * @param value
- * allowed object is
- * {@link PersonType }
- *
*/
- public void setPerson(PersonType value) {
- this.person = value;
+ public void setRefPersonLfnr(int value) {
+ this.refPersonLfnr = value;
}
/**
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherterBetriebType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherterBetriebType.java
deleted file mode 100644
index de6fcacc..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersicherterBetriebType.java
+++ /dev/null
@@ -1,273 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-import java.math.BigInteger;
-import java.util.ArrayList;
-import java.util.List;
-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.XmlType;
-import at.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
-
-
-/**
- * Versicherter Betrieb (Landwirtschaftlicher Betrieb, Verein)
- *
- * Java-Klasse für VersicherterBetrieb_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="VersicherterBetrieb_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- * <sequence>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
- * <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
- * <element name="Betriebsart" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- * <element name="Mitarbeiteranzahl" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- * <element name="Umsatz" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
- * <element name="FlaecheInHektar" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- * <element name="Mitgliederanzahl" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
- * <element name="ZusaetzlicheBetriebsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheBetriebsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "VersicherterBetrieb_Type", propOrder = {
- "objektId",
- "adresse",
- "betriebsart",
- "mitarbeiteranzahl",
- "umsatz",
- "flaecheInHektar",
- "mitgliederanzahl",
- "zusaetzlicheBetriebsdaten"
-})
-public class VersicherterBetriebType
- extends VersichertesInteresseMitAttributMetadatenType
-{
-
- @XmlElement(name = "ObjektId")
- protected ObjektIdType objektId;
- @XmlElement(name = "Adresse", required = true)
- protected ADRESSEType adresse;
- @XmlElement(name = "Betriebsart", required = true)
- protected List betriebsart;
- @XmlElement(name = "Mitarbeiteranzahl")
- @XmlSchemaType(name = "unsignedInt")
- protected long mitarbeiteranzahl;
- @XmlElement(name = "Umsatz", required = true)
- @XmlSchemaType(name = "unsignedLong")
- protected BigInteger umsatz;
- @XmlElement(name = "FlaecheInHektar")
- @XmlSchemaType(name = "unsignedInt")
- protected Long flaecheInHektar;
- @XmlElement(name = "Mitgliederanzahl")
- @XmlSchemaType(name = "unsignedLong")
- protected BigInteger mitgliederanzahl;
- @XmlElement(name = "ZusaetzlicheBetriebsdaten")
- protected List zusaetzlicheBetriebsdaten;
-
- /**
- * Ruft den Wert der objektId-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- /**
- * Ruft den Wert der adresse-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link ADRESSEType }
- *
- */
- public ADRESSEType getAdresse() {
- return adresse;
- }
-
- /**
- * Legt den Wert der adresse-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ADRESSEType }
- *
- */
- public void setAdresse(ADRESSEType value) {
- this.adresse = value;
- }
-
- /**
- * Gets the value of the betriebsart property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the betriebsart property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getBetriebsart().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link String }
- *
- *
- */
- public List getBetriebsart() {
- if (betriebsart == null) {
- betriebsart = new ArrayList();
- }
- return this.betriebsart;
- }
-
- /**
- * Ruft den Wert der mitarbeiteranzahl-Eigenschaft ab.
- *
- */
- public long getMitarbeiteranzahl() {
- return mitarbeiteranzahl;
- }
-
- /**
- * Legt den Wert der mitarbeiteranzahl-Eigenschaft fest.
- *
- */
- public void setMitarbeiteranzahl(long value) {
- this.mitarbeiteranzahl = value;
- }
-
- /**
- * Ruft den Wert der umsatz-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getUmsatz() {
- return umsatz;
- }
-
- /**
- * Legt den Wert der umsatz-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setUmsatz(BigInteger value) {
- this.umsatz = value;
- }
-
- /**
- * Ruft den Wert der flaecheInHektar-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link Long }
- *
- */
- public Long getFlaecheInHektar() {
- return flaecheInHektar;
- }
-
- /**
- * Legt den Wert der flaecheInHektar-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link Long }
- *
- */
- public void setFlaecheInHektar(Long value) {
- this.flaecheInHektar = value;
- }
-
- /**
- * Ruft den Wert der mitgliederanzahl-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getMitgliederanzahl() {
- return mitgliederanzahl;
- }
-
- /**
- * Legt den Wert der mitgliederanzahl-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setMitgliederanzahl(BigInteger value) {
- this.mitgliederanzahl = value;
- }
-
- /**
- * Gets the value of the zusaetzlicheBetriebsdaten property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the zusaetzlicheBetriebsdaten property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getZusaetzlicheBetriebsdaten().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link ZusaetzlicheBetriebsdatenType }
- *
- *
- */
- public List getZusaetzlicheBetriebsdaten() {
- if (zusaetzlicheBetriebsdaten == null) {
- zusaetzlicheBetriebsdaten = new ArrayList();
- }
- return this.zusaetzlicheBetriebsdaten;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertesInteresseMitAttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertesInteresseMitAttributMetadatenType.java
index 7fc1326e..2ec2a90a 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertesInteresseMitAttributMetadatenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VersichertesInteresseMitAttributMetadatenType.java
@@ -41,8 +41,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.VersichertesObje
@XmlSeeAlso({
VersichertePersonType.class,
VersicherteVeranstaltungType.class,
- VersicherterBetriebType.class,
- VersicherteLiegenschaftType.class,
VersichertesObjektSachPrivatType.class,
RisikoHaushaltType.class,
RisikoGebaeudeType.class
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenDetailType.java
index 98a819a0..5e6e6500 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenDetailType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenDetailType.java
@@ -55,8 +55,7 @@ import javax.xml.bind.annotation.XmlType;
"zusaetzlicheVorversicherungsdaten"
})
@XmlSeeAlso({
- VorversicherungType.class,
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class
+ VorversicherungType.class
})
public class VorversicherungenDetailType {
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenType.java
index 3dd916b8..15a46255 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/VorversicherungenType.java
@@ -5,7 +5,6 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VorversicherungenKfzType;
/**
@@ -29,8 +28,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VorversicherungenKfzTyp
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Vorversicherungen_Type")
@XmlSeeAlso({
- VorversicherungenImplType.class,
- VorversicherungenKfzType.class
+ VorversicherungenImplType.class
})
public abstract class VorversicherungenType {
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktGenerischType.java
deleted file mode 100644
index 21250c8b..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktGenerischType.java
+++ /dev/null
@@ -1,178 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-import java.math.BigDecimal;
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Basistyp für ein Zusatzprodukt, 2. Generation
- *
- * Java-Klasse für ZusatzproduktGenerisch_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="ZusatzproduktGenerisch_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Zusatzprodukt_Type">
- * <sequence>
- * <element name="Eingeschlossen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="EinschlussAenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- * <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="Versicherungssumme" type="{urn:omds20}decimal14_2" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ZusatzproduktGenerisch_Type", propOrder = {
- "eingeschlossen",
- "einschlussAenderbar",
- "attributMetadaten",
- "beschreibungTxt",
- "versicherungssumme"
-})
-public class ZusatzproduktGenerischType
- extends ZusatzproduktType
-{
-
- @XmlElement(name = "Eingeschlossen")
- protected boolean eingeschlossen;
- @XmlElement(name = "EinschlussAenderbar")
- protected Boolean einschlussAenderbar;
- @XmlElement(name = "AttributMetadaten")
- protected List attributMetadaten;
- @XmlElement(name = "BeschreibungTxt")
- protected String beschreibungTxt;
- @XmlElement(name = "Versicherungssumme")
- protected BigDecimal versicherungssumme;
-
- /**
- * Ruft den Wert der eingeschlossen-Eigenschaft ab.
- *
- */
- public boolean isEingeschlossen() {
- return eingeschlossen;
- }
-
- /**
- * Legt den Wert der eingeschlossen-Eigenschaft fest.
- *
- */
- public void setEingeschlossen(boolean value) {
- this.eingeschlossen = value;
- }
-
- /**
- * Ruft den Wert der einschlussAenderbar-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public Boolean isEinschlussAenderbar() {
- return einschlussAenderbar;
- }
-
- /**
- * Legt den Wert der einschlussAenderbar-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setEinschlussAenderbar(Boolean value) {
- this.einschlussAenderbar = value;
- }
-
- /**
- * Gets the value of the attributMetadaten property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the attributMetadaten property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getAttributMetadaten().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link AttributMetadatenType }
- *
- *
- */
- public List getAttributMetadaten() {
- if (attributMetadaten == null) {
- attributMetadaten = new ArrayList();
- }
- return this.attributMetadaten;
- }
-
- /**
- * Ruft den Wert der beschreibungTxt-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getBeschreibungTxt() {
- return beschreibungTxt;
- }
-
- /**
- * Legt den Wert der beschreibungTxt-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setBeschreibungTxt(String value) {
- this.beschreibungTxt = value;
- }
-
- /**
- * Ruft den Wert der versicherungssumme-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link BigDecimal }
- *
- */
- public BigDecimal getVersicherungssumme() {
- return versicherungssumme;
- }
-
- /**
- * Legt den Wert der versicherungssumme-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link BigDecimal }
- *
- */
- public void setVersicherungssumme(BigDecimal value) {
- this.versicherungssumme = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktType.java
deleted file mode 100644
index 4c162ee4..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZusatzproduktType.java
+++ /dev/null
@@ -1,108 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.common;
-
-import java.util.ArrayList;
-import java.util.List;
-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;
-import javax.xml.datatype.XMLGregorianCalendar;
-
-
-/**
- * Basistyp für ein Zusatzprodukt (wird nirgends verwendet)
- *
- * Java-Klasse für Zusatzprodukt_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="Zusatzprodukt_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- * <sequence>
- * <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- * <element name="ZusaetzlicheZusatzproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheZusatzproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "Zusatzprodukt_Type", propOrder = {
- "vtgBeg",
- "zusaetzlicheZusatzproduktdaten"
-})
-@XmlSeeAlso({
- ZusatzproduktGenerischType.class
-})
-public abstract class ZusatzproduktType
- extends ProduktbausteinType
-{
-
- @XmlElement(name = "VtgBeg")
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar vtgBeg;
- @XmlElement(name = "ZusaetzlicheZusatzproduktdaten")
- protected List zusaetzlicheZusatzproduktdaten;
-
- /**
- * Ruft den Wert der vtgBeg-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getVtgBeg() {
- return vtgBeg;
- }
-
- /**
- * Legt den Wert der vtgBeg-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setVtgBeg(XMLGregorianCalendar value) {
- this.vtgBeg = value;
- }
-
- /**
- * Gets the value of the zusaetzlicheZusatzproduktdaten property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the zusaetzlicheZusatzproduktdaten property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getZusaetzlicheZusatzproduktdaten().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link ZusaetzlicheZusatzproduktdatenType }
- *
- *
- */
- public List getZusaetzlicheZusatzproduktdaten() {
- if (zusaetzlicheZusatzproduktdaten == null) {
- zusaetzlicheZusatzproduktdaten = new ArrayList();
- }
- return this.zusaetzlicheZusatzproduktdaten;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZustimmungGesundheitsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZustimmungGesundheitsdatenType.java
index cc40d51e..0a56032e 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZustimmungGesundheitsdatenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/common/ZustimmungGesundheitsdatenType.java
@@ -20,7 +20,9 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
- * <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ * <element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ * <element name="Type" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
+ * <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Zustimmung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
@@ -32,31 +34,78 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ZustimmungGesundheitsdaten_Type", propOrder = {
- "lfnr",
+ "personRefLfnr",
+ "type",
+ "text",
"zustimmung"
})
public class ZustimmungGesundheitsdatenType {
- @XmlElement(name = "Lfnr")
+ @XmlElement(name = "PersonRefLfnr")
@XmlSchemaType(name = "unsignedShort")
- protected int lfnr;
+ protected int personRefLfnr;
+ @XmlElement(name = "Type")
+ @XmlSchemaType(name = "unsignedShort")
+ protected int type;
+ @XmlElement(name = "Text")
+ protected String text;
@XmlElement(name = "Zustimmung")
protected boolean zustimmung;
/**
- * Ruft den Wert der lfnr-Eigenschaft ab.
+ * Ruft den Wert der personRefLfnr-Eigenschaft ab.
*
*/
- public int getLfnr() {
- return lfnr;
+ public int getPersonRefLfnr() {
+ return personRefLfnr;
}
/**
- * Legt den Wert der lfnr-Eigenschaft fest.
+ * Legt den Wert der personRefLfnr-Eigenschaft fest.
*
*/
- public void setLfnr(int value) {
- this.lfnr = value;
+ public void setPersonRefLfnr(int value) {
+ this.personRefLfnr = value;
+ }
+
+ /**
+ * Ruft den Wert der type-Eigenschaft ab.
+ *
+ */
+ public int getType() {
+ return type;
+ }
+
+ /**
+ * Legt den Wert der type-Eigenschaft fest.
+ *
+ */
+ public void setType(int value) {
+ this.type = value;
+ }
+
+ /**
+ * Ruft den Wert der text-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getText() {
+ return text;
+ }
+
+ /**
+ * Legt den Wert der text-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setText(String value) {
+ this.text = value;
}
/**
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestGenType.java
index b4fc3495..eca826e9 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestGenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestGenType.java
@@ -6,7 +6,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType;
@@ -36,7 +35,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPri
"produktmetadaten"
})
@XmlSeeAlso({
- CalculateRechtsschutzRequestType.class,
CalculateSachPrivatRequestType.class
})
public abstract class CalculateRequestGenType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestType.java
index 7b47049d..3fcc7f73 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateRequestType.java
@@ -36,8 +36,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzRequestType
"requestUpselling"
})
@XmlSeeAlso({
- CalculateRequestGenType.class,
- CalculateKfzRequestType.class
+ CalculateKfzRequestType.class,
+ CalculateRequestGenType.class
})
public abstract class CalculateRequestType
extends CommonProcessRequestType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseGenType.java
index d623d92f..43d00b38 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseGenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseGenType.java
@@ -5,7 +5,6 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType;
@@ -30,7 +29,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPri
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateResponseGen_Type")
@XmlSeeAlso({
- CalculateRechtsschutzResponseType.class,
CalculateSachPrivatResponseType.class
})
public abstract class CalculateResponseGenType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseType.java
index d37a9eb0..e1e887ff 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CalculateResponseType.java
@@ -30,8 +30,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzResponseTyp
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateResponse_Type")
@XmlSeeAlso({
- CalculateResponseGenType.class,
- CalculateKfzResponseType.class
+ CalculateKfzResponseType.class,
+ CalculateResponseGenType.class
})
public abstract class CalculateResponseType
extends CommonProcessResponseType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestGenType.java
index c0d143e9..438ee35c 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestGenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestGenType.java
@@ -6,7 +6,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType;
@@ -36,7 +35,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicatio
"produktmetadaten"
})
@XmlSeeAlso({
- CreateApplicationRechtsschutzRequestType.class,
CreateApplicationSachPrivatRequestType.class
})
public abstract class CreateApplicationRequestGenType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestType.java
index 0d409022..31fbcbe6 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationRequestType.java
@@ -39,8 +39,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzReq
"dateianhaenge"
})
@XmlSeeAlso({
- CreateApplicationRequestGenType.class,
- CreateApplicationKfzRequestType.class
+ CreateApplicationKfzRequestType.class,
+ CreateApplicationRequestGenType.class
})
public abstract class CreateApplicationRequestType
extends CommonProcessRequestType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseGenType.java
index 7681ee7b..f6584d64 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseGenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseGenType.java
@@ -5,7 +5,6 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType;
@@ -30,7 +29,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicatio
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationResponseGen_Type")
@XmlSeeAlso({
- CreateApplicationRechtsschutzResponseType.class,
CreateApplicationSachPrivatResponseType.class
})
public abstract class CreateApplicationResponseGenType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseType.java
index a4e86e8a..7e8c8364 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateApplicationResponseType.java
@@ -44,8 +44,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzRes
"dokumente"
})
@XmlSeeAlso({
- CreateApplicationResponseGenType.class,
- CreateApplicationKfzResponseType.class
+ CreateApplicationKfzResponseType.class,
+ CreateApplicationResponseGenType.class
})
public abstract class CreateApplicationResponseType
extends CommonProcessResponseType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestGenType.java
index 773060b3..859f073e 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestGenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestGenType.java
@@ -6,7 +6,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType;
@@ -36,7 +35,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachP
"produktmetadaten"
})
@XmlSeeAlso({
- CreateOfferRechtsschutzRequestType.class,
CreateOfferSachPrivatRequestType.class
})
public abstract class CreateOfferRequestGenType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestType.java
index a2b86224..575c0f60 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferRequestType.java
@@ -30,8 +30,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzRequestTy
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferRequest_Type")
@XmlSeeAlso({
- CreateOfferRequestGenType.class,
- CreateOfferKfzRequestType.class
+ CreateOfferKfzRequestType.class,
+ CreateOfferRequestGenType.class
})
public abstract class CreateOfferRequestType
extends CommonProcessRequestType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseGenType.java
index 45aedc84..f87c4dd2 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseGenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseGenType.java
@@ -5,7 +5,6 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType;
@@ -30,7 +29,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachP
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferResponseGen_Type")
@XmlSeeAlso({
- CreateOfferRechtsschutzResponseType.class,
CreateOfferSachPrivatResponseType.class
})
public abstract class CreateOfferResponseGenType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseType.java
index 30c550c4..a1205779 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/CreateOfferResponseType.java
@@ -39,8 +39,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzResponseT
"dokumente"
})
@XmlSeeAlso({
- CreateOfferResponseGenType.class,
- CreateOfferKfzResponseType.class
+ CreateOfferKfzResponseType.class,
+ CreateOfferResponseGenType.class
})
public abstract class CreateOfferResponseType
extends CommonProcessResponseType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragBasisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragBasisType.java
index b200b967..46d49899 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragBasisType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragBasisType.java
@@ -19,6 +19,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.PolizzenversandType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.VertragspersonType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.VorversicherungenType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.ZahlungsdatenType;
+import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SpezAntragKfzType;
/**
@@ -77,7 +78,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.ZahlungsdatenType;
"zusaetzlicheAntragsdaten"
})
@XmlSeeAlso({
- SpezAntragPersonenType.class,
+ SpezAntragKfzType.class,
SpezAntragType.class
})
public abstract class SpezAntragBasisType {
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragPersonenType.java
index 436f85a6..7911beb6 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragPersonenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragPersonenType.java
@@ -5,7 +5,10 @@ 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.vvo.omds.types.omds3Types.r1_5_0.common.SicherstellungType;
+import at.vvo.omds.types.omds3Types.r1_5_0.common.FATCAType;
+import at.vvo.omds.types.omds3Types.r1_5_0.common.GMSGType;
+import at.vvo.omds.types.omds3Types.r1_5_0.common.PEPType;
+import at.vvo.omds.types.omds3Types.r1_5_0.common.TreuhaenderfrageType;
/**
@@ -18,11 +21,12 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SicherstellungType;
*
* <complexType name="SpezAntragPersonen_Type">
* <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragBasis_Type">
+ * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
* <sequence>
- * <element name="Sicherstellung" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" minOccurs="0"/>
- * <element name="ZustGesundheitsdaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="Unanfechtbarkeit" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * <element name="FATCA" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_Type" minOccurs="0"/>
+ * <element name="GSGM" type="{urn:omds3CommonServiceTypes-1-1-0}GMSG_Type" minOccurs="0"/>
+ * <element name="PEP" type="{urn:omds3CommonServiceTypes-1-1-0}PEP_Type" minOccurs="0"/>
+ * <element name="Treuhaenderfrage" type="{urn:omds3CommonServiceTypes-1-1-0}Treuhaenderfrage_Type"/>
* </sequence>
* </extension>
* </complexContent>
@@ -33,75 +37,118 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SicherstellungType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezAntragPersonen_Type", propOrder = {
- "sicherstellung",
- "zustGesundheitsdaten",
- "unanfechtbarkeit"
+ "fatca",
+ "gsgm",
+ "pep",
+ "treuhaenderfrage"
})
public abstract class SpezAntragPersonenType
- extends SpezAntragBasisType
+ extends SpezAntragType
{
- @XmlElement(name = "Sicherstellung")
- protected SicherstellungType sicherstellung;
- @XmlElement(name = "ZustGesundheitsdaten")
- protected boolean zustGesundheitsdaten;
- @XmlElement(name = "Unanfechtbarkeit")
- protected boolean unanfechtbarkeit;
+ @XmlElement(name = "FATCA")
+ protected FATCAType fatca;
+ @XmlElement(name = "GSGM")
+ protected GMSGType gsgm;
+ @XmlElement(name = "PEP")
+ protected PEPType pep;
+ @XmlElement(name = "Treuhaenderfrage", required = true)
+ protected TreuhaenderfrageType treuhaenderfrage;
/**
- * Ruft den Wert der sicherstellung-Eigenschaft ab.
+ * Ruft den Wert der fatca-Eigenschaft ab.
*
* @return
* possible object is
- * {@link SicherstellungType }
+ * {@link FATCAType }
*
*/
- public SicherstellungType getSicherstellung() {
- return sicherstellung;
+ public FATCAType getFATCA() {
+ return fatca;
}
/**
- * Legt den Wert der sicherstellung-Eigenschaft fest.
+ * Legt den Wert der fatca-Eigenschaft fest.
*
* @param value
* allowed object is
- * {@link SicherstellungType }
+ * {@link FATCAType }
*
*/
- public void setSicherstellung(SicherstellungType value) {
- this.sicherstellung = value;
+ public void setFATCA(FATCAType value) {
+ this.fatca = value;
}
/**
- * Ruft den Wert der zustGesundheitsdaten-Eigenschaft ab.
+ * Ruft den Wert der gsgm-Eigenschaft ab.
*
+ * @return
+ * possible object is
+ * {@link GMSGType }
+ *
*/
- public boolean isZustGesundheitsdaten() {
- return zustGesundheitsdaten;
+ public GMSGType getGSGM() {
+ return gsgm;
}
/**
- * Legt den Wert der zustGesundheitsdaten-Eigenschaft fest.
+ * Legt den Wert der gsgm-Eigenschaft fest.
*
+ * @param value
+ * allowed object is
+ * {@link GMSGType }
+ *
*/
- public void setZustGesundheitsdaten(boolean value) {
- this.zustGesundheitsdaten = value;
+ public void setGSGM(GMSGType value) {
+ this.gsgm = value;
}
/**
- * Ruft den Wert der unanfechtbarkeit-Eigenschaft ab.
+ * Ruft den Wert der pep-Eigenschaft ab.
*
+ * @return
+ * possible object is
+ * {@link PEPType }
+ *
*/
- public boolean isUnanfechtbarkeit() {
- return unanfechtbarkeit;
+ public PEPType getPEP() {
+ return pep;
}
/**
- * Legt den Wert der unanfechtbarkeit-Eigenschaft fest.
+ * Legt den Wert der pep-Eigenschaft fest.
*
+ * @param value
+ * allowed object is
+ * {@link PEPType }
+ *
*/
- public void setUnanfechtbarkeit(boolean value) {
- this.unanfechtbarkeit = value;
+ public void setPEP(PEPType value) {
+ this.pep = value;
+ }
+
+ /**
+ * Ruft den Wert der treuhaenderfrage-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link TreuhaenderfrageType }
+ *
+ */
+ public TreuhaenderfrageType getTreuhaenderfrage() {
+ return treuhaenderfrage;
+ }
+
+ /**
+ * Legt den Wert der treuhaenderfrage-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link TreuhaenderfrageType }
+ *
+ */
+ public void setTreuhaenderfrage(TreuhaenderfrageType value) {
+ this.treuhaenderfrage = value;
}
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragType.java
index a6841cd5..a325294e 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezAntragType.java
@@ -1,14 +1,16 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common;
+import java.util.ArrayList;
+import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.VinkularglaeubigerType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SpezAntragKfzType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SpezAntragRechtsschutzType;
+import at.vvo.omds.types.omds3Types.r1_5_0.common.BezugsberechtigungType;
+import at.vvo.omds.types.omds3Types.r1_5_0.common.SicherstellungType;
+import at.vvo.omds.types.omds3Types.r1_5_0.common.ZustimmungGesundheitsdatenType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.AntragSachPrivatType;
@@ -24,7 +26,9 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.AntragSachPrivat
* <complexContent>
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragBasis_Type">
* <sequence>
- * <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
+ * <element name="Bezugsberechtigungen" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="Sicherstellungen" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="ZustimmungGesundheitsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZustimmungGesundheitsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -35,42 +39,110 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.AntragSachPrivat
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezAntrag_Type", propOrder = {
- "vinkulierung"
+ "bezugsberechtigungen",
+ "sicherstellungen",
+ "zustimmungGesundheitsdaten"
})
@XmlSeeAlso({
- SpezAntragRechtsschutzType.class,
- AntragSachPrivatType.class,
- SpezAntragKfzType.class
+ SpezAntragPersonenType.class,
+ AntragSachPrivatType.class
})
public abstract class SpezAntragType
extends SpezAntragBasisType
{
- @XmlElement(name = "Vinkulierung")
- protected VinkularglaeubigerType vinkulierung;
+ @XmlElement(name = "Bezugsberechtigungen")
+ protected List bezugsberechtigungen;
+ @XmlElement(name = "Sicherstellungen")
+ protected List sicherstellungen;
+ @XmlElement(name = "ZustimmungGesundheitsdaten")
+ protected List zustimmungGesundheitsdaten;
/**
- * Ruft den Wert der vinkulierung-Eigenschaft ab.
+ * Gets the value of the bezugsberechtigungen property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set method for the bezugsberechtigungen property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getBezugsberechtigungen().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link BezugsberechtigungType }
+ *
*
- * @return
- * possible object is
- * {@link VinkularglaeubigerType }
- *
*/
- public VinkularglaeubigerType getVinkulierung() {
- return vinkulierung;
+ public List getBezugsberechtigungen() {
+ if (bezugsberechtigungen == null) {
+ bezugsberechtigungen = new ArrayList();
+ }
+ return this.bezugsberechtigungen;
}
/**
- * Legt den Wert der vinkulierung-Eigenschaft fest.
+ * Gets the value of the sicherstellungen property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set method for the sicherstellungen property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getSicherstellungen().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link SicherstellungType }
+ *
*
- * @param value
- * allowed object is
- * {@link VinkularglaeubigerType }
- *
*/
- public void setVinkulierung(VinkularglaeubigerType value) {
- this.vinkulierung = value;
+ public List getSicherstellungen() {
+ if (sicherstellungen == null) {
+ sicherstellungen = new ArrayList();
+ }
+ return this.sicherstellungen;
+ }
+
+ /**
+ * Gets the value of the zustimmungGesundheitsdaten property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set method for the zustimmungGesundheitsdaten property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getZustimmungGesundheitsdaten().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link ZustimmungGesundheitsdatenType }
+ *
+ *
+ */
+ public List getZustimmungGesundheitsdaten() {
+ if (zustimmungGesundheitsdaten == null) {
+ zustimmungGesundheitsdaten = new ArrayList();
+ }
+ return this.zustimmungGesundheitsdaten;
}
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezBerechnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezBerechnungType.java
index 8a5912b2..082c1919 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezBerechnungType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezBerechnungType.java
@@ -1,12 +1,15 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common;
+import java.util.ArrayList;
+import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
+import at.vvo.omds.types.omds3Types.r1_5_0.common.BeteiligtePersonVertragType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SpezBerechnungKfzType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SpezBerechnungRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.BerechnungSachPrivatType;
@@ -21,6 +24,9 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.BerechnungSachPr
* <complexType name="SpezBerechnung_Type">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
* </restriction>
* </complexContent>
* </complexType>
@@ -29,13 +35,45 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.BerechnungSachPr
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SpezBerechnung_Type")
+@XmlType(name = "SpezBerechnung_Type", propOrder = {
+ "personen"
+})
@XmlSeeAlso({
- SpezBerechnungRechtsschutzType.class,
- BerechnungSachPrivatType.class,
- SpezBerechnungKfzType.class
+ SpezBerechnungKfzType.class,
+ BerechnungSachPrivatType.class
})
public abstract class SpezBerechnungType {
+ @XmlElement(name = "Personen")
+ protected List personen;
+
+ /**
+ * Gets the value of the personen property.
+ *
+ *
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a set method for the personen property.
+ *
+ *
+ * For example, to add a new item, do as follows:
+ *
+ * getPersonen().add(newItem);
+ *
+ *
+ *
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link BeteiligtePersonVertragType }
+ *
+ *
+ */
+ public List getPersonen() {
+ if (personen == null) {
+ personen = new ArrayList();
+ }
+ return this.personen;
+ }
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezOffertType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezOffertType.java
index cd104eb0..3e07b2c3 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezOffertType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SpezOffertType.java
@@ -12,7 +12,6 @@ import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.BeteiligtePersonVertragType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SpezOffertKfzType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SpezOffertRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.OffertSachPrivatType;
@@ -46,9 +45,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.OffertSachPrivat
"versicherungsnehmer"
})
@XmlSeeAlso({
- SpezOffertRechtsschutzType.class,
- OffertSachPrivatType.class,
- SpezOffertKfzType.class
+ SpezOffertKfzType.class,
+ OffertSachPrivatType.class
})
public abstract class SpezOffertType {
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestGenType.java
index 76a491e0..8d3fa9b0 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestGenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestGenType.java
@@ -6,7 +6,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType;
@@ -36,7 +35,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicatio
"produktmetadaten"
})
@XmlSeeAlso({
- SubmitApplicationRechtsschutzRequestType.class,
SubmitApplicationSachPrivatRequestType.class
})
public abstract class SubmitApplicationRequestGenType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestType.java
index b1912acd..225c7141 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationRequestType.java
@@ -42,8 +42,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzReq
"antragsnummer"
})
@XmlSeeAlso({
- SubmitApplicationRequestGenType.class,
- SubmitApplicationKfzRequestType.class
+ SubmitApplicationKfzRequestType.class,
+ SubmitApplicationRequestGenType.class
})
public abstract class SubmitApplicationRequestType
extends CommonProcessRequestType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseGenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseGenType.java
index d84084cb..1efff268 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseGenType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseGenType.java
@@ -5,7 +5,6 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType;
@@ -30,7 +29,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicatio
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationResponseGen_Type")
@XmlSeeAlso({
- SubmitApplicationRechtsschutzResponseType.class,
SubmitApplicationSachPrivatResponseType.class
})
public abstract class SubmitApplicationResponseGenType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseType.java
index b3b37dc2..c3d63b03 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/common/SubmitApplicationResponseType.java
@@ -44,8 +44,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzRes
"dokumente"
})
@XmlSeeAlso({
- SubmitApplicationResponseGenType.class,
- SubmitApplicationKfzResponseType.class
+ SubmitApplicationKfzResponseType.class,
+ SubmitApplicationResponseGenType.class
})
public abstract class SubmitApplicationResponseType
extends CommonProcessResponseType
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ObjectFactory.java
index b42abd26..e5357da4 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ObjectFactory.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/ObjectFactory.java
@@ -41,14 +41,6 @@ public class ObjectFactory {
public ObjectFactory() {
}
- /**
- * Create an instance of {@link VorversicherungenKfzType }
- *
- */
- public VorversicherungenKfzType createVorversicherungenKfzType() {
- return new VorversicherungenKfzType();
- }
-
/**
* Create an instance of {@link CreateOfferKfzResponseType }
*
@@ -249,14 +241,6 @@ public class ObjectFactory {
return new ZusaetzlicheAntragsdatenKfzType();
}
- /**
- * Create an instance of {@link VorversicherungenKfzType.VorversicherungKfz }
- *
- */
- public VorversicherungenKfzType.VorversicherungKfz createVorversicherungenKfzTypeVorversicherungKfz() {
- return new VorversicherungenKfzType.VorversicherungKfz();
- }
-
/**
* Create an instance of {@link CreateOfferKfzResponseType.Offertantwort }
*
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezAntragKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezAntragKfzType.java
index b3f99a41..a2b9fbba 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezAntragKfzType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/SpezAntragKfzType.java
@@ -6,7 +6,8 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.BonusMalusSystemType;
-import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezAntragType;
+import at.vvo.omds.types.omds3Types.r1_5_0.common.VinkularglaeubigerType;
+import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezAntragBasisType;
/**
@@ -19,10 +20,11 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezAntragType;
*
* <complexType name="SpezAntragKfz_Type">
* <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
+ * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragBasis_Type">
* <sequence>
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
* <element name="BonusMalus" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusSystem_Type" minOccurs="0"/>
+ * <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
* <element name="ZusaetzlicheKfzDaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheKfzdaten_Type" minOccurs="0"/>
* </sequence>
* </extension>
@@ -36,16 +38,19 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezAntragType;
@XmlType(name = "SpezAntragKfz_Type", propOrder = {
"verkaufsprodukt",
"bonusMalus",
+ "vinkulierung",
"zusaetzlicheKfzDaten"
})
public class SpezAntragKfzType
- extends SpezAntragType
+ extends SpezAntragBasisType
{
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktKfzType verkaufsprodukt;
@XmlElement(name = "BonusMalus")
protected BonusMalusSystemType bonusMalus;
+ @XmlElement(name = "Vinkulierung")
+ protected VinkularglaeubigerType vinkulierung;
@XmlElement(name = "ZusaetzlicheKfzDaten")
protected ZusaetzlicheKfzdatenType zusaetzlicheKfzDaten;
@@ -97,6 +102,30 @@ public class SpezAntragKfzType
this.bonusMalus = value;
}
+ /**
+ * Ruft den Wert der vinkulierung-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link VinkularglaeubigerType }
+ *
+ */
+ public VinkularglaeubigerType getVinkulierung() {
+ return vinkulierung;
+ }
+
+ /**
+ * Legt den Wert der vinkulierung-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link VinkularglaeubigerType }
+ *
+ */
+ public void setVinkulierung(VinkularglaeubigerType value) {
+ this.vinkulierung = value;
+ }
+
/**
* Ruft den Wert der zusaetzlicheKfzDaten-Eigenschaft ab.
*
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VorversicherungenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VorversicherungenKfzType.java
deleted file mode 100644
index 6e649fce..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/kfz/VorversicherungenKfzType.java
+++ /dev/null
@@ -1,165 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.VorversicherungenDetailType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.VorversicherungenType;
-
-
-/**
- * Vorversicherungen für Kfz (alternativ Typ: cst:VorversicherungenImpl_Type)
- *
- * Java-Klasse für VorversicherungenKfz_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="VorversicherungenKfz_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- * <sequence>
- * <element name="VorversicherungKfz" maxOccurs="unbounded" minOccurs="0">
- * <complexType>
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- * <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- * </extension>
- * </complexContent>
- * </complexType>
- * </element>
- * <element name="VorversicherungRechtsschutz" type="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "VorversicherungenKfz_Type", propOrder = {
- "vorversicherungKfz",
- "vorversicherungRechtsschutz"
-})
-public class VorversicherungenKfzType
- extends VorversicherungenType
-{
-
- @XmlElement(name = "VorversicherungKfz")
- protected List vorversicherungKfz;
- @XmlElement(name = "VorversicherungRechtsschutz")
- protected VorversicherungenDetailType vorversicherungRechtsschutz;
-
- /**
- * Gets the value of the vorversicherungKfz property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the vorversicherungKfz property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getVorversicherungKfz().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link VorversicherungenKfzType.VorversicherungKfz }
- *
- *
- */
- public List getVorversicherungKfz() {
- if (vorversicherungKfz == null) {
- vorversicherungKfz = new ArrayList();
- }
- return this.vorversicherungKfz;
- }
-
- /**
- * Ruft den Wert der vorversicherungRechtsschutz-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link VorversicherungenDetailType }
- *
- */
- public VorversicherungenDetailType getVorversicherungRechtsschutz() {
- return vorversicherungRechtsschutz;
- }
-
- /**
- * Legt den Wert der vorversicherungRechtsschutz-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link VorversicherungenDetailType }
- *
- */
- public void setVorversicherungRechtsschutz(VorversicherungenDetailType value) {
- this.vorversicherungRechtsschutz = value;
- }
-
-
- /**
- * Java-Klasse für anonymous complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType>
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- * <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "")
- public static class VorversicherungKfz
- extends VorversicherungenDetailType
- {
-
- @XmlAttribute(name = "VtgSparteCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz")
- protected String vtgSparteCd;
-
- /**
- * Ruft den Wert der vtgSparteCd-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVtgSparteCd() {
- return vtgSparteCd;
- }
-
- /**
- * Legt den Wert der vtgSparteCd-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVtgSparteCd(String value) {
- this.vtgSparteCd = value;
- }
-
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CalculateRechtsschutzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CalculateRechtsschutzRequestType.java
deleted file mode 100644
index 5c397f26..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CalculateRechtsschutzRequestType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CalculateRequestGenType;
-
-
-/**
- * Typ des Requestobjekts für eine Berechnung Rechtsschutz
- *
- * Java-Klasse für CalculateRechtsschutzRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="CalculateRechtsschutzRequest_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- * <sequence>
- * <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CalculateRechtsschutzRequest_Type", propOrder = {
- "berechnungsanfrage"
-})
-public class CalculateRechtsschutzRequestType
- extends CalculateRequestGenType
-{
-
- @XmlElement(name = "Berechnungsanfrage", required = true)
- protected SpezBerechnungRechtsschutzType berechnungsanfrage;
-
- /**
- * Ruft den Wert der berechnungsanfrage-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link SpezBerechnungRechtsschutzType }
- *
- */
- public SpezBerechnungRechtsschutzType getBerechnungsanfrage() {
- return berechnungsanfrage;
- }
-
- /**
- * Legt den Wert der berechnungsanfrage-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link SpezBerechnungRechtsschutzType }
- *
- */
- public void setBerechnungsanfrage(SpezBerechnungRechtsschutzType value) {
- this.berechnungsanfrage = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CalculateRechtsschutzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CalculateRechtsschutzResponseType.java
deleted file mode 100644
index 0a9daa2b..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CalculateRechtsschutzResponseType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CalculateResponseGenType;
-
-
-/**
- * Typ des Responseobjekt bei der Rechtsschutz-Berechnung
- *
- * Java-Klasse für CalculateRechtsschutzResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="CalculateRechtsschutzResponse_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- * <sequence>
- * <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CalculateRechtsschutzResponse_Type", propOrder = {
- "berechnungsantwort"
-})
-public class CalculateRechtsschutzResponseType
- extends CalculateResponseGenType
-{
-
- @XmlElement(name = "Berechnungsantwort", required = true)
- protected SpezBerechnungRechtsschutzType berechnungsantwort;
-
- /**
- * Ruft den Wert der berechnungsantwort-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link SpezBerechnungRechtsschutzType }
- *
- */
- public SpezBerechnungRechtsschutzType getBerechnungsantwort() {
- return berechnungsantwort;
- }
-
- /**
- * Legt den Wert der berechnungsantwort-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link SpezBerechnungRechtsschutzType }
- *
- */
- public void setBerechnungsantwort(SpezBerechnungRechtsschutzType value) {
- this.berechnungsantwort = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateApplicationRechtsschutzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateApplicationRechtsschutzRequestType.java
deleted file mode 100644
index d2b40f84..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateApplicationRechtsschutzRequestType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateApplicationRequestGenType;
-
-
-/**
- * Type des Requestobjekts für die Erstellung eines Rechtsschutzantrags
- *
- * Java-Klasse für CreateApplicationRechtsschutzRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="CreateApplicationRechtsschutzRequest_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- * <sequence>
- * <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CreateApplicationRechtsschutzRequest_Type", propOrder = {
- "antragsanfrage"
-})
-public class CreateApplicationRechtsschutzRequestType
- extends CreateApplicationRequestGenType
-{
-
- @XmlElement(name = "Antragsanfrage", required = true)
- protected SpezAntragRechtsschutzType antragsanfrage;
-
- /**
- * Ruft den Wert der antragsanfrage-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link SpezAntragRechtsschutzType }
- *
- */
- public SpezAntragRechtsschutzType getAntragsanfrage() {
- return antragsanfrage;
- }
-
- /**
- * Legt den Wert der antragsanfrage-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link SpezAntragRechtsschutzType }
- *
- */
- public void setAntragsanfrage(SpezAntragRechtsschutzType value) {
- this.antragsanfrage = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateApplicationRechtsschutzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateApplicationRechtsschutzResponseType.java
deleted file mode 100644
index cc9809b7..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateApplicationRechtsschutzResponseType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateApplicationResponseGenType;
-
-
-/**
- * Type des Responseobjekts bei der Erstellung eines Rechtsschutzantrags
- *
- * Java-Klasse für CreateApplicationRechtsschutzResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="CreateApplicationRechtsschutzResponse_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- * <sequence>
- * <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CreateApplicationRechtsschutzResponse_Type", propOrder = {
- "antragsantwort"
-})
-public class CreateApplicationRechtsschutzResponseType
- extends CreateApplicationResponseGenType
-{
-
- @XmlElement(name = "Antragsantwort", required = true)
- protected SpezAntragRechtsschutzType antragsantwort;
-
- /**
- * Ruft den Wert der antragsantwort-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link SpezAntragRechtsschutzType }
- *
- */
- public SpezAntragRechtsschutzType getAntragsantwort() {
- return antragsantwort;
- }
-
- /**
- * Legt den Wert der antragsantwort-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link SpezAntragRechtsschutzType }
- *
- */
- public void setAntragsantwort(SpezAntragRechtsschutzType value) {
- this.antragsantwort = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateOfferRechtsschutzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateOfferRechtsschutzRequestType.java
deleted file mode 100644
index 572d4808..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateOfferRechtsschutzRequestType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateOfferRequestGenType;
-
-
-/**
- * Typ des Requestobjekts für eine Erstellung eines Rechstsschutz-Offerts
- *
- * Java-Klasse für CreateOfferRechtsschutzRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="CreateOfferRechtsschutzRequest_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- * <sequence>
- * <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CreateOfferRechtsschutzRequest_Type", propOrder = {
- "offertanfrage"
-})
-public class CreateOfferRechtsschutzRequestType
- extends CreateOfferRequestGenType
-{
-
- @XmlElement(name = "Offertanfrage", required = true)
- protected SpezOffertRechtsschutzType offertanfrage;
-
- /**
- * Ruft den Wert der offertanfrage-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link SpezOffertRechtsschutzType }
- *
- */
- public SpezOffertRechtsschutzType getOffertanfrage() {
- return offertanfrage;
- }
-
- /**
- * Legt den Wert der offertanfrage-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link SpezOffertRechtsschutzType }
- *
- */
- public void setOffertanfrage(SpezOffertRechtsschutzType value) {
- this.offertanfrage = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateOfferRechtsschutzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateOfferRechtsschutzResponseType.java
deleted file mode 100644
index 20b47160..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/CreateOfferRechtsschutzResponseType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateOfferResponseGenType;
-
-
-/**
- * Type des Responseobjekts bei der Erstellung eines Rechtsschutz-Offerts
- *
- * Java-Klasse für CreateOfferRechtsschutzResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="CreateOfferRechtsschutzResponse_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- * <sequence>
- * <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CreateOfferRechtsschutzResponse_Type", propOrder = {
- "offertantwort"
-})
-public class CreateOfferRechtsschutzResponseType
- extends CreateOfferResponseGenType
-{
-
- @XmlElement(name = "Offertantwort", required = true)
- protected SpezOffertRechtsschutzType offertantwort;
-
- /**
- * Ruft den Wert der offertantwort-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link SpezOffertRechtsschutzType }
- *
- */
- public SpezOffertRechtsschutzType getOffertantwort() {
- return offertantwort;
- }
-
- /**
- * Legt den Wert der offertantwort-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link SpezOffertRechtsschutzType }
- *
- */
- public void setOffertantwort(SpezOffertRechtsschutzType value) {
- this.offertantwort = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/ElementarproduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/ElementarproduktRechtsschutzType.java
deleted file mode 100644
index 6ebf4dce..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/ElementarproduktRechtsschutzType.java
+++ /dev/null
@@ -1,76 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-import java.util.ArrayList;
-import java.util.List;
-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.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ElementarproduktGenerischType;
-
-
-/**
- * Typ für ein Elementarprodukt in der Sparte Rechtsschutz. Von diesem Typ werden etwaige Standard-Deckungen abgeleitet, siehe Vertragsrechtsschutz_Type. Von diesem Typ können einzelne VUs aber auch ihre eigenen Elementarprodukte ableiten, wenn sie möchten.
- *
- * Java-Klasse für ElementarproduktRechtsschutz_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="ElementarproduktRechtsschutz_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- * <sequence>
- * <element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ElementarproduktRechtsschutz_Type", propOrder = {
- "versInteressenRefLfNr"
-})
-public class ElementarproduktRechtsschutzType
- extends ElementarproduktGenerischType
-{
-
- @XmlElement(name = "VersInteressenRefLfNr", type = Integer.class)
- @XmlSchemaType(name = "unsignedShort")
- protected List versInteressenRefLfNr;
-
- /**
- * Gets the value of the versInteressenRefLfNr property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the versInteressenRefLfNr property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getVersInteressenRefLfNr().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Integer }
- *
- *
- */
- public List getVersInteressenRefLfNr() {
- if (versInteressenRefLfNr == null) {
- versInteressenRefLfNr = new ArrayList();
- }
- return this.versInteressenRefLfNr;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/ObjectFactory.java
deleted file mode 100644
index 99e9cc42..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/ObjectFactory.java
+++ /dev/null
@@ -1,227 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs package.
- * An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _CalculateRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CalculateRechtsschutzRequest");
- private final static QName _CalculateRechtsschutzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CalculateRechtsschutzResponse");
- private final static QName _CreateOfferRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CreateOfferRechtsschutzRequest");
- private final static QName _CreateOfferRechtsschutzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CreateOfferRechtsschutzResponse");
- private final static QName _CreateApplicationRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CreateApplicationRechtsschutzRequest");
- private final static QName _CreateApplicationRechtsschutzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CreateApplicationRechtsschutzResponse");
- private final static QName _SubmitApplicationRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "SubmitApplicationRechtsschutzRequest");
- private final static QName _SubmitApplicationRechtsschutzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "SubmitApplicationRechtsschutzResponse");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link CalculateRechtsschutzRequestType }
- *
- */
- public CalculateRechtsschutzRequestType createCalculateRechtsschutzRequestType() {
- return new CalculateRechtsschutzRequestType();
- }
-
- /**
- * Create an instance of {@link CalculateRechtsschutzResponseType }
- *
- */
- public CalculateRechtsschutzResponseType createCalculateRechtsschutzResponseType() {
- return new CalculateRechtsschutzResponseType();
- }
-
- /**
- * Create an instance of {@link CreateOfferRechtsschutzRequestType }
- *
- */
- public CreateOfferRechtsschutzRequestType createCreateOfferRechtsschutzRequestType() {
- return new CreateOfferRechtsschutzRequestType();
- }
-
- /**
- * Create an instance of {@link CreateOfferRechtsschutzResponseType }
- *
- */
- public CreateOfferRechtsschutzResponseType createCreateOfferRechtsschutzResponseType() {
- return new CreateOfferRechtsschutzResponseType();
- }
-
- /**
- * Create an instance of {@link CreateApplicationRechtsschutzRequestType }
- *
- */
- public CreateApplicationRechtsschutzRequestType createCreateApplicationRechtsschutzRequestType() {
- return new CreateApplicationRechtsschutzRequestType();
- }
-
- /**
- * Create an instance of {@link CreateApplicationRechtsschutzResponseType }
- *
- */
- public CreateApplicationRechtsschutzResponseType createCreateApplicationRechtsschutzResponseType() {
- return new CreateApplicationRechtsschutzResponseType();
- }
-
- /**
- * Create an instance of {@link SubmitApplicationRechtsschutzResponseType }
- *
- */
- public SubmitApplicationRechtsschutzResponseType createSubmitApplicationRechtsschutzResponseType() {
- return new SubmitApplicationRechtsschutzResponseType();
- }
-
- /**
- * Create an instance of {@link VerkaufsproduktRechtsschutzType }
- *
- */
- public VerkaufsproduktRechtsschutzType createVerkaufsproduktRechtsschutzType() {
- return new VerkaufsproduktRechtsschutzType();
- }
-
- /**
- * Create an instance of {@link ProduktRechtsschutzType }
- *
- */
- public ProduktRechtsschutzType createProduktRechtsschutzType() {
- return new ProduktRechtsschutzType();
- }
-
- /**
- * Create an instance of {@link ElementarproduktRechtsschutzType }
- *
- */
- public ElementarproduktRechtsschutzType createElementarproduktRechtsschutzType() {
- return new ElementarproduktRechtsschutzType();
- }
-
- /**
- * Create an instance of {@link SpezBerechnungRechtsschutzType }
- *
- */
- public SpezBerechnungRechtsschutzType createSpezBerechnungRechtsschutzType() {
- return new SpezBerechnungRechtsschutzType();
- }
-
- /**
- * Create an instance of {@link SpezOffertRechtsschutzType }
- *
- */
- public SpezOffertRechtsschutzType createSpezOffertRechtsschutzType() {
- return new SpezOffertRechtsschutzType();
- }
-
- /**
- * Create an instance of {@link SpezAntragRechtsschutzType }
- *
- */
- public SpezAntragRechtsschutzType createSpezAntragRechtsschutzType() {
- return new SpezAntragRechtsschutzType();
- }
-
- /**
- * Create an instance of {@link SubmitApplicationRechtsschutzRequestType }
- *
- */
- public SubmitApplicationRechtsschutzRequestType createSubmitApplicationRechtsschutzRequestType() {
- return new SubmitApplicationRechtsschutzRequestType();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CalculateRechtsschutzRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CalculateRechtsschutzRequest")
- public JAXBElement createCalculateRechtsschutzRequest(CalculateRechtsschutzRequestType value) {
- return new JAXBElement(_CalculateRechtsschutzRequest_QNAME, CalculateRechtsschutzRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CalculateRechtsschutzResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CalculateRechtsschutzResponse")
- public JAXBElement createCalculateRechtsschutzResponse(CalculateRechtsschutzResponseType value) {
- return new JAXBElement(_CalculateRechtsschutzResponse_QNAME, CalculateRechtsschutzResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferRechtsschutzRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CreateOfferRechtsschutzRequest")
- public JAXBElement createCreateOfferRechtsschutzRequest(CreateOfferRechtsschutzRequestType value) {
- return new JAXBElement(_CreateOfferRechtsschutzRequest_QNAME, CreateOfferRechtsschutzRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferRechtsschutzResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CreateOfferRechtsschutzResponse")
- public JAXBElement createCreateOfferRechtsschutzResponse(CreateOfferRechtsschutzResponseType value) {
- return new JAXBElement(_CreateOfferRechtsschutzResponse_QNAME, CreateOfferRechtsschutzResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationRechtsschutzRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CreateApplicationRechtsschutzRequest")
- public JAXBElement createCreateApplicationRechtsschutzRequest(CreateApplicationRechtsschutzRequestType value) {
- return new JAXBElement(_CreateApplicationRechtsschutzRequest_QNAME, CreateApplicationRechtsschutzRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationRechtsschutzResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CreateApplicationRechtsschutzResponse")
- public JAXBElement createCreateApplicationRechtsschutzResponse(CreateApplicationRechtsschutzResponseType value) {
- return new JAXBElement(_CreateApplicationRechtsschutzResponse_QNAME, CreateApplicationRechtsschutzResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationRechtsschutzResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "SubmitApplicationRechtsschutzRequest")
- public JAXBElement createSubmitApplicationRechtsschutzRequest(SubmitApplicationRechtsschutzResponseType value) {
- return new JAXBElement(_SubmitApplicationRechtsschutzRequest_QNAME, SubmitApplicationRechtsschutzResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationRechtsschutzResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "SubmitApplicationRechtsschutzResponse")
- public JAXBElement createSubmitApplicationRechtsschutzResponse(SubmitApplicationRechtsschutzResponseType value) {
- return new JAXBElement(_SubmitApplicationRechtsschutzResponse_QNAME, SubmitApplicationRechtsschutzResponseType.class, null, value);
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/ProduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/ProduktRechtsschutzType.java
deleted file mode 100644
index 6556fb84..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/ProduktRechtsschutzType.java
+++ /dev/null
@@ -1,109 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-import java.util.ArrayList;
-import java.util.List;
-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.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType;
-
-
-/**
- * Typ für ein Produkt in der Sparte Rechtsschutz. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten.
- *
- * Java-Klasse für ProduktRechtsschutz_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="ProduktRechtsschutz_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- * <sequence>
- * <element name="ElementarprodukteRechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ElementarproduktRechtsschutz_Type" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ProduktRechtsschutz_Type", propOrder = {
- "elementarprodukteRechtsschutz",
- "versInteressenRefLfNr"
-})
-public class ProduktRechtsschutzType
- extends ProduktGenerischType
-{
-
- @XmlElement(name = "ElementarprodukteRechtsschutz")
- protected List elementarprodukteRechtsschutz;
- @XmlElement(name = "VersInteressenRefLfNr", type = Integer.class)
- @XmlSchemaType(name = "unsignedShort")
- protected List versInteressenRefLfNr;
-
- /**
- * Gets the value of the elementarprodukteRechtsschutz property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the elementarprodukteRechtsschutz property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getElementarprodukteRechtsschutz().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link ElementarproduktRechtsschutzType }
- *
- *
- */
- public List getElementarprodukteRechtsschutz() {
- if (elementarprodukteRechtsschutz == null) {
- elementarprodukteRechtsschutz = new ArrayList();
- }
- return this.elementarprodukteRechtsschutz;
- }
-
- /**
- * Gets the value of the versInteressenRefLfNr property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the versInteressenRefLfNr property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getVersInteressenRefLfNr().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Integer }
- *
- *
- */
- public List getVersInteressenRefLfNr() {
- if (versInteressenRefLfNr == null) {
- versInteressenRefLfNr = new ArrayList();
- }
- return this.versInteressenRefLfNr;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SpezAntragRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SpezAntragRechtsschutzType.java
deleted file mode 100644
index e2f04891..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SpezAntragRechtsschutzType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezAntragType;
-
-
-/**
- * Typ für den Schritt Antrags-Erzeugung
- *
- * Java-Klasse für SpezAntragRechtsschutz_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="SpezAntragRechtsschutz_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- * <sequence>
- * <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SpezAntragRechtsschutz_Type", propOrder = {
- "verkaufsprodukt"
-})
-public class SpezAntragRechtsschutzType
- extends SpezAntragType
-{
-
- @XmlElement(name = "Verkaufsprodukt", required = true)
- protected VerkaufsproduktRechtsschutzType verkaufsprodukt;
-
- /**
- * Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link VerkaufsproduktRechtsschutzType }
- *
- */
- public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() {
- return verkaufsprodukt;
- }
-
- /**
- * Legt den Wert der verkaufsprodukt-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link VerkaufsproduktRechtsschutzType }
- *
- */
- public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) {
- this.verkaufsprodukt = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java
deleted file mode 100644
index aa595639..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SpezBerechnungRechtsschutzType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezBerechnungType;
-
-
-/**
- * Typ für den Schritt Berechnung
- *
- * Java-Klasse für SpezBerechnungRechtsschutz_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="SpezBerechnungRechtsschutz_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- * <sequence>
- * <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SpezBerechnungRechtsschutz_Type", propOrder = {
- "verkaufsprodukt"
-})
-public class SpezBerechnungRechtsschutzType
- extends SpezBerechnungType
-{
-
- @XmlElement(name = "Verkaufsprodukt", required = true)
- protected VerkaufsproduktRechtsschutzType verkaufsprodukt;
-
- /**
- * Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link VerkaufsproduktRechtsschutzType }
- *
- */
- public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() {
- return verkaufsprodukt;
- }
-
- /**
- * Legt den Wert der verkaufsprodukt-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link VerkaufsproduktRechtsschutzType }
- *
- */
- public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) {
- this.verkaufsprodukt = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SpezOffertRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SpezOffertRechtsschutzType.java
deleted file mode 100644
index d397b7a4..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SpezOffertRechtsschutzType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezOffertType;
-
-
-/**
- * Typ für den Schritt Offert-Erzeugung
- *
- * Java-Klasse für SpezOffertRechtsschutz_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="SpezOffertRechtsschutz_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- * <sequence>
- * <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SpezOffertRechtsschutz_Type", propOrder = {
- "verkaufsprodukt"
-})
-public class SpezOffertRechtsschutzType
- extends SpezOffertType
-{
-
- @XmlElement(name = "Verkaufsprodukt", required = true)
- protected VerkaufsproduktRechtsschutzType verkaufsprodukt;
-
- /**
- * Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link VerkaufsproduktRechtsschutzType }
- *
- */
- public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() {
- return verkaufsprodukt;
- }
-
- /**
- * Legt den Wert der verkaufsprodukt-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link VerkaufsproduktRechtsschutzType }
- *
- */
- public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) {
- this.verkaufsprodukt = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SubmitApplicationRechtsschutzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SubmitApplicationRechtsschutzRequestType.java
deleted file mode 100644
index 9befb62c..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SubmitApplicationRechtsschutzRequestType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationRequestGenType;
-
-
-/**
- * Type des Requests, um den Antrag einzureichen
- *
- * Java-Klasse für SubmitApplicationRechtsschutzRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="SubmitApplicationRechtsschutzRequest_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- * <sequence>
- * <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SubmitApplicationRechtsschutzRequest_Type", propOrder = {
- "antragsanfrage"
-})
-public class SubmitApplicationRechtsschutzRequestType
- extends SubmitApplicationRequestGenType
-{
-
- @XmlElement(name = "Antragsanfrage", required = true)
- protected SpezAntragRechtsschutzType antragsanfrage;
-
- /**
- * Ruft den Wert der antragsanfrage-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link SpezAntragRechtsschutzType }
- *
- */
- public SpezAntragRechtsschutzType getAntragsanfrage() {
- return antragsanfrage;
- }
-
- /**
- * Legt den Wert der antragsanfrage-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link SpezAntragRechtsschutzType }
- *
- */
- public void setAntragsanfrage(SpezAntragRechtsschutzType value) {
- this.antragsanfrage = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SubmitApplicationRechtsschutzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SubmitApplicationRechtsschutzResponseType.java
deleted file mode 100644
index 3be39b71..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/SubmitApplicationRechtsschutzResponseType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-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.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationResponseGenType;
-
-
-/**
- * Type des Response beim Eineichen des Antrags
- *
- * Java-Klasse für SubmitApplicationRechtsschutzResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="SubmitApplicationRechtsschutzResponse_Type">
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- * <sequence>
- * <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SubmitApplicationRechtsschutzResponse_Type", propOrder = {
- "antragsantwort"
-})
-public class SubmitApplicationRechtsschutzResponseType
- extends SubmitApplicationResponseGenType
-{
-
- @XmlElement(name = "Antragsantwort", required = true)
- protected SpezAntragRechtsschutzType antragsantwort;
-
- /**
- * Ruft den Wert der antragsantwort-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link SpezAntragRechtsschutzType }
- *
- */
- public SpezAntragRechtsschutzType getAntragsantwort() {
- return antragsantwort;
- }
-
- /**
- * Legt den Wert der antragsantwort-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link SpezAntragRechtsschutzType }
- *
- */
- public void setAntragsantwort(SpezAntragRechtsschutzType value) {
- this.antragsantwort = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java
deleted file mode 100644
index 621dc118..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/VerkaufsproduktRechtsschutzType.java
+++ /dev/null
@@ -1,142 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
-
-import java.util.ArrayList;
-import java.util.List;
-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.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.VerkaufsproduktGenerischType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseType;
-
-
-/**
- * Typ für ein Verkaufsprodukt in der Sparte Rechtsschutz
- *
- * Java-Klasse für VerkaufsproduktRechtsschutz_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="VerkaufsproduktRechtsschutz_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
- * <sequence>
- * <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ProduktRechtsschutz_Type" maxOccurs="unbounded"/>
- * <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="VersicherteInteressen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "VerkaufsproduktRechtsschutz_Type", propOrder = {
- "produkte",
- "zusatzprodukte",
- "versicherteInteressen"
-})
-public class VerkaufsproduktRechtsschutzType
- extends VerkaufsproduktGenerischType
-{
-
- @XmlElement(name = "Produkte", required = true)
- protected List produkte;
- @XmlElement(name = "Zusatzprodukte")
- protected List zusatzprodukte;
- @XmlElement(name = "VersicherteInteressen")
- protected List versicherteInteressen;
-
- /**
- * Gets the value of the produkte property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the produkte property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getProdukte().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link ProduktRechtsschutzType }
- *
- *
- */
- public List getProdukte() {
- if (produkte == null) {
- produkte = new ArrayList();
- }
- return this.produkte;
- }
-
- /**
- * Gets the value of the zusatzprodukte property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the zusatzprodukte property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getZusatzprodukte().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link ProduktGenerischType }
- *
- *
- */
- public List getZusatzprodukte() {
- if (zusatzprodukte == null) {
- zusatzprodukte = new ArrayList();
- }
- return this.zusatzprodukte;
- }
-
- /**
- * Gets the value of the versicherteInteressen property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the versicherteInteressen property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getVersicherteInteressen().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link VersichertesInteresseType }
- *
- *
- */
- public List getVersicherteInteressen() {
- if (versicherteInteressen == null) {
- versicherteInteressen = new ArrayList();
- }
- return this.versicherteInteressen;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/package-info.java
deleted file mode 100644
index 3773be84..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/rs/package-info.java
+++ /dev/null
@@ -1,2 +0,0 @@
-@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
-package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java
index c205fb95..c6bff219 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on2antrag/sachPrivat/VerkaufsproduktSachPrivatType.java
@@ -6,6 +6,7 @@ import java.util.List;
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.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.VerkaufsproduktGenerischType;
@@ -27,6 +28,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseType;
* <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type" maxOccurs="unbounded"/>
* <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
* <element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/>
+ * <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
@@ -39,7 +41,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseType;
@XmlType(name = "VerkaufsproduktSachPrivat_Type", propOrder = {
"produkte",
"zusatzprodukte",
- "versicherteObjekte"
+ "versicherteObjekte",
+ "refSicherstellungLfnr"
})
public class VerkaufsproduktSachPrivatType
extends VerkaufsproduktGenerischType
@@ -51,6 +54,9 @@ public class VerkaufsproduktSachPrivatType
protected List zusatzprodukte;
@XmlElement(name = "VersicherteObjekte", required = true)
protected List versicherteObjekte;
+ @XmlElement(name = "RefSicherstellungLfnr")
+ @XmlSchemaType(name = "unsignedShort")
+ protected Integer refSicherstellungLfnr;
/**
* Gets the value of the produkte property.
@@ -139,4 +145,28 @@ public class VerkaufsproduktSachPrivatType
return this.versicherteObjekte;
}
+ /**
+ * Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link Integer }
+ *
+ */
+ public Integer getRefSicherstellungLfnr() {
+ return refSicherstellungLfnr;
+ }
+
+ /**
+ * Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link Integer }
+ *
+ */
+ public void setRefSicherstellungLfnr(Integer value) {
+ this.refSicherstellungLfnr = value;
+ }
+
}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/CollectionChangeRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/CollectionChangeRequestType.java
deleted file mode 100644
index 4a041739..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/CollectionChangeRequestType.java
+++ /dev/null
@@ -1,220 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag;
-
-import java.util.ArrayList;
-import java.util.List;
-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.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.DateianhangType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.PersonType;
-
-
-/**
- * Typ des Requestobjekts für eine Änderung von Inkassodaten
- *
- * Java-Klasse für CollectionChangeRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="CollectionChangeRequest_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- * <sequence>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
- * <element name="Inkassoadresse" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
- * <element name="Zahlweg" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}Zahlweg_Type"/>
- * <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CollectionChangeRequest_Type", propOrder = {
- "objektId",
- "zahlrhythmus",
- "inkassoadresse",
- "zahlweg",
- "dateianhaenge",
- "wirksamtkeitAb"
-})
-public class CollectionChangeRequestType
- extends CommonRequestType
-{
-
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
- protected ObjektIdType objektId;
- @XmlElement(name = "Zahlrhythmus", required = true)
- protected String zahlrhythmus;
- @XmlElement(name = "Inkassoadresse", required = true)
- protected PersonType inkassoadresse;
- @XmlElement(name = "Zahlweg", required = true)
- protected ZahlwegType zahlweg;
- @XmlElement(name = "Dateianhaenge")
- protected List dateianhaenge;
- @XmlElement(name = "WirksamtkeitAb", required = true)
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar wirksamtkeitAb;
-
- /**
- * Die Id des Vertrag als ObjektId (VertragsID des OMDS-Datensatzes)
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- /**
- * Ruft den Wert der zahlrhythmus-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getZahlrhythmus() {
- return zahlrhythmus;
- }
-
- /**
- * Legt den Wert der zahlrhythmus-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setZahlrhythmus(String value) {
- this.zahlrhythmus = value;
- }
-
- /**
- * Ruft den Wert der inkassoadresse-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link PersonType }
- *
- */
- public PersonType getInkassoadresse() {
- return inkassoadresse;
- }
-
- /**
- * Legt den Wert der inkassoadresse-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link PersonType }
- *
- */
- public void setInkassoadresse(PersonType value) {
- this.inkassoadresse = value;
- }
-
- /**
- * Ruft den Wert der zahlweg-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link ZahlwegType }
- *
- */
- public ZahlwegType getZahlweg() {
- return zahlweg;
- }
-
- /**
- * Legt den Wert der zahlweg-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ZahlwegType }
- *
- */
- public void setZahlweg(ZahlwegType value) {
- this.zahlweg = value;
- }
-
- /**
- * Gets the value of the dateianhaenge property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the dateianhaenge property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getDateianhaenge().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link DateianhangType }
- *
- *
- */
- public List getDateianhaenge() {
- if (dateianhaenge == null) {
- dateianhaenge = new ArrayList();
- }
- return this.dateianhaenge;
- }
-
- /**
- * Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getWirksamtkeitAb() {
- return wirksamtkeitAb;
- }
-
- /**
- * Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setWirksamtkeitAb(XMLGregorianCalendar value) {
- this.wirksamtkeitAb = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/CollectionChangeResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/CollectionChangeResponseType.java
deleted file mode 100644
index 96b4c11c..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/CollectionChangeResponseType.java
+++ /dev/null
@@ -1,97 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag;
-
-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.vvo.omds.types.omds2Types.v2_11.VERTRAGType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-
-
-/**
- * Typ des Response für eine Änderung von Inkassodaten
- *
- * Java-Klasse für CollectionChangeResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="CollectionChangeResponse_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- * <sequence minOccurs="0">
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <element name="Vertrag" type="{urn:omds20}VERTRAG_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CollectionChangeResponse_Type", propOrder = {
- "objektId",
- "vertrag"
-})
-public class CollectionChangeResponseType
- extends CommonResponseType
-{
-
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0")
- protected ObjektIdType objektId;
- @XmlElement(name = "Vertrag")
- protected VERTRAGType vertrag;
-
- /**
- * ObjektId des Vertrags
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- /**
- * Ruft den Wert der vertrag-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link VERTRAGType }
- *
- */
- public VERTRAGType getVertrag() {
- return vertrag;
- }
-
- /**
- * Legt den Wert der vertrag-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link VERTRAGType }
- *
- */
- public void setVertrag(VERTRAGType value) {
- this.vertrag = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/GetPoliciesOfPartnerRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/GetPoliciesOfPartnerRequestType.java
deleted file mode 100644
index 81b7f0cc..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/GetPoliciesOfPartnerRequestType.java
+++ /dev/null
@@ -1,97 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag;
-
-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.vvo.omds.types.omds3Types.r1_5_0.common.AgentFilterType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-
-
-/**
- * Requesttyp auf die Polizzen, in denen ein Partner in der Rolle VN auftritt
- *
- * Java-Klasse für GetPoliciesOfPartnerRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="GetPoliciesOfPartnerRequest_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- * <sequence>
- * <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "GetPoliciesOfPartnerRequest_Type", propOrder = {
- "authFilter",
- "objektId"
-})
-public class GetPoliciesOfPartnerRequestType
- extends CommonRequestType
-{
-
- @XmlElement(name = "AuthFilter")
- protected AgentFilterType authFilter;
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
- protected ObjektIdType objektId;
-
- /**
- * Ruft den Wert der authFilter-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link AgentFilterType }
- *
- */
- public AgentFilterType getAuthFilter() {
- return authFilter;
- }
-
- /**
- * Legt den Wert der authFilter-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link AgentFilterType }
- *
- */
- public void setAuthFilter(AgentFilterType value) {
- this.authFilter = value;
- }
-
- /**
- * Die ObjektId des Partners (enthält die Personennr)
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/GetPoliciesOfPartnerResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/GetPoliciesOfPartnerResponseType.java
deleted file mode 100644
index 7c697a35..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/GetPoliciesOfPartnerResponseType.java
+++ /dev/null
@@ -1,85 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlElements;
-import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds2Types.v2_11.VERTRAGType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.AdresseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType;
-
-
-/**
- * Responsetyp zu den Polizzen, in denen ein Partner in der Rolle VN auftritt
- *
- * Java-Klasse für GetPoliciesOfPartnerResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="GetPoliciesOfPartnerResponse_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- * <sequence maxOccurs="unbounded" minOccurs="0">
- * <element name="Vertrag" type="{urn:omds20}VERTRAG_Type"/>
- * <element name="ObjektId" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- * <element name="Zustelladresse" type="{urn:omds3CommonServiceTypes-1-1-0}Adresse_Type" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "GetPoliciesOfPartnerResponse_Type", propOrder = {
- "vertragAndObjektIdAndZustelladresse"
-})
-public class GetPoliciesOfPartnerResponseType
- extends CommonResponseType
-{
-
- @XmlElements({
- @XmlElement(name = "Vertrag", type = VERTRAGType.class),
- @XmlElement(name = "ObjektId"),
- @XmlElement(name = "Zustelladresse", type = AdresseType.class)
- })
- protected List vertragAndObjektIdAndZustelladresse;
-
- /**
- * Gets the value of the vertragAndObjektIdAndZustelladresse property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the vertragAndObjektIdAndZustelladresse property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getVertragAndObjektIdAndZustelladresse().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link VERTRAGType }
- * {@link Object }
- * {@link AdresseType }
- *
- *
- */
- public List getVertragAndObjektIdAndZustelladresse() {
- if (vertragAndObjektIdAndZustelladresse == null) {
- vertragAndObjektIdAndZustelladresse = new ArrayList();
- }
- return this.vertragAndObjektIdAndZustelladresse;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/ObjectFactory.java
deleted file mode 100644
index c653766f..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/ObjectFactory.java
+++ /dev/null
@@ -1,167 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag package.
- * An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _GetPoliciesOfPartnerRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "GetPoliciesOfPartnerRequest");
- private final static QName _GetPoliciesOfPartnerResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "GetPoliciesOfPartnerResponse");
- private final static QName _SetMailingAddressRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "SetMailingAddressRequest");
- private final static QName _SetMailingAddressResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "SetMailingAddressResponse");
- private final static QName _CollectionChangeRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "CollectionChangeRequest");
- private final static QName _CollectionChangeResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "CollectionChangeResponse");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link ZahlwegType }
- *
- */
- public ZahlwegType createZahlwegType() {
- return new ZahlwegType();
- }
-
- /**
- * Create an instance of {@link GetPoliciesOfPartnerRequestType }
- *
- */
- public GetPoliciesOfPartnerRequestType createGetPoliciesOfPartnerRequestType() {
- return new GetPoliciesOfPartnerRequestType();
- }
-
- /**
- * Create an instance of {@link GetPoliciesOfPartnerResponseType }
- *
- */
- public GetPoliciesOfPartnerResponseType createGetPoliciesOfPartnerResponseType() {
- return new GetPoliciesOfPartnerResponseType();
- }
-
- /**
- * Create an instance of {@link SetMailingAddressRequestType }
- *
- */
- public SetMailingAddressRequestType createSetMailingAddressRequestType() {
- return new SetMailingAddressRequestType();
- }
-
- /**
- * Create an instance of {@link SetMailingAddressResponseType }
- *
- */
- public SetMailingAddressResponseType createSetMailingAddressResponseType() {
- return new SetMailingAddressResponseType();
- }
-
- /**
- * Create an instance of {@link CollectionChangeRequestType }
- *
- */
- public CollectionChangeRequestType createCollectionChangeRequestType() {
- return new CollectionChangeRequestType();
- }
-
- /**
- * Create an instance of {@link CollectionChangeResponseType }
- *
- */
- public CollectionChangeResponseType createCollectionChangeResponseType() {
- return new CollectionChangeResponseType();
- }
-
- /**
- * Create an instance of {@link ZahlwegType.Kundenkonto }
- *
- */
- public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() {
- return new ZahlwegType.Kundenkonto();
- }
-
- /**
- * Create an instance of {@link ZahlwegType.Kreditkarte }
- *
- */
- public ZahlwegType.Kreditkarte createZahlwegTypeKreditkarte() {
- return new ZahlwegType.Kreditkarte();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link GetPoliciesOfPartnerRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", name = "GetPoliciesOfPartnerRequest")
- public JAXBElement createGetPoliciesOfPartnerRequest(GetPoliciesOfPartnerRequestType value) {
- return new JAXBElement(_GetPoliciesOfPartnerRequest_QNAME, GetPoliciesOfPartnerRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link GetPoliciesOfPartnerResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", name = "GetPoliciesOfPartnerResponse")
- public JAXBElement createGetPoliciesOfPartnerResponse(GetPoliciesOfPartnerResponseType value) {
- return new JAXBElement(_GetPoliciesOfPartnerResponse_QNAME, GetPoliciesOfPartnerResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SetMailingAddressRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", name = "SetMailingAddressRequest")
- public JAXBElement createSetMailingAddressRequest(SetMailingAddressRequestType value) {
- return new JAXBElement(_SetMailingAddressRequest_QNAME, SetMailingAddressRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SetMailingAddressResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", name = "SetMailingAddressResponse")
- public JAXBElement createSetMailingAddressResponse(SetMailingAddressResponseType value) {
- return new JAXBElement(_SetMailingAddressResponse_QNAME, SetMailingAddressResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CollectionChangeRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", name = "CollectionChangeRequest")
- public JAXBElement createCollectionChangeRequest(CollectionChangeRequestType value) {
- return new JAXBElement(_CollectionChangeRequest_QNAME, CollectionChangeRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CollectionChangeResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", name = "CollectionChangeResponse")
- public JAXBElement createCollectionChangeResponse(CollectionChangeResponseType value) {
- return new JAXBElement(_CollectionChangeResponse_QNAME, CollectionChangeResponseType.class, null, value);
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/SetMailingAddressRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/SetMailingAddressRequestType.java
deleted file mode 100644
index f46cbf54..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/SetMailingAddressRequestType.java
+++ /dev/null
@@ -1,128 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag;
-
-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.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.AdresseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-
-
-/**
- * Typ des Requestobjekts für das Setzen einer Zustelladresse
- *
- * Java-Klasse für SetMailingAddressRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="SetMailingAddressRequest_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- * <sequence>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <element name="Zustelladresse" type="{urn:omds3CommonServiceTypes-1-1-0}Adresse_Type"/>
- * <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SetMailingAddressRequest_Type", propOrder = {
- "objektId",
- "zustelladresse",
- "wirksamtkeitAb"
-})
-public class SetMailingAddressRequestType
- extends CommonRequestType
-{
-
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
- protected ObjektIdType objektId;
- @XmlElement(name = "Zustelladresse", required = true)
- protected AdresseType zustelladresse;
- @XmlElement(name = "WirksamtkeitAb", required = true)
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar wirksamtkeitAb;
-
- /**
- * Die ObjektId des Vertrags
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- /**
- * Ruft den Wert der zustelladresse-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link AdresseType }
- *
- */
- public AdresseType getZustelladresse() {
- return zustelladresse;
- }
-
- /**
- * Legt den Wert der zustelladresse-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link AdresseType }
- *
- */
- public void setZustelladresse(AdresseType value) {
- this.zustelladresse = value;
- }
-
- /**
- * Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getWirksamtkeitAb() {
- return wirksamtkeitAb;
- }
-
- /**
- * Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setWirksamtkeitAb(XMLGregorianCalendar value) {
- this.wirksamtkeitAb = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/SetMailingAddressResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/SetMailingAddressResponseType.java
deleted file mode 100644
index 79b22db8..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/SetMailingAddressResponseType.java
+++ /dev/null
@@ -1,126 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag;
-
-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.vvo.omds.types.omds2Types.v2_11.VERTRAGType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.AdresseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-
-
-/**
- * Typ des Responseobjekts für das Setzen einer Zustelladresse
- *
- * Java-Klasse für SetMailingAddressResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="SetMailingAddressResponse_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- * <sequence minOccurs="0">
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <element name="Vertrag" type="{urn:omds20}VERTRAG_Type"/>
- * <element name="Zustelladresse" type="{urn:omds3CommonServiceTypes-1-1-0}Adresse_Type" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SetMailingAddressResponse_Type", propOrder = {
- "objektId",
- "vertrag",
- "zustelladresse"
-})
-public class SetMailingAddressResponseType
- extends CommonResponseType
-{
-
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0")
- protected ObjektIdType objektId;
- @XmlElement(name = "Vertrag")
- protected VERTRAGType vertrag;
- @XmlElement(name = "Zustelladresse")
- protected AdresseType zustelladresse;
-
- /**
- * ObjektId des Vertrags
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- /**
- * Ruft den Wert der vertrag-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link VERTRAGType }
- *
- */
- public VERTRAGType getVertrag() {
- return vertrag;
- }
-
- /**
- * Legt den Wert der vertrag-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link VERTRAGType }
- *
- */
- public void setVertrag(VERTRAGType value) {
- this.vertrag = value;
- }
-
- /**
- * Ruft den Wert der zustelladresse-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link AdresseType }
- *
- */
- public AdresseType getZustelladresse() {
- return zustelladresse;
- }
-
- /**
- * Legt den Wert der zustelladresse-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link AdresseType }
- *
- */
- public void setZustelladresse(AdresseType value) {
- this.zustelladresse = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/ZahlwegType.java
deleted file mode 100644
index 8a0a4ad5..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/ZahlwegType.java
+++ /dev/null
@@ -1,418 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.BankverbindungType;
-
-
-/**
- * Java-Klasse für Zahlweg_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="Zahlweg_Type">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <choice>
- * <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- * <element name="BankverbindungAbbuchung" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- * <element name="Kundenkonto">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
- * <element name="Kreditkarte">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="Pruefziffer" use="required">
- * <simpleType>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- * <totalDigits value="3"/>
- * </restriction>
- * </simpleType>
- * </attribute>
- * <attribute name="AblaufMonat" use="required">
- * <simpleType>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- * <totalDigits value="2"/>
- * </restriction>
- * </simpleType>
- * </attribute>
- * <attribute name="AblaufJahr" use="required">
- * <simpleType>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- * <totalDigits value="2"/>
- * </restriction>
- * </simpleType>
- * </attribute>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
- * </choice>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "Zahlweg_Type", propOrder = {
- "zahlungsanweisung",
- "bankverbindungAbbuchung",
- "kundenkonto",
- "kreditkarte"
-})
-public class ZahlwegType {
-
- @XmlElement(name = "Zahlungsanweisung")
- protected Object zahlungsanweisung;
- @XmlElement(name = "BankverbindungAbbuchung")
- protected BankverbindungType bankverbindungAbbuchung;
- @XmlElement(name = "Kundenkonto")
- protected ZahlwegType.Kundenkonto kundenkonto;
- @XmlElement(name = "Kreditkarte")
- protected ZahlwegType.Kreditkarte kreditkarte;
-
- /**
- * Ruft den Wert der zahlungsanweisung-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link Object }
- *
- */
- public Object getZahlungsanweisung() {
- return zahlungsanweisung;
- }
-
- /**
- * Legt den Wert der zahlungsanweisung-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link Object }
- *
- */
- public void setZahlungsanweisung(Object value) {
- this.zahlungsanweisung = value;
- }
-
- /**
- * Ruft den Wert der bankverbindungAbbuchung-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link BankverbindungType }
- *
- */
- public BankverbindungType getBankverbindungAbbuchung() {
- return bankverbindungAbbuchung;
- }
-
- /**
- * Legt den Wert der bankverbindungAbbuchung-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link BankverbindungType }
- *
- */
- public void setBankverbindungAbbuchung(BankverbindungType value) {
- this.bankverbindungAbbuchung = value;
- }
-
- /**
- * Ruft den Wert der kundenkonto-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link ZahlwegType.Kundenkonto }
- *
- */
- public ZahlwegType.Kundenkonto getKundenkonto() {
- return kundenkonto;
- }
-
- /**
- * Legt den Wert der kundenkonto-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ZahlwegType.Kundenkonto }
- *
- */
- public void setKundenkonto(ZahlwegType.Kundenkonto value) {
- this.kundenkonto = value;
- }
-
- /**
- * Ruft den Wert der kreditkarte-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link ZahlwegType.Kreditkarte }
- *
- */
- public ZahlwegType.Kreditkarte getKreditkarte() {
- return kreditkarte;
- }
-
- /**
- * Legt den Wert der kreditkarte-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ZahlwegType.Kreditkarte }
- *
- */
- public void setKreditkarte(ZahlwegType.Kreditkarte value) {
- this.kreditkarte = value;
- }
-
-
- /**
- * Java-Klasse für anonymous complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="Pruefziffer" use="required">
- * <simpleType>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
- * <totalDigits value="3"/>
- * </restriction>
- * </simpleType>
- * </attribute>
- * <attribute name="AblaufMonat" use="required">
- * <simpleType>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- * <totalDigits value="2"/>
- * </restriction>
- * </simpleType>
- * </attribute>
- * <attribute name="AblaufJahr" use="required">
- * <simpleType>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
- * <totalDigits value="2"/>
- * </restriction>
- * </simpleType>
- * </attribute>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "")
- public static class Kreditkarte {
-
- @XmlAttribute(name = "Gesellschaft", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", required = true)
- protected String gesellschaft;
- @XmlAttribute(name = "Kartennummer", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", required = true)
- protected String kartennummer;
- @XmlAttribute(name = "Inhaber", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", required = true)
- protected String inhaber;
- @XmlAttribute(name = "Pruefziffer", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", required = true)
- protected long pruefziffer;
- @XmlAttribute(name = "AblaufMonat", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", required = true)
- protected short ablaufMonat;
- @XmlAttribute(name = "AblaufJahr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", required = true)
- protected short ablaufJahr;
-
- /**
- * Ruft den Wert der gesellschaft-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getGesellschaft() {
- return gesellschaft;
- }
-
- /**
- * Legt den Wert der gesellschaft-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setGesellschaft(String value) {
- this.gesellschaft = value;
- }
-
- /**
- * Ruft den Wert der kartennummer-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getKartennummer() {
- return kartennummer;
- }
-
- /**
- * Legt den Wert der kartennummer-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setKartennummer(String value) {
- this.kartennummer = value;
- }
-
- /**
- * Ruft den Wert der inhaber-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getInhaber() {
- return inhaber;
- }
-
- /**
- * Legt den Wert der inhaber-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setInhaber(String value) {
- this.inhaber = value;
- }
-
- /**
- * Ruft den Wert der pruefziffer-Eigenschaft ab.
- *
- */
- public long getPruefziffer() {
- return pruefziffer;
- }
-
- /**
- * Legt den Wert der pruefziffer-Eigenschaft fest.
- *
- */
- public void setPruefziffer(long value) {
- this.pruefziffer = value;
- }
-
- /**
- * Ruft den Wert der ablaufMonat-Eigenschaft ab.
- *
- */
- public short getAblaufMonat() {
- return ablaufMonat;
- }
-
- /**
- * Legt den Wert der ablaufMonat-Eigenschaft fest.
- *
- */
- public void setAblaufMonat(short value) {
- this.ablaufMonat = value;
- }
-
- /**
- * Ruft den Wert der ablaufJahr-Eigenschaft ab.
- *
- */
- public short getAblaufJahr() {
- return ablaufJahr;
- }
-
- /**
- * Legt den Wert der ablaufJahr-Eigenschaft fest.
- *
- */
- public void setAblaufJahr(short value) {
- this.ablaufJahr = value;
- }
-
- }
-
-
- /**
- * Java-Klasse für anonymous complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "")
- public static class Kundenkonto {
-
- @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", required = true)
- protected String kundenkontonummer;
-
- /**
- * Ruft den Wert der kundenkontonummer-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getKundenkontonummer() {
- return kundenkontonummer;
- }
-
- /**
- * Legt den Wert der kundenkontonummer-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setKundenkontonummer(String value) {
- this.kundenkontonummer = value;
- }
-
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/package-info.java
deleted file mode 100644
index 6a801039..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on3vertrag/package-info.java
+++ /dev/null
@@ -1,2 +0,0 @@
-@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
-package at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag;
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/AddCommunicationObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/AddCommunicationObjectRequestType.java
deleted file mode 100644
index 3463aa04..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/AddCommunicationObjectRequestType.java
+++ /dev/null
@@ -1,143 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlElements;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-import at.vvo.omds.types.omds2Types.v2_11.ELKommunikationType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-
-
-/**
- * Typ des Requestobjekts für Neuanlage einer Kommunikationsverbindung
- *
- * Java-Klasse für AddCommunicationObjectRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="AddCommunicationObjectRequest_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- * <sequence>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <sequence maxOccurs="unbounded">
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- * <element name="NeueKommunikationsVerbindung" type="{urn:omds20}EL-Kommunikation_Type"/>
- * </sequence>
- * <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "AddCommunicationObjectRequest_Type", propOrder = {
- "objektId",
- "ordnungsbegriffZuordFremdAndNeueKommunikationsVerbindung",
- "wirksamtkeitAb"
-})
-public class AddCommunicationObjectRequestType
- extends CommonRequestType
-{
-
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
- protected ObjektIdType objektId;
- @XmlElements({
- @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true, type = String.class),
- @XmlElement(name = "NeueKommunikationsVerbindung", required = true, type = ELKommunikationType.class)
- })
- protected List ordnungsbegriffZuordFremdAndNeueKommunikationsVerbindung;
- @XmlElement(name = "WirksamtkeitAb", required = true)
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar wirksamtkeitAb;
-
- /**
- * Die Personennr in einer ObjektId
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- /**
- * Gets the value of the ordnungsbegriffZuordFremdAndNeueKommunikationsVerbindung property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the ordnungsbegriffZuordFremdAndNeueKommunikationsVerbindung property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getOrdnungsbegriffZuordFremdAndNeueKommunikationsVerbindung().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link String }
- * {@link ELKommunikationType }
- *
- *
- */
- public List getOrdnungsbegriffZuordFremdAndNeueKommunikationsVerbindung() {
- if (ordnungsbegriffZuordFremdAndNeueKommunikationsVerbindung == null) {
- ordnungsbegriffZuordFremdAndNeueKommunikationsVerbindung = new ArrayList();
- }
- return this.ordnungsbegriffZuordFremdAndNeueKommunikationsVerbindung;
- }
-
- /**
- * Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getWirksamtkeitAb() {
- return wirksamtkeitAb;
- }
-
- /**
- * Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setWirksamtkeitAb(XMLGregorianCalendar value) {
- this.wirksamtkeitAb = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/AddCommunicationObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/AddCommunicationObjectResponseType.java
deleted file mode 100644
index b6e9d0de..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/AddCommunicationObjectResponseType.java
+++ /dev/null
@@ -1,68 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-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.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.PersonType;
-
-
-/**
- * Typ des Response für eine Änderung, Löschung oder Neuanlage einer Kommunikationsverbindung
- *
- * Java-Klasse für AddCommunicationObjectResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="AddCommunicationObjectResponse_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- * <sequence>
- * <element name="Person" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "AddCommunicationObjectResponse_Type", propOrder = {
- "person"
-})
-public class AddCommunicationObjectResponseType
- extends CommonResponseType
-{
-
- @XmlElement(name = "Person")
- protected PersonType person;
-
- /**
- * Ruft den Wert der person-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link PersonType }
- *
- */
- public PersonType getPerson() {
- return person;
- }
-
- /**
- * Legt den Wert der person-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link PersonType }
- *
- */
- public void setPerson(PersonType value) {
- this.person = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangeCommunicationObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangeCommunicationObjectRequestType.java
deleted file mode 100644
index ebc04fbb..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangeCommunicationObjectRequestType.java
+++ /dev/null
@@ -1,184 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlElementRef;
-import javax.xml.bind.annotation.XmlElementRefs;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-import at.vvo.omds.types.omds2Types.v2_11.ELKommunikationType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.DateianhangType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-
-
-/**
- * Typ des Requestobjekts für eine Änderung einer bestehenden Kommunikationsverbindung
- *
- * Java-Klasse für ChangeCommunicationObjectRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="ChangeCommunicationObjectRequest_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- * <sequence>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <sequence maxOccurs="unbounded">
- * <choice>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <element name="BisherigeKommunikationsVerbindung" type="{urn:omds20}EL-Kommunikation_Type"/>
- * </choice>
- * <element name="GeaenderteKommunikationsVerbindung" type="{urn:omds20}EL-Kommunikation_Type"/>
- * </sequence>
- * <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
- * <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ChangeCommunicationObjectRequest_Type", propOrder = {
- "objektId",
- "objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung",
- "wirksamtkeitAb",
- "dateianhaenge"
-})
-public class ChangeCommunicationObjectRequestType
- extends CommonRequestType
-{
-
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
- protected ObjektIdType objektId;
- @XmlElementRefs({
- @XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class),
- @XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
- @XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class)
- })
- protected List> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
- @XmlElement(name = "WirksamtkeitAb", required = true)
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar wirksamtkeitAb;
- @XmlElement(name = "Dateianhaenge")
- protected List dateianhaenge;
-
- /**
- * Die Personennr als ObjektId
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- /**
- * Gets the value of the objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getObjektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
- * {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
- * {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
- *
- *
- */
- public List> getObjektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung() {
- if (objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung == null) {
- objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung = new ArrayList>();
- }
- return this.objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
- }
-
- /**
- * Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getWirksamtkeitAb() {
- return wirksamtkeitAb;
- }
-
- /**
- * Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setWirksamtkeitAb(XMLGregorianCalendar value) {
- this.wirksamtkeitAb = value;
- }
-
- /**
- * Gets the value of the dateianhaenge property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the dateianhaenge property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getDateianhaenge().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link DateianhangType }
- *
- *
- */
- public List getDateianhaenge() {
- if (dateianhaenge == null) {
- dateianhaenge = new ArrayList();
- }
- return this.dateianhaenge;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangeCommunicationObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangeCommunicationObjectResponse.java
deleted file mode 100644
index 498f5c1f..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangeCommunicationObjectResponse.java
+++ /dev/null
@@ -1,34 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Java-Klasse für anonymous complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType>
- * <complexContent>
- * <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner}ChangeCommunicationObjectResponse_Type">
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "")
-@XmlRootElement(name = "ChangeCommunicationObjectResponse")
-public class ChangeCommunicationObjectResponse
- extends ChangeCommunicationObjectResponseType
-{
-
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangeCommunicationObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangeCommunicationObjectResponseType.java
deleted file mode 100644
index 260e88ee..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangeCommunicationObjectResponseType.java
+++ /dev/null
@@ -1,72 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlSeeAlso;
-import javax.xml.bind.annotation.XmlType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.PersonType;
-
-
-/**
- * Typ des Response für eine Änderung, Löschung oder Neuanlage einer Kommunikationsverbindung
- *
- * Java-Klasse für ChangeCommunicationObjectResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="ChangeCommunicationObjectResponse_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- * <sequence>
- * <element name="Person" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ChangeCommunicationObjectResponse_Type", propOrder = {
- "person"
-})
-@XmlSeeAlso({
- ChangeCommunicationObjectResponse.class
-})
-public class ChangeCommunicationObjectResponseType
- extends CommonResponseType
-{
-
- @XmlElement(name = "Person")
- protected PersonType person;
-
- /**
- * Ruft den Wert der person-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link PersonType }
- *
- */
- public PersonType getPerson() {
- return person;
- }
-
- /**
- * Legt den Wert der person-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link PersonType }
- *
- */
- public void setPerson(PersonType value) {
- this.person = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePartnerMainAddressRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePartnerMainAddressRequestType.java
deleted file mode 100644
index 24000f8e..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePartnerMainAddressRequestType.java
+++ /dev/null
@@ -1,341 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.AdresseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.DateianhangType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-
-
-/**
- * Typ des Requestobjekts für eine Änderung einer bestehenden Adresse
- *
- * Java-Klasse für ChangePartnerMainAddressRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="ChangePartnerMainAddressRequest_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- * <sequence>
- * <element name="Personennr" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- * <element name="Hinweistext" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="BisherigeAnschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Adresse_Type"/>
- * <element name="GeaenderteAnschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Adresse_Type"/>
- * <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
- * <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="UeberschreibeZustelladresseInVertraegen" maxOccurs="unbounded" minOccurs="0">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- * <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ChangePartnerMainAddressRequest_Type", propOrder = {
- "personennr",
- "hinweistext",
- "bisherigeAnschrift",
- "geaenderteAnschrift",
- "wirksamtkeitAb",
- "dateianhaenge",
- "ueberschreibeZustelladresseInVertraegen"
-})
-public class ChangePartnerMainAddressRequestType
- extends CommonRequestType
-{
-
- @XmlElement(name = "Personennr", required = true)
- protected ObjektIdType personennr;
- @XmlElement(name = "Hinweistext")
- protected String hinweistext;
- @XmlElement(name = "BisherigeAnschrift", required = true)
- protected AdresseType bisherigeAnschrift;
- @XmlElement(name = "GeaenderteAnschrift", required = true)
- protected AdresseType geaenderteAnschrift;
- @XmlElement(name = "WirksamtkeitAb", required = true)
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar wirksamtkeitAb;
- @XmlElement(name = "Dateianhaenge")
- protected List dateianhaenge;
- @XmlElement(name = "UeberschreibeZustelladresseInVertraegen")
- protected List ueberschreibeZustelladresseInVertraegen;
-
- /**
- * Ruft den Wert der personennr-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getPersonennr() {
- return personennr;
- }
-
- /**
- * Legt den Wert der personennr-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setPersonennr(ObjektIdType value) {
- this.personennr = value;
- }
-
- /**
- * Ruft den Wert der hinweistext-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getHinweistext() {
- return hinweistext;
- }
-
- /**
- * Legt den Wert der hinweistext-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setHinweistext(String value) {
- this.hinweistext = value;
- }
-
- /**
- * Ruft den Wert der bisherigeAnschrift-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link AdresseType }
- *
- */
- public AdresseType getBisherigeAnschrift() {
- return bisherigeAnschrift;
- }
-
- /**
- * Legt den Wert der bisherigeAnschrift-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link AdresseType }
- *
- */
- public void setBisherigeAnschrift(AdresseType value) {
- this.bisherigeAnschrift = value;
- }
-
- /**
- * Ruft den Wert der geaenderteAnschrift-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link AdresseType }
- *
- */
- public AdresseType getGeaenderteAnschrift() {
- return geaenderteAnschrift;
- }
-
- /**
- * Legt den Wert der geaenderteAnschrift-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link AdresseType }
- *
- */
- public void setGeaenderteAnschrift(AdresseType value) {
- this.geaenderteAnschrift = value;
- }
-
- /**
- * Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getWirksamtkeitAb() {
- return wirksamtkeitAb;
- }
-
- /**
- * Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setWirksamtkeitAb(XMLGregorianCalendar value) {
- this.wirksamtkeitAb = value;
- }
-
- /**
- * Gets the value of the dateianhaenge property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the dateianhaenge property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getDateianhaenge().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link DateianhangType }
- *
- *
- */
- public List getDateianhaenge() {
- if (dateianhaenge == null) {
- dateianhaenge = new ArrayList();
- }
- return this.dateianhaenge;
- }
-
- /**
- * Gets the value of the ueberschreibeZustelladresseInVertraegen property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the ueberschreibeZustelladresseInVertraegen property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getUeberschreibeZustelladresseInVertraegen().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link ChangePartnerMainAddressRequestType.UeberschreibeZustelladresseInVertraegen }
- *
- *
- */
- public List getUeberschreibeZustelladresseInVertraegen() {
- if (ueberschreibeZustelladresseInVertraegen == null) {
- ueberschreibeZustelladresseInVertraegen = new ArrayList();
- }
- return this.ueberschreibeZustelladresseInVertraegen;
- }
-
-
- /**
- * Java-Klasse für anonymous complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
- * <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "")
- public static class UeberschreibeZustelladresseInVertraegen {
-
- @XmlAttribute(name = "Polizzennr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", required = true)
- protected String polizzennr;
- @XmlAttribute(name = "VertragsID", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
- protected String vertragsID;
-
- /**
- * Ruft den Wert der polizzennr-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPolizzennr() {
- return polizzennr;
- }
-
- /**
- * Legt den Wert der polizzennr-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setPolizzennr(String value) {
- this.polizzennr = value;
- }
-
- /**
- * Ruft den Wert der vertragsID-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVertragsID() {
- return vertragsID;
- }
-
- /**
- * Legt den Wert der vertragsID-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVertragsID(String value) {
- this.vertragsID = value;
- }
-
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePartnerMainAddressResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePartnerMainAddressResponseType.java
deleted file mode 100644
index 41ddc0d2..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePartnerMainAddressResponseType.java
+++ /dev/null
@@ -1,166 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import java.util.ArrayList;
-import java.util.List;
-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.vvo.omds.types.omds2Types.v2_11.VERTRAGType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.AdresseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.PersonType;
-
-
-/**
- * Typ des Response für eine Änderung, Löschung oder Neuanlage einer Adresse
- *
- * Java-Klasse für ChangePartnerMainAddressResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="ChangePartnerMainAddressResponse_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- * <sequence>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
- * <element name="VertraegeGeaendert" type="{urn:omds20}VERTRAG_Type" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="VertraegeMitUnveraendertenRisikoadressen" type="{urn:omds20}VERTRAG_Type" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="WeiterePersonenAnAdresse" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ChangePartnerMainAddressResponse_Type", propOrder = {
- "adresse",
- "vertraegeGeaendert",
- "vertraegeMitUnveraendertenRisikoadressen",
- "weiterePersonenAnAdresse"
-})
-public class ChangePartnerMainAddressResponseType
- extends CommonResponseType
-{
-
- @XmlElement(name = "Adresse", namespace = "urn:omds3CommonServiceTypes-1-1-0")
- protected AdresseType adresse;
- @XmlElement(name = "VertraegeGeaendert")
- protected List vertraegeGeaendert;
- @XmlElement(name = "VertraegeMitUnveraendertenRisikoadressen")
- protected List vertraegeMitUnveraendertenRisikoadressen;
- @XmlElement(name = "WeiterePersonenAnAdresse")
- protected PersonType weiterePersonenAnAdresse;
-
- /**
- * Die neue Adresse
- *
- * @return
- * possible object is
- * {@link AdresseType }
- *
- */
- public AdresseType getAdresse() {
- return adresse;
- }
-
- /**
- * Legt den Wert der adresse-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link AdresseType }
- *
- */
- public void setAdresse(AdresseType value) {
- this.adresse = value;
- }
-
- /**
- * Gets the value of the vertraegeGeaendert property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the vertraegeGeaendert property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getVertraegeGeaendert().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link VERTRAGType }
- *
- *
- */
- public List getVertraegeGeaendert() {
- if (vertraegeGeaendert == null) {
- vertraegeGeaendert = new ArrayList();
- }
- return this.vertraegeGeaendert;
- }
-
- /**
- * Gets the value of the vertraegeMitUnveraendertenRisikoadressen property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the vertraegeMitUnveraendertenRisikoadressen property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getVertraegeMitUnveraendertenRisikoadressen().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link VERTRAGType }
- *
- *
- */
- public List getVertraegeMitUnveraendertenRisikoadressen() {
- if (vertraegeMitUnveraendertenRisikoadressen == null) {
- vertraegeMitUnveraendertenRisikoadressen = new ArrayList();
- }
- return this.vertraegeMitUnveraendertenRisikoadressen;
- }
-
- /**
- * Ruft den Wert der weiterePersonenAnAdresse-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link PersonType }
- *
- */
- public PersonType getWeiterePersonenAnAdresse() {
- return weiterePersonenAnAdresse;
- }
-
- /**
- * Legt den Wert der weiterePersonenAnAdresse-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link PersonType }
- *
- */
- public void setWeiterePersonenAnAdresse(PersonType value) {
- this.weiterePersonenAnAdresse = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePersonDataRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePersonDataRequestType.java
deleted file mode 100644
index 79dcac62..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePersonDataRequestType.java
+++ /dev/null
@@ -1,223 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import java.util.ArrayList;
-import java.util.List;
-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.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-import at.vvo.omds.types.omds2Types.v2_11.NATUERLICHEPERSONType;
-import at.vvo.omds.types.omds2Types.v2_11.SONSTIGEPERSONType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.DateianhangType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-
-
-/**
- * Typ des Requestobjekts für eine Änderung der allgemeinen Personendaten
- *
- * Java-Klasse für ChangePersonDataRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="ChangePersonDataRequest_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- * <sequence>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <element name="Hinweistext" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <choice>
- * <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
- * <element ref="{urn:omds20}SONSTIGE_PERSON"/>
- * </choice>
- * <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
- * <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ChangePersonDataRequest_Type", propOrder = {
- "objektId",
- "hinweistext",
- "natuerlicheperson",
- "sonstigeperson",
- "wirksamtkeitAb",
- "dateianhaenge"
-})
-public class ChangePersonDataRequestType
- extends CommonRequestType
-{
-
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
- protected ObjektIdType objektId;
- @XmlElement(name = "Hinweistext")
- protected String hinweistext;
- @XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20")
- protected NATUERLICHEPERSONType natuerlicheperson;
- @XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20")
- protected SONSTIGEPERSONType sonstigeperson;
- @XmlElement(name = "WirksamtkeitAb", required = true)
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar wirksamtkeitAb;
- @XmlElement(name = "Dateianhaenge")
- protected List dateianhaenge;
-
- /**
- * Personennr als ObjektId
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- /**
- * Ruft den Wert der hinweistext-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getHinweistext() {
- return hinweistext;
- }
-
- /**
- * Legt den Wert der hinweistext-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setHinweistext(String value) {
- this.hinweistext = value;
- }
-
- /**
- * Ruft den Wert der natuerlicheperson-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link NATUERLICHEPERSONType }
- *
- */
- public NATUERLICHEPERSONType getNATUERLICHEPERSON() {
- return natuerlicheperson;
- }
-
- /**
- * Legt den Wert der natuerlicheperson-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link NATUERLICHEPERSONType }
- *
- */
- public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) {
- this.natuerlicheperson = value;
- }
-
- /**
- * Ruft den Wert der sonstigeperson-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link SONSTIGEPERSONType }
- *
- */
- public SONSTIGEPERSONType getSONSTIGEPERSON() {
- return sonstigeperson;
- }
-
- /**
- * Legt den Wert der sonstigeperson-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link SONSTIGEPERSONType }
- *
- */
- public void setSONSTIGEPERSON(SONSTIGEPERSONType value) {
- this.sonstigeperson = value;
- }
-
- /**
- * Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getWirksamtkeitAb() {
- return wirksamtkeitAb;
- }
-
- /**
- * Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setWirksamtkeitAb(XMLGregorianCalendar value) {
- this.wirksamtkeitAb = value;
- }
-
- /**
- * Gets the value of the dateianhaenge property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the dateianhaenge property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getDateianhaenge().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link DateianhangType }
- *
- *
- */
- public List getDateianhaenge() {
- if (dateianhaenge == null) {
- dateianhaenge = new ArrayList();
- }
- return this.dateianhaenge;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePersonDataResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePersonDataResponseType.java
deleted file mode 100644
index 1d0a2c62..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ChangePersonDataResponseType.java
+++ /dev/null
@@ -1,198 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import java.util.ArrayList;
-import java.util.List;
-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.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.PersonType;
-
-
-/**
- * Typ des Response für eine Änderung der allgemeinen Personendaten
- *
- * Java-Klasse für ChangePersonDataResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="ChangePersonDataResponse_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- * <sequence>
- * <element name="Person" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
- * <element name="BetroffeneObjekte" maxOccurs="unbounded" minOccurs="0">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="Art" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ChangePersonDataResponse_Type", propOrder = {
- "person",
- "betroffeneObjekte"
-})
-public class ChangePersonDataResponseType
- extends CommonResponseType
-{
-
- @XmlElement(name = "Person", required = true)
- protected PersonType person;
- @XmlElement(name = "BetroffeneObjekte")
- protected List betroffeneObjekte;
-
- /**
- * Ruft den Wert der person-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link PersonType }
- *
- */
- public PersonType getPerson() {
- return person;
- }
-
- /**
- * Legt den Wert der person-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link PersonType }
- *
- */
- public void setPerson(PersonType value) {
- this.person = value;
- }
-
- /**
- * Gets the value of the betroffeneObjekte property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the betroffeneObjekte property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getBetroffeneObjekte().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link ChangePersonDataResponseType.BetroffeneObjekte }
- *
- *
- */
- public List getBetroffeneObjekte() {
- if (betroffeneObjekte == null) {
- betroffeneObjekte = new ArrayList();
- }
- return this.betroffeneObjekte;
- }
-
-
- /**
- * Java-Klasse für anonymous complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="Art" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "art",
- "objektId"
- })
- public static class BetroffeneObjekte {
-
- @XmlElement(name = "Art", required = true)
- protected Object art;
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
- protected ObjektIdType objektId;
-
- /**
- * Ruft den Wert der art-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link Object }
- *
- */
- public Object getArt() {
- return art;
- }
-
- /**
- * Legt den Wert der art-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link Object }
- *
- */
- public void setArt(Object value) {
- this.art = value;
- }
-
- /**
- * Ruft den Wert der objektId-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/CheckAddressRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/CheckAddressRequestType.java
deleted file mode 100644
index 0deb6c6f..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/CheckAddressRequestType.java
+++ /dev/null
@@ -1,68 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-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.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType;
-
-
-/**
- * Requesttyp um eine Adresse zu ueberprüfen
- *
- * Java-Klasse für CheckAddressRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="CheckAddressRequest_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- * <sequence>
- * <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CheckAddressRequest_Type", propOrder = {
- "adresse"
-})
-public class CheckAddressRequestType
- extends CommonRequestType
-{
-
- @XmlElement(name = "Adresse", required = true)
- protected ADRESSEType adresse;
-
- /**
- * Ruft den Wert der adresse-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link ADRESSEType }
- *
- */
- public ADRESSEType getAdresse() {
- return adresse;
- }
-
- /**
- * Legt den Wert der adresse-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ADRESSEType }
- *
- */
- public void setAdresse(ADRESSEType value) {
- this.adresse = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/CheckAddressResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/CheckAddressResponseType.java
deleted file mode 100644
index 673c7b21..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/CheckAddressResponseType.java
+++ /dev/null
@@ -1,103 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import java.util.ArrayList;
-import java.util.List;
-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.vvo.omds.types.omds3Types.r1_5_0.common.AdresseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType;
-
-
-/**
- * Responsetyp der Überprüfung einer Adresse
- *
- * Java-Klasse für CheckAddressResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="CheckAddressResponse_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- * <sequence>
- * <element name="Adresse" type="{urn:omds3CommonServiceTypes-1-1-0}Adresse_Type" minOccurs="0"/>
- * <element name="AlternativeAdressen" type="{urn:omds3CommonServiceTypes-1-1-0}Adresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CheckAddressResponse_Type", propOrder = {
- "adresse",
- "alternativeAdressen"
-})
-public class CheckAddressResponseType
- extends CommonResponseType
-{
-
- @XmlElement(name = "Adresse")
- protected AdresseType adresse;
- @XmlElement(name = "AlternativeAdressen")
- protected List alternativeAdressen;
-
- /**
- * Ruft den Wert der adresse-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link AdresseType }
- *
- */
- public AdresseType getAdresse() {
- return adresse;
- }
-
- /**
- * Legt den Wert der adresse-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link AdresseType }
- *
- */
- public void setAdresse(AdresseType value) {
- this.adresse = value;
- }
-
- /**
- * Gets the value of the alternativeAdressen property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the alternativeAdressen property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getAlternativeAdressen().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link AdresseType }
- *
- *
- */
- public List getAlternativeAdressen() {
- if (alternativeAdressen == null) {
- alternativeAdressen = new ArrayList();
- }
- return this.alternativeAdressen;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/DeleteCommunicationObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/DeleteCommunicationObjectRequestType.java
deleted file mode 100644
index c20f492d..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/DeleteCommunicationObjectRequestType.java
+++ /dev/null
@@ -1,143 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlElements;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-import at.vvo.omds.types.omds2Types.v2_11.ELKommunikationType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-
-
-/**
- * Typ des Requestobjekts für die Löschung einer Kommunikationsverbindung
- *
- * Java-Klasse für DeleteCommunicationObjectRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="DeleteCommunicationObjectRequest_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- * <sequence>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <choice maxOccurs="unbounded">
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * <element name="KommunikationsVerbindung" type="{urn:omds20}EL-Kommunikation_Type"/>
- * </choice>
- * <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "DeleteCommunicationObjectRequest_Type", propOrder = {
- "objektId",
- "objektIdOrKommunikationsVerbindung",
- "wirksamtkeitAb"
-})
-public class DeleteCommunicationObjectRequestType
- extends CommonRequestType
-{
-
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
- protected ObjektIdType objektId;
- @XmlElements({
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = ObjektIdType.class),
- @XmlElement(name = "KommunikationsVerbindung", type = ELKommunikationType.class)
- })
- protected List objektIdOrKommunikationsVerbindung;
- @XmlElement(name = "WirksamtkeitAb", required = true)
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar wirksamtkeitAb;
-
- /**
- * Die Personennr als ObjektId
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
- /**
- * Gets the value of the objektIdOrKommunikationsVerbindung property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set method for the objektIdOrKommunikationsVerbindung property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getObjektIdOrKommunikationsVerbindung().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link ObjektIdType }
- * {@link ELKommunikationType }
- *
- *
- */
- public List getObjektIdOrKommunikationsVerbindung() {
- if (objektIdOrKommunikationsVerbindung == null) {
- objektIdOrKommunikationsVerbindung = new ArrayList();
- }
- return this.objektIdOrKommunikationsVerbindung;
- }
-
- /**
- * Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getWirksamtkeitAb() {
- return wirksamtkeitAb;
- }
-
- /**
- * Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setWirksamtkeitAb(XMLGregorianCalendar value) {
- this.wirksamtkeitAb = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/DeleteCommunicationObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/DeleteCommunicationObjectResponseType.java
deleted file mode 100644
index ffc38cc4..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/DeleteCommunicationObjectResponseType.java
+++ /dev/null
@@ -1,68 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-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.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.PersonType;
-
-
-/**
- * Typ des Response für eine Löschung einer Kommunikationsverbindung
- *
- * Java-Klasse für DeleteCommunicationObjectResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="DeleteCommunicationObjectResponse_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- * <sequence>
- * <element name="Person" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "DeleteCommunicationObjectResponse_Type", propOrder = {
- "person"
-})
-public class DeleteCommunicationObjectResponseType
- extends CommonResponseType
-{
-
- @XmlElement(name = "Person")
- protected PersonType person;
-
- /**
- * Ruft den Wert der person-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link PersonType }
- *
- */
- public PersonType getPerson() {
- return person;
- }
-
- /**
- * Legt den Wert der person-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link PersonType }
- *
- */
- public void setPerson(PersonType value) {
- this.person = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/GetPartnerRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/GetPartnerRequestType.java
deleted file mode 100644
index 89fd476f..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/GetPartnerRequestType.java
+++ /dev/null
@@ -1,97 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-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.vvo.omds.types.omds3Types.r1_5_0.common.AgentFilterType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.CommonRequestType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
-
-
-/**
- * Requesttyp um aktuelle Partnerdaten zu beziehen
- *
- * Java-Klasse für GetPartnerRequest_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="GetPartnerRequest_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- * <sequence>
- * <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- * <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "GetPartnerRequest_Type", propOrder = {
- "authFilter",
- "objektId"
-})
-public class GetPartnerRequestType
- extends CommonRequestType
-{
-
- @XmlElement(name = "AuthFilter")
- protected AgentFilterType authFilter;
- @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
- protected ObjektIdType objektId;
-
- /**
- * Ruft den Wert der authFilter-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link AgentFilterType }
- *
- */
- public AgentFilterType getAuthFilter() {
- return authFilter;
- }
-
- /**
- * Legt den Wert der authFilter-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link AgentFilterType }
- *
- */
- public void setAuthFilter(AgentFilterType value) {
- this.authFilter = value;
- }
-
- /**
- * Die Id der Person
- *
- * @return
- * possible object is
- * {@link ObjektIdType }
- *
- */
- public ObjektIdType getObjektId() {
- return objektId;
- }
-
- /**
- * Legt den Wert der objektId-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link ObjektIdType }
- *
- */
- public void setObjektId(ObjektIdType value) {
- this.objektId = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/GetPartnerResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/GetPartnerResponseType.java
deleted file mode 100644
index 98843182..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/GetPartnerResponseType.java
+++ /dev/null
@@ -1,68 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-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.vvo.omds.types.omds3Types.r1_5_0.common.CommonResponseType;
-import at.vvo.omds.types.omds3Types.r1_5_0.common.PersonType;
-
-
-/**
- * Responsetyp um aktuelle Partnerdaten zu beziehen
- *
- * Java-Klasse für GetPartnerResponse_Type complex type.
- *
- *
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
- *
- *
- * <complexType name="GetPartnerResponse_Type">
- * <complexContent>
- * <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- * <sequence>
- * <element name="Person" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" minOccurs="0"/>
- * </sequence>
- * </extension>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "GetPartnerResponse_Type", propOrder = {
- "person"
-})
-public class GetPartnerResponseType
- extends CommonResponseType
-{
-
- @XmlElement(name = "Person")
- protected PersonType person;
-
- /**
- * Ruft den Wert der person-Eigenschaft ab.
- *
- * @return
- * possible object is
- * {@link PersonType }
- *
- */
- public PersonType getPerson() {
- return person;
- }
-
- /**
- * Legt den Wert der person-Eigenschaft fest.
- *
- * @param value
- * allowed object is
- * {@link PersonType }
- *
- */
- public void setPerson(PersonType value) {
- this.person = value;
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ObjectFactory.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ObjectFactory.java
deleted file mode 100644
index f54f796c..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/ObjectFactory.java
+++ /dev/null
@@ -1,322 +0,0 @@
-
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-import at.vvo.omds.types.omds2Types.v2_11.ELKommunikationType;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the at.vvo.omds.types.omds3Types.r1_5_0.on4partner package.
- * An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _GetPartnerRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "GetPartnerRequest");
- private final static QName _GetPartnerResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "GetPartnerResponse");
- private final static QName _CheckAddressRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "CheckAddressRequest");
- private final static QName _CheckAddressResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "CheckAddressResponse");
- private final static QName _ChangePartnerMainAddressRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "ChangePartnerMainAddressRequest");
- private final static QName _ChangePartnerMainAddressResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "ChangePartnerMainAddressResponse");
- private final static QName _ChangePersonDataRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "ChangePersonDataRequest");
- private final static QName _ChangePersonDataResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "ChangePersonDataResponse");
- private final static QName _ChangeCommunicationObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "ChangeCommunicationObjectRequest");
- private final static QName _AddCommunicationObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "AddCommunicationObjectRequest");
- private final static QName _AddCommunicationObjectResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "AddCommunicationObjectResponse");
- private final static QName _DeleteCommunicationObjectRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "DeleteCommunicationObjectRequest");
- private final static QName _DeleteCommunicationObjectResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "DeleteCommunicationObjectResponse");
- private final static QName _ChangeCommunicationObjectRequestTypeBisherigeKommunikationsVerbindung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "BisherigeKommunikationsVerbindung");
- private final static QName _ChangeCommunicationObjectRequestTypeGeaenderteKommunikationsVerbindung_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", "GeaenderteKommunikationsVerbindung");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on4partner
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link ChangePersonDataResponseType }
- *
- */
- public ChangePersonDataResponseType createChangePersonDataResponseType() {
- return new ChangePersonDataResponseType();
- }
-
- /**
- * Create an instance of {@link ChangePartnerMainAddressRequestType }
- *
- */
- public ChangePartnerMainAddressRequestType createChangePartnerMainAddressRequestType() {
- return new ChangePartnerMainAddressRequestType();
- }
-
- /**
- * Create an instance of {@link GetPartnerRequestType }
- *
- */
- public GetPartnerRequestType createGetPartnerRequestType() {
- return new GetPartnerRequestType();
- }
-
- /**
- * Create an instance of {@link GetPartnerResponseType }
- *
- */
- public GetPartnerResponseType createGetPartnerResponseType() {
- return new GetPartnerResponseType();
- }
-
- /**
- * Create an instance of {@link CheckAddressRequestType }
- *
- */
- public CheckAddressRequestType createCheckAddressRequestType() {
- return new CheckAddressRequestType();
- }
-
- /**
- * Create an instance of {@link CheckAddressResponseType }
- *
- */
- public CheckAddressResponseType createCheckAddressResponseType() {
- return new CheckAddressResponseType();
- }
-
- /**
- * Create an instance of {@link ChangePartnerMainAddressResponseType }
- *
- */
- public ChangePartnerMainAddressResponseType createChangePartnerMainAddressResponseType() {
- return new ChangePartnerMainAddressResponseType();
- }
-
- /**
- * Create an instance of {@link ChangePersonDataRequestType }
- *
- */
- public ChangePersonDataRequestType createChangePersonDataRequestType() {
- return new ChangePersonDataRequestType();
- }
-
- /**
- * Create an instance of {@link ChangeCommunicationObjectRequestType }
- *
- */
- public ChangeCommunicationObjectRequestType createChangeCommunicationObjectRequestType() {
- return new ChangeCommunicationObjectRequestType();
- }
-
- /**
- * Create an instance of {@link ChangeCommunicationObjectResponse }
- *
- */
- public ChangeCommunicationObjectResponse createChangeCommunicationObjectResponse() {
- return new ChangeCommunicationObjectResponse();
- }
-
- /**
- * Create an instance of {@link ChangeCommunicationObjectResponseType }
- *
- */
- public ChangeCommunicationObjectResponseType createChangeCommunicationObjectResponseType() {
- return new ChangeCommunicationObjectResponseType();
- }
-
- /**
- * Create an instance of {@link AddCommunicationObjectRequestType }
- *
- */
- public AddCommunicationObjectRequestType createAddCommunicationObjectRequestType() {
- return new AddCommunicationObjectRequestType();
- }
-
- /**
- * Create an instance of {@link AddCommunicationObjectResponseType }
- *
- */
- public AddCommunicationObjectResponseType createAddCommunicationObjectResponseType() {
- return new AddCommunicationObjectResponseType();
- }
-
- /**
- * Create an instance of {@link DeleteCommunicationObjectRequestType }
- *
- */
- public DeleteCommunicationObjectRequestType createDeleteCommunicationObjectRequestType() {
- return new DeleteCommunicationObjectRequestType();
- }
-
- /**
- * Create an instance of {@link DeleteCommunicationObjectResponseType }
- *
- */
- public DeleteCommunicationObjectResponseType createDeleteCommunicationObjectResponseType() {
- return new DeleteCommunicationObjectResponseType();
- }
-
- /**
- * Create an instance of {@link ChangePersonDataResponseType.BetroffeneObjekte }
- *
- */
- public ChangePersonDataResponseType.BetroffeneObjekte createChangePersonDataResponseTypeBetroffeneObjekte() {
- return new ChangePersonDataResponseType.BetroffeneObjekte();
- }
-
- /**
- * Create an instance of {@link ChangePartnerMainAddressRequestType.UeberschreibeZustelladresseInVertraegen }
- *
- */
- public ChangePartnerMainAddressRequestType.UeberschreibeZustelladresseInVertraegen createChangePartnerMainAddressRequestTypeUeberschreibeZustelladresseInVertraegen() {
- return new ChangePartnerMainAddressRequestType.UeberschreibeZustelladresseInVertraegen();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link GetPartnerRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "GetPartnerRequest")
- public JAXBElement createGetPartnerRequest(GetPartnerRequestType value) {
- return new JAXBElement(_GetPartnerRequest_QNAME, GetPartnerRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link GetPartnerResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "GetPartnerResponse")
- public JAXBElement createGetPartnerResponse(GetPartnerResponseType value) {
- return new JAXBElement(_GetPartnerResponse_QNAME, GetPartnerResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CheckAddressRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "CheckAddressRequest")
- public JAXBElement createCheckAddressRequest(CheckAddressRequestType value) {
- return new JAXBElement(_CheckAddressRequest_QNAME, CheckAddressRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CheckAddressResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "CheckAddressResponse")
- public JAXBElement createCheckAddressResponse(CheckAddressResponseType value) {
- return new JAXBElement(_CheckAddressResponse_QNAME, CheckAddressResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ChangePartnerMainAddressRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "ChangePartnerMainAddressRequest")
- public JAXBElement createChangePartnerMainAddressRequest(ChangePartnerMainAddressRequestType value) {
- return new JAXBElement(_ChangePartnerMainAddressRequest_QNAME, ChangePartnerMainAddressRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ChangePartnerMainAddressResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "ChangePartnerMainAddressResponse")
- public JAXBElement createChangePartnerMainAddressResponse(ChangePartnerMainAddressResponseType value) {
- return new JAXBElement(_ChangePartnerMainAddressResponse_QNAME, ChangePartnerMainAddressResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ChangePersonDataRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "ChangePersonDataRequest")
- public JAXBElement createChangePersonDataRequest(ChangePersonDataRequestType value) {
- return new JAXBElement(_ChangePersonDataRequest_QNAME, ChangePersonDataRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ChangePersonDataResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "ChangePersonDataResponse")
- public JAXBElement createChangePersonDataResponse(ChangePersonDataResponseType value) {
- return new JAXBElement(_ChangePersonDataResponse_QNAME, ChangePersonDataResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ChangeCommunicationObjectRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "ChangeCommunicationObjectRequest")
- public JAXBElement createChangeCommunicationObjectRequest(ChangeCommunicationObjectRequestType value) {
- return new JAXBElement(_ChangeCommunicationObjectRequest_QNAME, ChangeCommunicationObjectRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link AddCommunicationObjectRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "AddCommunicationObjectRequest")
- public JAXBElement createAddCommunicationObjectRequest(AddCommunicationObjectRequestType value) {
- return new JAXBElement(_AddCommunicationObjectRequest_QNAME, AddCommunicationObjectRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link AddCommunicationObjectResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "AddCommunicationObjectResponse")
- public JAXBElement createAddCommunicationObjectResponse(AddCommunicationObjectResponseType value) {
- return new JAXBElement(_AddCommunicationObjectResponse_QNAME, AddCommunicationObjectResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link DeleteCommunicationObjectRequestType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "DeleteCommunicationObjectRequest")
- public JAXBElement createDeleteCommunicationObjectRequest(DeleteCommunicationObjectRequestType value) {
- return new JAXBElement(_DeleteCommunicationObjectRequest_QNAME, DeleteCommunicationObjectRequestType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link DeleteCommunicationObjectResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "DeleteCommunicationObjectResponse")
- public JAXBElement createDeleteCommunicationObjectResponse(DeleteCommunicationObjectResponseType value) {
- return new JAXBElement(_DeleteCommunicationObjectResponse_QNAME, DeleteCommunicationObjectResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "BisherigeKommunikationsVerbindung", scope = ChangeCommunicationObjectRequestType.class)
- public JAXBElement createChangeCommunicationObjectRequestTypeBisherigeKommunikationsVerbindung(ELKommunikationType value) {
- return new JAXBElement(_ChangeCommunicationObjectRequestTypeBisherigeKommunikationsVerbindung_QNAME, ELKommunikationType.class, ChangeCommunicationObjectRequestType.class, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", name = "GeaenderteKommunikationsVerbindung", scope = ChangeCommunicationObjectRequestType.class)
- public JAXBElement createChangeCommunicationObjectRequestTypeGeaenderteKommunikationsVerbindung(ELKommunikationType value) {
- return new JAXBElement(_ChangeCommunicationObjectRequestTypeGeaenderteKommunikationsVerbindung_QNAME, ELKommunikationType.class, ChangeCommunicationObjectRequestType.class, value);
- }
-
-}
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/package-info.java
deleted file mode 100644
index 6271848e..00000000
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/on4partner/package-info.java
+++ /dev/null
@@ -1,2 +0,0 @@
-@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
-package at.vvo.omds.types.omds3Types.r1_5_0.on4partner;
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsService.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsService.java
index 5eb297c0..e14859c9 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsService.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsService.java
@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
/**
* This class was generated by Apache CXF 3.2.0
- * 2020-02-28T15:55:32.344+01:00
+ * 2020-07-08T09:37:29.158+02:00
* Generated source version: 3.2.0
*
*/
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortImpl.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortImpl.java
index 1774d452..5c037608 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortImpl.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortImpl.java
@@ -11,12 +11,12 @@ import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
-import javax.xml.ws.soap.MTOM;
-import java.util.logging.Logger;
+import javax.jws.soap.SOAPBinding;
+import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 3.2.0
- * 2020-02-28T15:55:32.235+01:00
+ * 2020-07-08T09:37:29.084+02:00
* Generated source version: 3.2.0
*
*/
@@ -27,7 +27,7 @@ import java.util.logging.Logger;
targetNamespace = "urn:omds3Services-1-4-0",
wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3Services.wsdl",
endpointInterface = "at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType")
-@MTOM(enabled = true, threshold = 1024)
+
public class OmdsServicePortImpl implements OmdsServicePortType {
private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName());
@@ -64,22 +64,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#checkAddress(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.CheckAddressRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.CheckAddressResponseType checkAddress(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.CheckAddressRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation checkAddress");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.CheckAddressResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters)*
*/
@@ -96,54 +80,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#addCommunicationObject(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.AddCommunicationObjectRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.AddCommunicationObjectResponseType addCommunicationObject(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.AddCommunicationObjectRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation addCommunicationObject");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.AddCommunicationObjectResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#calculateRechtsschutz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzResponseType calculateRechtsschutz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation calculateRechtsschutz");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation createApplicationRechtsschutz");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters)*
*/
@@ -208,22 +144,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzResponseType createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation createOfferRechtsschutz");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#searchClaim(at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SearchClaimRequestType parameters)*
*/
@@ -272,22 +192,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#changePersonData(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePersonDataRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePersonDataResponseType changePersonData(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePersonDataRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation changePersonData");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePersonDataResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkClaimRequest parameters)*
*/
@@ -320,22 +224,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#collectionChange(at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.CollectionChangeRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.CollectionChangeResponseType collectionChange(at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.CollectionChangeRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation collectionChange");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.CollectionChangeResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getOMDSPackage(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageRequest parameters)*
*/
@@ -432,38 +320,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getPoliciesOfPartner(at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.GetPoliciesOfPartnerResponseType getPoliciesOfPartner(at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation getPoliciesOfPartner");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.GetPoliciesOfPartnerResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#changeCommunicationObject(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangeCommunicationObjectRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangeCommunicationObjectResponse changeCommunicationObject(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangeCommunicationObjectRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation changeCommunicationObject");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangeCommunicationObjectResponse _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters)*
*/
@@ -480,22 +336,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.DeleteCommunicationObjectRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.DeleteCommunicationObjectRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation deleteCommunicationObject");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.DeleteCommunicationObjectResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#checkClaim(at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimRequestType parameters)*
*/
@@ -512,22 +352,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#getPartner(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.GetPartnerRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.GetPartnerResponseType getPartner(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.GetPartnerRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation getPartner");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.GetPartnerResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters)*
*/
@@ -576,38 +400,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#setMailingAddress(at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.SetMailingAddressRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.SetMailingAddressResponseType setMailingAddress(at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.SetMailingAddressRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation setMailingAddress");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.SetMailingAddressResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#submitApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType submitApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation submitApplicationRechtsschutz");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#login(at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.LoginRequestType parameters)*
*/
@@ -624,22 +416,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
- /* (non-Javadoc)
- * @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#changePartnerMainAddress(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePartnerMainAddressRequestType parameters)*
- */
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePartnerMainAddressResponseType changePartnerMainAddress(at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePartnerMainAddressRequestType parameters) throws ServiceFaultMsg {
- LOG.info("Executing operation changePartnerMainAddress");
- System.out.println(parameters);
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePartnerMainAddressResponseType _return = null;
- return _return;
- } catch (java.lang.Exception ex) {
- ex.printStackTrace();
- throw new RuntimeException(ex);
- }
- //throw new ServiceFaultMsg("ServiceFaultMsg...");
- }
-
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_5_0.service.OmdsServicePortType#submitApplicationKfz(at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzRequestType parameters)*
*/
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType.java
index c6115c29..56815091 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType.java
@@ -9,12 +9,12 @@ import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 3.2.0
- * 2020-02-28T15:55:32.282+01:00
+ * 2020-07-08T09:37:29.137+02:00
* Generated source version: 3.2.0
*
*/
@WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType")
-@XmlSeeAlso({at.vvo.omds.types.omds2Types.v2_11.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on1basis.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ObjectFactory.class})
+@XmlSeeAlso({at.vvo.omds.types.omds2Types.v2_11.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_5_0.on1basis.ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface OmdsServicePortType {
@@ -32,13 +32,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_5_0.on1basis.AddDocToBusinessCaseRequestType parameters
) throws ServiceFaultMsg;
- @WebMethod(action = "urn:checkAddress")
- @WebResult(name = "CheckAddressResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.CheckAddressResponseType checkAddress(
- @WebParam(partName = "parameters", name = "CheckAddressRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.CheckAddressRequestType parameters
- ) throws ServiceFaultMsg;
-
@WebMethod(action = "urn:calculateSachPrivat")
@WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(
@@ -46,27 +39,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters
) throws ServiceFaultMsg;
- @WebMethod(action = "urn:addCommunicationObject")
- @WebResult(name = "AddCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.AddCommunicationObjectResponseType addCommunicationObject(
- @WebParam(partName = "parameters", name = "AddCommunicationObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.AddCommunicationObjectRequestType parameters
- ) throws ServiceFaultMsg;
-
- @WebMethod(action = "urn:calculateRechtsschutz")
- @WebResult(name = "CalculateRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzResponseType calculateRechtsschutz(
- @WebParam(partName = "parameters", name = "CalculateRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzRequestType parameters
- ) throws ServiceFaultMsg;
-
- @WebMethod(action = "urn:createApplicationRechtsschutz")
- @WebResult(name = "CreateApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(
- @WebParam(partName = "parameters", name = "CreateApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters
- ) throws ServiceFaultMsg;
-
@WebMethod(action = "urn:createApplicationKfz")
@WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(
@@ -95,13 +67,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkPolicyRequest parameters
) throws ServiceFaultMsg;
- @WebMethod(action = "urn:createOfferRechtsschutz")
- @WebResult(name = "CreateOfferRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzResponseType createOfferRechtsschutz(
- @WebParam(partName = "parameters", name = "CreateOfferRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzRequestType parameters
- ) throws ServiceFaultMsg;
-
@WebMethod(action = "urn:searchClaim")
@WebResult(name = "SearchClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SearchClaimResponseType searchClaim(
@@ -123,13 +88,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.UserDataRequest parameters
) throws ServiceFaultMsg;
- @WebMethod(action = "urn:changePersonData")
- @WebResult(name = "ChangePersonDataResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePersonDataResponseType changePersonData(
- @WebParam(partName = "parameters", name = "ChangePersonDataRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePersonDataRequestType parameters
- ) throws ServiceFaultMsg;
-
@WebMethod(action = "urn:deepLinkClaim")
@WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(
@@ -144,13 +102,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimRequestType parameters
) throws ServiceFaultMsg;
- @WebMethod(action = "urn:collectionChange")
- @WebResult(name = "CollectionChangeResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.CollectionChangeResponseType collectionChange(
- @WebParam(partName = "parameters", name = "CollectionChangeRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag")
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.CollectionChangeRequestType parameters
- ) throws ServiceFaultMsg;
-
@WebMethod(action = "urn:getOMDSPackage")
@WebResult(name = "getOMDSPackageResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.OMDSPackageResponse getOMDSPackage(
@@ -193,20 +144,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzRequestType parameters
) throws ServiceFaultMsg;
- @WebMethod(action = "urn:changePersonData")
- @WebResult(name = "GetPoliciesOfPartnerResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.GetPoliciesOfPartnerResponseType getPoliciesOfPartner(
- @WebParam(partName = "parameters", name = "GetPoliciesOfPartnerRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag")
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters
- ) throws ServiceFaultMsg;
-
- @WebMethod(action = "urn:changeCommunicationObject")
- @WebResult(name = "ChangeCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangeCommunicationObjectResponse changeCommunicationObject(
- @WebParam(partName = "parameters", name = "ChangeCommunicationObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangeCommunicationObjectRequestType parameters
- ) throws ServiceFaultMsg;
-
@WebMethod(action = "urn:createOfferSachPrivat")
@WebResult(name = "CreateOfferSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat(
@@ -214,13 +151,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters
) throws ServiceFaultMsg;
- @WebMethod(action = "urn:deleteCommunicationObject")
- @WebResult(name = "DeleteCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(
- @WebParam(partName = "parameters", name = "DeleteCommunicationObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.DeleteCommunicationObjectRequestType parameters
- ) throws ServiceFaultMsg;
-
@WebMethod(action = "urn:checkClaim")
@WebResult(name = "CheckClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimResponseType checkClaim(
@@ -228,13 +158,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimRequestType parameters
) throws ServiceFaultMsg;
- @WebMethod(action = "urn:getPartner")
- @WebResult(name = "GetPartnerResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.GetPartnerResponseType getPartner(
- @WebParam(partName = "parameters", name = "GetPartnerRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.GetPartnerRequestType parameters
- ) throws ServiceFaultMsg;
-
@WebMethod(action = "urn:createApplicationSachPrivat")
@WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(
@@ -256,20 +179,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimRequestType parameters
) throws ServiceFaultMsg;
- @WebMethod(action = "urn:setMailingAddress")
- @WebResult(name = "SetMailingAddressResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.SetMailingAddressResponseType setMailingAddress(
- @WebParam(partName = "parameters", name = "SetMailingAddressRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag")
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.SetMailingAddressRequestType parameters
- ) throws ServiceFaultMsg;
-
- @WebMethod(action = "urn:submitApplicationRechtsschutz")
- @WebResult(name = "SubmitApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType submitApplicationRechtsschutz(
- @WebParam(partName = "parameters", name = "SubmitApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType parameters
- ) throws ServiceFaultMsg;
-
@WebMethod(action = "urn:login")
@WebResult(name = "loginResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse login(
@@ -277,13 +186,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.LoginRequestType parameters
) throws ServiceFaultMsg;
- @WebMethod(action = "urn:changePartnerMainAddress")
- @WebResult(name = "ChangePartnerMainAddressResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
- public at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePartnerMainAddressResponseType changePartnerMainAddress(
- @WebParam(partName = "parameters", name = "ChangePartnerMainAddressRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePartnerMainAddressRequestType parameters
- ) throws ServiceFaultMsg;
-
@WebMethod(action = "urn:submitApplicationKfz")
@WebResult(name = "SubmitApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzResponseType submitApplicationKfz(
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType_OmdsServicePort_Client.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType_OmdsServicePort_Client.java
index 3ce5e9c4..e03961c9 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType_OmdsServicePort_Client.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/OmdsServicePortType_OmdsServicePort_Client.java
@@ -16,11 +16,10 @@ import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;
-import javax.xml.ws.soap.MTOMFeature;
/**
* This class was generated by Apache CXF 3.2.0
- * 2020-02-28T15:55:32.123+01:00
+ * 2020-07-08T09:37:28.952+02:00
* Generated source version: 3.2.0
*
*/
@@ -46,11 +45,8 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
}
}
-// OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
-// OmdsServicePortType port = ss.getOmdsServicePort();
-
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
- OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024));
+ OmdsServicePortType port = ss.getOmdsServicePort();
{
System.out.println("Invoking getOMDSPackageList...");
@@ -71,18 +67,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_5_0.on1basis.AddDocToBusinessCaseResponseType _addDocToBusinessCase__return = port.addDocToBusinessCase(_addDocToBusinessCase_parameters);
System.out.println("addDocToBusinessCase.result=" + _addDocToBusinessCase__return);
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking checkAddress...");
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.CheckAddressRequestType _checkAddress_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.CheckAddressResponseType _checkAddress__return = port.checkAddress(_checkAddress_parameters);
- System.out.println("checkAddress.result=" + _checkAddress__return);
-
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -95,42 +79,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_parameters);
System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return);
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking addCommunicationObject...");
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.AddCommunicationObjectRequestType _addCommunicationObject_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.AddCommunicationObjectResponseType _addCommunicationObject__return = port.addCommunicationObject(_addCommunicationObject_parameters);
- System.out.println("addCommunicationObject.result=" + _addCommunicationObject__return);
-
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking calculateRechtsschutz...");
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzRequestType _calculateRechtsschutz_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzResponseType _calculateRechtsschutz__return = port.calculateRechtsschutz(_calculateRechtsschutz_parameters);
- System.out.println("calculateRechtsschutz.result=" + _calculateRechtsschutz__return);
-
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking createApplicationRechtsschutz...");
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType _createApplicationRechtsschutz_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _createApplicationRechtsschutz__return = port.createApplicationRechtsschutz(_createApplicationRechtsschutz_parameters);
- System.out.println("createApplicationRechtsschutz.result=" + _createApplicationRechtsschutz__return);
-
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -179,18 +127,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters);
System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return);
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking createOfferRechtsschutz...");
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzRequestType _createOfferRechtsschutz_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzResponseType _createOfferRechtsschutz__return = port.createOfferRechtsschutz(_createOfferRechtsschutz_parameters);
- System.out.println("createOfferRechtsschutz.result=" + _createOfferRechtsschutz__return);
-
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -227,18 +163,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters);
System.out.println("getUserData.result=" + _getUserData__return);
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking changePersonData...");
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePersonDataRequestType _changePersonData_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePersonDataResponseType _changePersonData__return = port.changePersonData(_changePersonData_parameters);
- System.out.println("changePersonData.result=" + _changePersonData__return);
-
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -263,18 +187,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_parameters);
System.out.println("submitClaim.result=" + _submitClaim__return);
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking collectionChange...");
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.CollectionChangeRequestType _collectionChange_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.CollectionChangeResponseType _collectionChange__return = port.collectionChange(_collectionChange_parameters);
- System.out.println("collectionChange.result=" + _collectionChange__return);
-
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -347,30 +259,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters);
System.out.println("calculateKfz.result=" + _calculateKfz__return);
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking getPoliciesOfPartner...");
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.GetPoliciesOfPartnerRequestType _getPoliciesOfPartner_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.GetPoliciesOfPartnerResponseType _getPoliciesOfPartner__return = port.getPoliciesOfPartner(_getPoliciesOfPartner_parameters);
- System.out.println("getPoliciesOfPartner.result=" + _getPoliciesOfPartner__return);
-
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking changeCommunicationObject...");
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangeCommunicationObjectRequestType _changeCommunicationObject_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangeCommunicationObjectResponse _changeCommunicationObject__return = port.changeCommunicationObject(_changeCommunicationObject_parameters);
- System.out.println("changeCommunicationObject.result=" + _changeCommunicationObject__return);
-
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -383,18 +271,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_parameters);
System.out.println("createOfferSachPrivat.result=" + _createOfferSachPrivat__return);
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking deleteCommunicationObject...");
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.DeleteCommunicationObjectRequestType _deleteCommunicationObject_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.DeleteCommunicationObjectResponseType _deleteCommunicationObject__return = port.deleteCommunicationObject(_deleteCommunicationObject_parameters);
- System.out.println("deleteCommunicationObject.result=" + _deleteCommunicationObject__return);
-
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -407,18 +283,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.CheckClaimResponseType _checkClaim__return = port.checkClaim(_checkClaim_parameters);
System.out.println("checkClaim.result=" + _checkClaim__return);
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking getPartner...");
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.GetPartnerRequestType _getPartner_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.GetPartnerResponseType _getPartner__return = port.getPartner(_getPartner_parameters);
- System.out.println("getPartner.result=" + _getPartner__return);
-
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -455,30 +319,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.GetClaimResponseType _getClaim__return = port.getClaim(_getClaim_parameters);
System.out.println("getClaim.result=" + _getClaim__return);
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking setMailingAddress...");
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.SetMailingAddressRequestType _setMailingAddress_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on3vertrag.SetMailingAddressResponseType _setMailingAddress__return = port.setMailingAddress(_setMailingAddress_parameters);
- System.out.println("setMailingAddress.result=" + _setMailingAddress__return);
-
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking submitApplicationRechtsschutz...");
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType _submitApplicationRechtsschutz_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType _submitApplicationRechtsschutz__return = port.submitApplicationRechtsschutz(_submitApplicationRechtsschutz_parameters);
- System.out.println("submitApplicationRechtsschutz.result=" + _submitApplicationRechtsschutz__return);
-
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -491,18 +331,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_5_0.servicetypes.DeepLinkBusinessObjectResponse _login__return = port.login(_login_parameters);
System.out.println("login.result=" + _login__return);
- } catch (ServiceFaultMsg e) {
- System.out.println("Expected exception: ServiceFaultMsg has occurred.");
- System.out.println(e.toString());
- }
- }
- {
- System.out.println("Invoking changePartnerMainAddress...");
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePartnerMainAddressRequestType _changePartnerMainAddress_parameters = null;
- try {
- at.vvo.omds.types.omds3Types.r1_5_0.on4partner.ChangePartnerMainAddressResponseType _changePartnerMainAddress__return = port.changePartnerMainAddress(_changePartnerMainAddress_parameters);
- System.out.println("changePartnerMainAddress.result=" + _changePartnerMainAddress__return);
-
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/ServiceFaultMsg.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/ServiceFaultMsg.java
index ad7b8f17..696c0eae 100644
--- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/ServiceFaultMsg.java
+++ b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_5_0/service/ServiceFaultMsg.java
@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
/**
* This class was generated by Apache CXF 3.2.0
- * 2020-02-28T15:55:32.219+01:00
+ * 2020-07-08T09:37:29.068+02:00
* Generated source version: 3.2.0
*/
diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_RS_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_RS_binding.xml
similarity index 100%
rename from OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON2_Antrag_RS_binding.xml
rename to OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON2_Antrag_RS_binding.xml
diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON3_Vertrag_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON3_Vertrag_binding.xml
similarity index 100%
rename from OMDSServiceDefinition/src/main/resources/bind/r1_5_0/omds3_ON3_Vertrag_binding.xml
rename to OMDSServiceDefinition/src/main/resources/bind/r1_6_0/omds3_ON3_Vertrag_binding.xml
diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/ReadMe.txt b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/ReadMe.txt
index 16a64e59..07bdd971 100644
--- a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/ReadMe.txt
+++ b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/ReadMe.txt
@@ -4,6 +4,6 @@ OMDS 3 Version 1.0.0 - erste Veroeffentlichung der 'Quick-Wins'
OMDS 3 Version 1.1.0 - Veroeffentlichung Schaden, Services die von Maklern betrieben werden, Bugfixes zu 1.0.0
OMDS 3 Version 1.1.1 - Bugfixes zu 1.1.0: Bei einigen Elementen war der z.B. Typ nicht definiert
OMDS 3 Version 1.2.0 - Autorisierung neu Beschrieben, keine Änderungen in den Services selbst
-OMDS 3 Version 1.3.0 - Berechnung-Offert-Antrag Kfz neu, Schaden überarbeitet
+OMDS 3 Version 1.3.0 - Berechnung-Offert-Antrag Kfz neu
OMDS 3 Version 1.4.0 - Berechnung-Offert-Antrag Kfz überarbeitet, Verwendung OMDS 2.11
-OMDS 3 Version 1.5.0 - in Vorbereitung: Berechnung-Offert-Antrag Sach-privat, Schaden überarbeitet, Verwendung OMDS 2.11
\ No newline at end of file
+OMDS 3 Version 1.5.0 - Berechnung-Offert-Antrag Sach-privat, Schaden überarbeitet, Verwendung OMDS 2.11
\ No newline at end of file
diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd
index b4dd9936..c122c304 100644
--- a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd
+++ b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd
@@ -340,6 +340,11 @@
Eine oder mehrere Meldungen zur Anfrage
+
+
+ optional Querverweise oder Deeplinks
+
+
@@ -435,6 +440,23 @@
+
+
+ Ein Link auf ein Element
+
+
+
+
+ Der Link als Solches
+
+
+
+
+ Ein vorgeschlagener Darstellungstext für den Link
+
+
+
+
Der Typ eines Response-Status
@@ -667,41 +689,32 @@
Produktmodell
-
-
- Abstrakter gemeinsamer Basistyp von Produktbausteinen und Gruppen
-
-
Abstrakter Typ für alle Gemeinsamkeiten von Produktbausteinen
-
-
-
-
-
- Schluessel der Tarifkomponente
-
-
-
-
- Eine menschenverständliche Bezeichnung. Ist kein Eingabewert,wird von der VU gesetzt
-
-
-
-
- Verweise auf Bedingungswerke
-
-
-
-
- Meldungen zu Elementen in diesem Produktbaustein
-
-
-
-
-
+
+
+
+ Schluessel der Tarifkomponente
+
+
+
+
+ Eine menschenverständliche Bezeichnung. Ist kein Eingabewert,wird von der VU gesetzt
+
+
+
+
+ Verweise auf Bedingungswerke
+
+
+
+
+ Meldungen zu Elementen in diesem Produktbaustein
+
+
+
@@ -807,19 +820,6 @@
-
-
- Basistyp für ein Zusatzprodukt (wird nirgends verwendet)
-
-
-
-
-
-
-
-
-
-
Basistyp für ein Produktbündel, 2. Generation
@@ -914,60 +914,6 @@
-
-
- Basistyp für ein Zusatzprodukt, 2. Generation
-
-
-
-
-
-
- Ob dieser Produktbaustein eingeschlossen ist oder nicht
-
-
-
-
- Ob der im Response vorgebene Einschluss änderbar ist. Optional
-
-
-
-
- Optional Metadaten zu Attributen
-
-
-
-
- Eine weitereführende Beschreibung des Bausteins für eine Anzeige.
-
-
-
-
-
-
-
-
-
- Gruppe von Bausteinen, aus der eine Auswahl möglich ist
-
-
-
-
-
-
-
- Minimum Anzahl Bausteine, die gewählt werden müssen, darf auch 0 sein.
-
-
-
-
- Maximum Anzahl Bausteine, die gewählt werden können. Die Angabe darf fehlen, wenn kein Maximum festgelegt ist.
-
-
-
-
-
-
Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind
@@ -1170,11 +1116,6 @@
VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt
-
-
- VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt
-
-
Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle
@@ -1253,6 +1194,27 @@
Abstrakter Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell
+
+
+
+ Bezugsrecht Erleben oder Ableben
+
+
+
+
+
+ Bezugsrecht Erleben
+
+
+
+
+ Bezugsrecht Ableben
+
+
+
+
+
+
@@ -1262,6 +1224,14 @@
+
+
+ Bezugsberechtigung testamentarische Erben
+
+
+
+
+
Bezugsberechtigung Überbringer
@@ -1277,11 +1247,12 @@
-
+
- Liste der bezugsberechtigten Personen
+ Referenz auf die Person
+
wahr, wenn das Bezugsrecht unwiderruflich ist.
@@ -1291,14 +1262,21 @@
-
+
- Namentliches Bezugsrecht fuer eine Person
+ Bezugsberechtigung Versicherungsnehmer
-
-
-
-
+
+
+
+
+
+
+ Bezugsberechtigung VersichertePerson
+
+
+
+
@@ -1583,59 +1561,6 @@
-
-
- Typ Variante
-
-
-
-
-
-
-
-
-
- Type Deckung
-
-
-
-
- Wenn die Versicherungssumme eine Auswahlliste ist, wird der übergebene Wert in der Liste gesucht - falls nicht vorhanden bleibt der Standardwert selektiert.
-
-
-
-
-
-
- Type Deckung
-
-
-
-
-
- Wenn die Versicherungssumme eine Auswahlliste ist, wird der übergebene Wert in der Liste gesucht - falls nicht vorhanden bleibt der Standardwert selektiert.
-
-
-
-
- Definiert zu welchem versicherten Risiko die Deckung gehört
-
-
-
-
-
-
- Type Deckung Prozent
-
-
-
-
-
- Wenn der Prozentwert eine Auswahlliste ist, wird der übergebene Wert in der Liste gesucht - falls nicht vorhanden bleibt der Standardwert selektiert.
-
-
-
-
Typ mit Informationen zu einem Dokument (kann auch das Dokument selbst enthalten)
@@ -1836,7 +1761,11 @@
-
+
+
+ Referenz auf die Personendaten
+
+
@@ -1861,12 +1790,14 @@
-
-
+
+
+
+
@@ -2003,45 +1934,45 @@
-
-
- Versicherter Betrieb (Landwirtschaftlicher Betrieb, Verein)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Abstrakter Typ fuer zusaetzliche Betriebsdaten zur Erweiterung des VersicherterBetrieb_Type
-
-
-
-
- Versicherte Liegenschaft
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert
@@ -2049,7 +1980,7 @@
-
+
@@ -2064,7 +1995,7 @@
Absoluter Betrag eines Selbstbehalts
-
+
Selbstbehalt in Prozent der Versicherungssumme
@@ -2241,34 +2172,6 @@
-
-
- Abstrakter Basistyp für Metadaten von Attributen
-
-
-
-
- Ob das Attribut änderbar ist
-
-
-
-
- Ob das Attribut als Pflichtfeld zu behandeln ist
-
-
-
-
- Ein menschenverständlicher Text für das Attribut, der z.B. in einer Oberfläche verwendet werden kann.
-
-
-
-
- Eine weiterführende Beschreibung des Attributs.
-
-
-
-
-
Message an einem Attribut
@@ -2325,8 +2228,8 @@
Optional Inhalte einer Werteliste
-
-
+
+
@@ -2415,18 +2318,57 @@
+
+
+ Abstrakter Basistyp für Attribute die Metadaten enthalten können (feiner Unterschied zu AttributMetadaten_Type)
+
+
+
+
+ Ob das Attribut änderbar ist
+
+
+
+
+ Ein menschenverständlicher Text für das Attribut, der z.B. in einer Oberfläche verwendet werden kann.
+
+
+
+
+ Eine weiterführende Beschreibung des Attributs.
+
+
+
+
+
+
+
+ Abstrakter Basistyp für Attribute mit einem Wert
+
+
+
+
+
+
+ Ob das Attribut als Pflichtfeld zu behandeln ist
+
+
+
+
+
+
Auf xsd:string basierendes Attribut mit Metadaten
-
+
-
-
+
+
Optional Inhalte einer Werteliste
@@ -2441,7 +2383,7 @@
Auf xsd:int basierendes Attribut mit Metadaten
-
+
@@ -2461,9 +2403,9 @@
Auf omds:decimal basierendes Attribut mit Metadaten
-
+
-
+
@@ -2481,9 +2423,9 @@
Auf xsd:double basierendes Attribut mit Metadaten
-
+
-
+
@@ -2501,9 +2443,9 @@
Auf xsd:date basierendes Attribut mit Metadaten
-
+
-
+
@@ -2516,30 +2458,43 @@
+
+
+ Abstrakte Ebene fuer Listen mit einem oder mehreren wählbaren Werten
+
+
+
+
+
+
+ Optional die Vorgabe einer Werteliste, aus der die ausgewählten Schlüssel stammen müssen
+
+
+
+
+ Mindestanzahl zu selektierender Werte, z.B. 0 für optional oder 1 für obligatorisch oder auch mehrere, wenn Multiselect.
+
+
+
+
+
+
Attribut mit Metadaten für Schlüssellisten
-
+
-
-
-
+
- Optional Inhalte einer Werteliste
+ Der ausgewählte Schlüssel
-
+
- Mindestanzahl zu selektierender Werte
+ Optional ein Vorschlag für enen ausgewählten Schlüsse.
-
-
-
-
-
-
@@ -2550,11 +2505,11 @@
Attribut mit Metadaten für Schlüssellisten, bei dem mehrere Einträge auswählbar sind.
-
+
- Die Schlüssel der ausgewählten Werte
+ Die ausgewählten Schlüssel
@@ -2562,19 +2517,9 @@
Optional eine Vorgabe von Schlüsseln als Default-Werte
-
+
- Die Vorgabe einer Werteliste, aus der die ausgewählten Schlüssel stammen müssen
-
-
-
-
- Mindestanzahl zu selektierender Werte
-
-
-
-
- Maximalanzahl zu selektierender Werte
+ Maximalanzahl zu selektierender Werte, muss größer gleich der Mindestanzahl sein.
@@ -2589,9 +2534,9 @@
-
+
- Typ fuer Sicherstellungen in der Personenversicherung
+ Abstrakter Typ fuer Sicherstellungen
@@ -2672,8 +2617,26 @@
Zustimmung Gesundheitsdaten
-
-
+
+
+ Referenz auf die Person
+
+
+
+
+ Ein vom Versicherungsunternehmen festlegbarer Typ für die Art der Zustimmung
+
+
+
+
+ Optional der tatsächliche Text der Zustimmung
+
+
+
+
+ Die Bestätigung der Zustimmung
+
+
@@ -2682,7 +2645,7 @@
-
+
@@ -2693,6 +2656,7 @@
+
@@ -2701,6 +2665,17 @@
+
+
+
+ Konzession nach BWG, VAG, WAG, PKG, BMSVG, ZaDiG oder vergleichbare Konzession nach ausländischem Recht
+
+
+
+
+ Überwiegend eine aktive Geschäftstätigkeit in Produktion oder Handel
+
+
@@ -2712,7 +2687,7 @@
-
+
diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3Services.wsdl b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3Services.wsdl
index fd99f527..79a6a10b 100644
--- a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3Services.wsdl
+++ b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3Services.wsdl
@@ -1,5 +1,5 @@
-
+
-
-
-
-
@@ -210,33 +199,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -244,66 +206,7 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -458,27 +361,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -486,56 +368,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -888,58 +720,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -953,127 +733,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Common.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Common.xsd
index 15aee0ac..febf622e 100644
--- a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Common.xsd
+++ b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Common.xsd
@@ -8,6 +8,13 @@
Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist
+
+
+
+ Liste aller benötigten Personen, welche dann über ihre Rolle direkt referenziert werden. Im Offert ist dies insb. der Versicherungsnehmer.
+
+
+
@@ -117,11 +124,13 @@
-
+
+
- Vinkulierungsdaten
+ Daten zu etwaigen Sicherstellungen
+
@@ -131,15 +140,16 @@
Abstrakter Basistyp für Antrag in der Personenversicherung, der bei Request und bei Response gleich ist
-
+
-
+
+
+
- Vinkulierungsdaten
+ Optional Angaben PEP wenn zutreffend
-
-
+
diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Kfz.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Kfz.xsd
index 23b29ca3..c5763468 100644
--- a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Kfz.xsd
+++ b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Kfz.xsd
@@ -235,7 +235,7 @@
Typ der das Produkt beschreibt und in Antragsanfrage und Antragsantwort verwendet wird
-
+
@@ -243,6 +243,11 @@
BonusMalus beim Verband
+
+
+ Vinkulierungsdaten
+
+
@@ -426,27 +431,6 @@
Refernziert auf ein versichertes Fahrzeug über die laufende Nummer innerhalb eines Elementarprodukts.
-
-
- Vorversicherungen für Kfz (alternativ Typ: cst:VorversicherungenImpl_Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Type System Insassenunfallversicherung
diff --git a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_SachPrivat.xsd b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_SachPrivat.xsd
index 4ce1a28e..39933059 100644
--- a/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_SachPrivat.xsd
+++ b/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_SachPrivat.xsd
@@ -224,8 +224,12 @@
-
+
+
+ Möglichkeit eine Sichterstellung aus dem Antragsobjekt zu referenzieren.
+
+
@@ -246,7 +250,6 @@
Jens Buehring entfernt 2.6.2020 weil die Untertypen spezifischere Listen haben (fuer Gebaeude und Haushalt) und wenn man selbst ein
Unterobjekt definiert, sollte man seine eigene spezifische Loesung verwenden.
-->
-