Leben und Unfall aus allg. Development-Branch entfernt, da es dafür jetzt Feature-Branch gibt.

BOA-Allgmein-Dokumentation überarbeitete Version,
CommonServiceTypes schon die neue Version wie in Leben-Unfall-Feature Branch
This commit is contained in:
2020-02-28 16:10:23 +01:00
parent c380526516
commit d8281c239d
120 changed files with 5672 additions and 4904 deletions

View File

@@ -3,9 +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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SchadenStatusType;
/**
@@ -28,9 +26,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on7schaden.SchadenStatusType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AbstraktesEreignisStatusAenderung_Type")
@XmlSeeAlso({
SchadenStatusType.class
})
public abstract class AbstraktesEreignisStatusAenderungType {

View File

@@ -0,0 +1,66 @@
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;
/**
* Sicherstellung vom Typ Abtretung / Zession
*
* <p>Java-Klasse für Abtretung_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Abtretung_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Zessionar" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Abtretung_Type", propOrder = {
"zessionar"
})
public class AbtretungType
extends SicherstellungType
{
@XmlElement(name = "Zessionar", required = true)
protected GlaeubigerSicherstellungType zessionar;
/**
* Ruft den Wert der zessionar-Eigenschaft ab.
*
* @return
* possible object is
* {@link GlaeubigerSicherstellungType }
*
*/
public GlaeubigerSicherstellungType getZessionar() {
return zessionar;
}
/**
* Legt den Wert der zessionar-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link GlaeubigerSicherstellungType }
*
*/
public void setZessionar(GlaeubigerSicherstellungType value) {
this.zessionar = value;
}
}

View File

@@ -0,0 +1,192 @@
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;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Auf xsd:date basierendes Attribut mit Metadaten
*
* <p>Java-Klasse für AttributDatum_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributDatum_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Value" type="{http://www.w3.org/2001/XMLSchema}date"/&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/&gt;
* &lt;element name="Values" type="{http://www.w3.org/2001/XMLSchema}date" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Min" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/&gt;
* &lt;element name="Max" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributDatum_Type", propOrder = {
"value",
"_default",
"values",
"min",
"max"
})
public class AttributDatumType
extends AttributType
{
@XmlElement(name = "Value", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar value;
@XmlElement(name = "Default")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar _default;
@XmlElement(name = "Values")
@XmlSchemaType(name = "date")
protected List<XMLGregorianCalendar> values;
@XmlElement(name = "Min")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar min;
@XmlElement(name = "Max")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar max;
/**
* Ruft den Wert der value-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getValue() {
return value;
}
/**
* Legt den Wert der value-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setValue(XMLGregorianCalendar value) {
this.value = value;
}
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDefault(XMLGregorianCalendar value) {
this._default = value;
}
/**
* Gets the value of the values property.
*
* <p>
* 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 <CODE>set</CODE> method for the values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link XMLGregorianCalendar }
*
*
*/
public List<XMLGregorianCalendar> getValues() {
if (values == null) {
values = new ArrayList<XMLGregorianCalendar>();
}
return this.values;
}
/**
* Ruft den Wert der min-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMin() {
return min;
}
/**
* Legt den Wert der min-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMin(XMLGregorianCalendar value) {
this.min = value;
}
/**
* Ruft den Wert der max-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMax() {
return max;
}
/**
* Legt den Wert der max-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMax(XMLGregorianCalendar value) {
this.max = value;
}
}

View File

@@ -0,0 +1,186 @@
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;
/**
* Auf omds:decimal basierendes Attribut mit Metadaten
*
* <p>Java-Klasse für AttributDezimal_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributDezimal_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Value" type="{urn:omds20}decimal"/&gt;
* &lt;element name="Default" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;element name="Values" type="{urn:omds20}decimal" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Min" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;element name="Max" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributDezimal_Type", propOrder = {
"value",
"_default",
"values",
"min",
"max"
})
public class AttributDezimalType
extends AttributType
{
@XmlElement(name = "Value", required = true)
protected BigDecimal value;
@XmlElement(name = "Default")
protected BigDecimal _default;
@XmlElement(name = "Values")
protected List<BigDecimal> values;
@XmlElement(name = "Min")
protected BigDecimal min;
@XmlElement(name = "Max")
protected BigDecimal max;
/**
* Ruft den Wert der value-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getValue() {
return value;
}
/**
* Legt den Wert der value-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setValue(BigDecimal value) {
this.value = value;
}
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setDefault(BigDecimal value) {
this._default = value;
}
/**
* Gets the value of the values property.
*
* <p>
* 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 <CODE>set</CODE> method for the values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link BigDecimal }
*
*
*/
public List<BigDecimal> getValues() {
if (values == null) {
values = new ArrayList<BigDecimal>();
}
return this.values;
}
/**
* Ruft den Wert der min-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMin() {
return min;
}
/**
* Legt den Wert der min-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMin(BigDecimal value) {
this.min = value;
}
/**
* Ruft den Wert der max-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMax() {
return max;
}
/**
* Legt den Wert der max-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMax(BigDecimal value) {
this.max = value;
}
}

View File

@@ -0,0 +1,177 @@
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;
/**
* Auf xsd:double basierendes Attribut mit Metadaten
*
* <p>Java-Klasse für AttributDouble_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributDouble_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Value" type="{http://www.w3.org/2001/XMLSchema}double"/&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/&gt;
* &lt;element name="Values" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Min" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/&gt;
* &lt;element name="Max" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributDouble_Type", propOrder = {
"value",
"_default",
"values",
"min",
"max"
})
public class AttributDoubleType
extends AttributType
{
@XmlElement(name = "Value")
protected double value;
@XmlElement(name = "Default")
protected Double _default;
@XmlElement(name = "Values", type = Double.class)
protected List<Double> values;
@XmlElement(name = "Min")
protected Double min;
@XmlElement(name = "Max")
protected Double max;
/**
* Ruft den Wert der value-Eigenschaft ab.
*
*/
public double getValue() {
return value;
}
/**
* Legt den Wert der value-Eigenschaft fest.
*
*/
public void setValue(double value) {
this.value = value;
}
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setDefault(Double value) {
this._default = value;
}
/**
* Gets the value of the values property.
*
* <p>
* 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 <CODE>set</CODE> method for the values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Double }
*
*
*/
public List<Double> getValues() {
if (values == null) {
values = new ArrayList<Double>();
}
return this.values;
}
/**
* Ruft den Wert der min-Eigenschaft ab.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getMin() {
return min;
}
/**
* Legt den Wert der min-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setMin(Double value) {
this.min = value;
}
/**
* Ruft den Wert der max-Eigenschaft ab.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getMax() {
return max;
}
/**
* Legt den Wert der max-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setMax(Double value) {
this.max = value;
}
}

View File

@@ -0,0 +1,156 @@
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;
/**
* Attribut mit Metadaten für Schlüssellisten
*
* <p>Java-Klasse für AttributEnum_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributEnum_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="MinAnz"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt"&gt;
* &lt;enumeration value="0"/&gt;
* &lt;enumeration value="1"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributEnum_Type", propOrder = {
"value",
"_default",
"values",
"minAnz"
})
public class AttributEnumType
extends AttributType
{
@XmlElement(name = "Value")
protected String value;
@XmlElement(name = "Default")
protected String _default;
@XmlElement(name = "Values")
protected List<EintragSchluessellisteType> values;
@XmlElement(name = "MinAnz")
protected long minAnz;
/**
* Ruft den Wert der value-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Legt den Wert der value-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDefault(String value) {
this._default = value;
}
/**
* Gets the value of the values property.
*
* <p>
* 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 <CODE>set</CODE> method for the values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link EintragSchluessellisteType }
*
*
*/
public List<EintragSchluessellisteType> getValues() {
if (values == null) {
values = new ArrayList<EintragSchluessellisteType>();
}
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;
}
}

View File

@@ -0,0 +1,185 @@
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;
/**
* Auf xsd:int basierendes Attribut mit Metadaten
*
* <p>Java-Klasse für AttributInt_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributInt_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Value" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Values" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Min" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributInt_Type", propOrder = {
"value",
"_default",
"values",
"min",
"max"
})
public class AttributIntType
extends AttributType
{
@XmlElement(name = "Value")
protected Integer value;
@XmlElement(name = "Default")
protected Integer _default;
@XmlElement(name = "Values", type = Integer.class)
protected List<Integer> values;
@XmlElement(name = "Min")
protected Integer min;
@XmlElement(name = "Max")
protected Integer max;
/**
* Ruft den Wert der value-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getValue() {
return value;
}
/**
* Legt den Wert der value-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setValue(Integer value) {
this.value = value;
}
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDefault(Integer value) {
this._default = value;
}
/**
* Gets the value of the values property.
*
* <p>
* 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 <CODE>set</CODE> method for the values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Integer }
*
*
*/
public List<Integer> getValues() {
if (values == null) {
values = new ArrayList<Integer>();
}
return this.values;
}
/**
* Ruft den Wert der min-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMin() {
return min;
}
/**
* Legt den Wert der min-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMin(Integer 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;
}
}

View File

@@ -6,9 +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 javax.xml.datatype.XMLGregorianCalendar;
/**
@@ -23,7 +21,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -43,8 +41,7 @@ public class AttributMetadatenEnumType
{
@XmlElement(name = "Default")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar _default;
protected String _default;
@XmlElement(name = "Values")
protected List<EintragSchluessellisteType> values;
@@ -53,10 +50,10 @@ public class AttributMetadatenEnumType
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
* {@link String }
*
*/
public XMLGregorianCalendar getDefault() {
public String getDefault() {
return _default;
}
@@ -65,10 +62,10 @@ public class AttributMetadatenEnumType
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
* {@link String }
*
*/
public void setDefault(XMLGregorianCalendar value) {
public void setDefault(String value) {
this._default = value;
}

View File

@@ -0,0 +1,129 @@
package at.vvo.omds.types.omds3Types.r1_5_0.common;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Message an einem Attribut
*
* <p>Java-Klasse für AttributMsg_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributMsg_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="ErrorType"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}integer"&gt;
* &lt;pattern value="1"/&gt;
* &lt;pattern value="2"/&gt;
* &lt;pattern value="3"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/&gt;
* &lt;element name="ErrorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributMsg_Type", propOrder = {
"errorType",
"errorCode",
"errorMsg"
})
public class AttributMsgType {
@XmlElement(name = "ErrorType", required = true)
protected BigInteger errorType;
@XmlElement(name = "ErrorCode")
protected BigInteger errorCode;
@XmlElement(name = "ErrorMsg", required = true)
protected String errorMsg;
/**
* Ruft den Wert der errorType-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getErrorType() {
return errorType;
}
/**
* Legt den Wert der errorType-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setErrorType(BigInteger value) {
this.errorType = value;
}
/**
* Ruft den Wert der errorCode-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getErrorCode() {
return errorCode;
}
/**
* Legt den Wert der errorCode-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setErrorCode(BigInteger value) {
this.errorCode = value;
}
/**
* Ruft den Wert der errorMsg-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getErrorMsg() {
return errorMsg;
}
/**
* Legt den Wert der errorMsg-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setErrorMsg(String value) {
this.errorMsg = value;
}
}

View File

@@ -0,0 +1,189 @@
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;
/**
* Attribut mit Metadaten für Schlüssellisten, bei dem mehrere Einträge auswählbar sind.
*
* <p>Java-Klasse für AttributMultiEnum_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributMultiEnum_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="MinAnz" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="MaxAnz" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributMultiEnum_Type", propOrder = {
"value",
"_default",
"values",
"minAnz",
"maxAnz"
})
public class AttributMultiEnumType
extends AttributType
{
@XmlElement(name = "Value")
protected List<String> value;
@XmlElement(name = "Default")
protected List<String> _default;
@XmlElement(name = "Values")
protected List<EintragSchluessellisteType> values;
@XmlElement(name = "MinAnz")
@XmlSchemaType(name = "unsignedInt")
protected long minAnz;
@XmlElement(name = "MaxAnz", required = true)
protected Object maxAnz;
/**
* Gets the value of the value property.
*
* <p>
* 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 <CODE>set</CODE> method for the value property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValue().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getValue() {
if (value == null) {
value = new ArrayList<String>();
}
return this.value;
}
/**
* Gets the value of the default property.
*
* <p>
* 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 <CODE>set</CODE> method for the default property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getDefault().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getDefault() {
if (_default == null) {
_default = new ArrayList<String>();
}
return this._default;
}
/**
* Gets the value of the values property.
*
* <p>
* 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 <CODE>set</CODE> method for the values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link EintragSchluessellisteType }
*
*
*/
public List<EintragSchluessellisteType> getValues() {
if (values == null) {
values = new ArrayList<EintragSchluessellisteType>();
}
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.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getMaxAnz() {
return maxAnz;
}
/**
* Legt den Wert der maxAnz-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setMaxAnz(Object value) {
this.maxAnz = value;
}
}

View File

@@ -0,0 +1,216 @@
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;
/**
* Auf xsd:string basierendes Attribut mit Metadaten
*
* <p>Java-Klasse für AttributString_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributString_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Regex" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="Values" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributString_Type", propOrder = {
"value",
"_default",
"regex",
"maxLaenge",
"minLaenge",
"values"
})
public class AttributStringType
extends AttributType
{
@XmlElement(name = "Value")
protected String value;
@XmlElement(name = "Default")
protected String _default;
@XmlElement(name = "Regex")
protected String regex;
@XmlElement(name = "MaxLaenge")
@XmlSchemaType(name = "unsignedInt")
protected Long maxLaenge;
@XmlElement(name = "MinLaenge")
@XmlSchemaType(name = "unsignedInt")
protected Long minLaenge;
@XmlElement(name = "Values")
protected List<String> values;
/**
* Ruft den Wert der value-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Legt den Wert der value-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDefault(String value) {
this._default = value;
}
/**
* Ruft den Wert der regex-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegex() {
return regex;
}
/**
* Legt den Wert der regex-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRegex(String value) {
this.regex = value;
}
/**
* Ruft den Wert der maxLaenge-Eigenschaft ab.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getMaxLaenge() {
return maxLaenge;
}
/**
* Legt den Wert der maxLaenge-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setMaxLaenge(Long value) {
this.maxLaenge = value;
}
/**
* Ruft den Wert der minLaenge-Eigenschaft ab.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getMinLaenge() {
return minLaenge;
}
/**
* Legt den Wert der minLaenge-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setMinLaenge(Long value) {
this.minLaenge = value;
}
/**
* Gets the value of the values property.
*
* <p>
* 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 <CODE>set</CODE> method for the values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getValues() {
if (values == null) {
values = new ArrayList<String>();
}
return this.values;
}
}

View File

@@ -0,0 +1,171 @@
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 Metadaten von Attributen
*
* <p>Java-Klasse für Attribut_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Attribut_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Aenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;element name="Pflichtfeld" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Msg" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMsg_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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,
RaucherType.class
})
public abstract class AttributType {
@XmlElement(name = "Aenderbar")
protected boolean aenderbar;
@XmlElement(name = "Pflichtfeld")
protected boolean pflichtfeld;
@XmlElement(name = "Bezeichnung")
protected String bezeichnung;
@XmlElement(name = "BeschreibungTxt")
protected String beschreibungTxt;
@XmlElement(name = "Msg")
protected AttributMsgType msg;
/**
* Ruft den Wert der aenderbar-Eigenschaft ab.
*
*/
public boolean isAenderbar() {
return aenderbar;
}
/**
* Legt den Wert der aenderbar-Eigenschaft fest.
*
*/
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.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBezeichnung() {
return bezeichnung;
}
/**
* Legt den Wert der bezeichnung-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBezeichnung(String value) {
this.bezeichnung = value;
}
/**
* 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 msg-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributMsgType }
*
*/
public AttributMsgType getMsg() {
return msg;
}
/**
* Legt den Wert der msg-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributMsgType }
*
*/
public void setMsg(AttributMsgType value) {
this.msg = value;
}
}

View File

@@ -20,14 +20,14 @@ import javax.xml.bind.annotation.XmlType;
* <pre>
* &lt;complexType name="BasisProduktbaustein_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Modellelement_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
@@ -44,7 +44,9 @@ import javax.xml.bind.annotation.XmlType;
@XmlSeeAlso({
ProduktbausteinType.class
})
public abstract class BasisProduktbausteinType {
public abstract class BasisProduktbausteinType
extends ModellelementType
{
@XmlElement(name = "Id")
protected String id;

View File

@@ -9,10 +9,8 @@ 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.leben.ElementarproduktLebenType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.ElementarproduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.LeistungsartUnfallType;
/**
@@ -50,9 +48,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.LeistungsartUnfallTy
})
@XmlSeeAlso({
ElementarproduktRechtsschutzType.class,
ElementarproduktSachPrivatType.class,
LeistungsartUnfallType.class,
ElementarproduktLebenType.class
ElementarproduktSachPrivatType.class
})
public abstract class ElementarproduktGenerischType
extends ElementarproduktType

View File

@@ -15,7 +15,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VerkehrsrechtsschutzKfz
/**
* Basistyp für ein Elementarprodukt
* Basistyp für ein Elementarprodukt (1. Generation, wird nur in Kfz verwendet)
*
* <p>Java-Klasse für Elementarprodukt_Type complex type.
*
@@ -42,9 +42,9 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VerkehrsrechtsschutzKfz
"zusaetzlicheElementarproduktdaten"
})
@XmlSeeAlso({
ElementarproduktGenerischType.class,
ElementarproduktKfzType.class,
VerkehrsrechtsschutzKfzType.class,
ElementarproduktGenerischType.class
VerkehrsrechtsschutzKfzType.class
})
public abstract class ElementarproduktType
extends ProduktbausteinType

View File

@@ -0,0 +1,104 @@
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;
/**
* Fragen FATCA bei natürlichen Personen
*
* <p>Java-Klasse für FATCA_NatPersonType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="FATCA_NatPersonType"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Geburtsland" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/&gt;
* &lt;element name="US_Indizien" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;element name="US_Steuerpflicht" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FATCA_NatPersonType", propOrder = {
"geburtsland",
"usIndizien",
"usSteuerpflicht"
})
public class FATCANatPersonType {
@XmlElement(name = "Geburtsland", required = true)
protected AttributEnumType geburtsland;
@XmlElement(name = "US_Indizien")
protected boolean usIndizien;
@XmlElement(name = "US_Steuerpflicht")
protected boolean usSteuerpflicht;
/**
* Ruft den Wert der geburtsland-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getGeburtsland() {
return geburtsland;
}
/**
* Legt den Wert der geburtsland-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setGeburtsland(AttributEnumType value) {
this.geburtsland = value;
}
/**
* Ruft den Wert der usIndizien-Eigenschaft ab.
*
*/
public boolean isUSIndizien() {
return usIndizien;
}
/**
* Legt den Wert der usIndizien-Eigenschaft fest.
*
*/
public void setUSIndizien(boolean value) {
this.usIndizien = value;
}
/**
* Ruft den Wert der usSteuerpflicht-Eigenschaft ab.
*
*/
public boolean isUSSteuerpflicht() {
return usSteuerpflicht;
}
/**
* Legt den Wert der usSteuerpflicht-Eigenschaft fest.
*
*/
public void setUSSteuerpflicht(boolean value) {
this.usSteuerpflicht = value;
}
}

View File

@@ -0,0 +1,64 @@
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;
/**
* Fragen FATCA bei sonstigen Personen
*
* <p>Java-Klasse für FATCA_SonstPersonType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="FATCA_SonstPersonType"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="LandFirmensitz" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FATCA_SonstPersonType", propOrder = {
"landFirmensitz"
})
public class FATCASonstPersonType {
@XmlElement(name = "LandFirmensitz", required = true)
protected AttributEnumType landFirmensitz;
/**
* Ruft den Wert der landFirmensitz-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getLandFirmensitz() {
return landFirmensitz;
}
/**
* Legt den Wert der landFirmensitz-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setLandFirmensitz(AttributEnumType value) {
this.landFirmensitz = value;
}
}

View File

@@ -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;
/**
* Fragen gemäß FATCA
*
* <p>Java-Klasse für FATCA_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="FATCA_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;choice&gt;
* &lt;element name="FATCA_NatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_NatPersonType"/&gt;
* &lt;element name="FATCA_SonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
* &lt;/choice&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FATCA_Type", propOrder = {
"fatcaNatPerson",
"fatcaSonstPerson"
})
public class FATCAType {
@XmlElement(name = "FATCA_NatPerson")
protected FATCANatPersonType fatcaNatPerson;
@XmlElement(name = "FATCA_SonstPerson")
protected Object fatcaSonstPerson;
/**
* Ruft den Wert der fatcaNatPerson-Eigenschaft ab.
*
* @return
* possible object is
* {@link FATCANatPersonType }
*
*/
public FATCANatPersonType getFATCANatPerson() {
return fatcaNatPerson;
}
/**
* Legt den Wert der fatcaNatPerson-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link FATCANatPersonType }
*
*/
public void setFATCANatPerson(FATCANatPersonType value) {
this.fatcaNatPerson = value;
}
/**
* Ruft den Wert der fatcaSonstPerson-Eigenschaft ab.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getFATCASonstPerson() {
return fatcaSonstPerson;
}
/**
* Legt den Wert der fatcaSonstPerson-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setFATCASonstPerson(Object value) {
this.fatcaSonstPerson = value;
}
}

View File

@@ -0,0 +1,165 @@
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;
/**
* Fragen gemäß dem Gemeinsamen Meldestandard-Gesetz
*
* <p>Java-Klasse für GMSG_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="GMSG_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="SteuerlichAnsaessig" maxOccurs="unbounded"&gt;
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/&gt;
* &lt;element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* &lt;/element&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GMSG_Type", propOrder = {
"steuerlichAnsaessig"
})
public class GMSGType {
@XmlElement(name = "SteuerlichAnsaessig", required = true)
protected List<GMSGType.SteuerlichAnsaessig> steuerlichAnsaessig;
/**
* Gets the value of the steuerlichAnsaessig property.
*
* <p>
* 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 <CODE>set</CODE> method for the steuerlichAnsaessig property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getSteuerlichAnsaessig().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link GMSGType.SteuerlichAnsaessig }
*
*
*/
public List<GMSGType.SteuerlichAnsaessig> getSteuerlichAnsaessig() {
if (steuerlichAnsaessig == null) {
steuerlichAnsaessig = new ArrayList<GMSGType.SteuerlichAnsaessig>();
}
return this.steuerlichAnsaessig;
}
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/&gt;
* &lt;element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"land",
"steuernummer"
})
public static class SteuerlichAnsaessig {
@XmlElement(name = "Land", required = true)
protected AttributEnumType land;
@XmlElement(name = "Steuernummer", required = true)
protected AttributStringType steuernummer;
/**
* Ruft den Wert der land-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getLand() {
return land;
}
/**
* Legt den Wert der land-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setLand(AttributEnumType value) {
this.land = value;
}
/**
* Ruft den Wert der steuernummer-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributStringType }
*
*/
public AttributStringType getSteuernummer() {
return steuernummer;
}
/**
* Legt den Wert der steuernummer-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributStringType }
*
*/
public void setSteuernummer(AttributStringType value) {
this.steuernummer = value;
}
}
}

View File

@@ -0,0 +1,148 @@
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;
/**
* Gläubiger einer Sicherstellung
*
* <p>Java-Klasse für GlaeubigerSicherstellung_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="GlaeubigerSicherstellung_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Institut" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="PLZ" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Strasse" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Vertragsnummer" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GlaeubigerSicherstellung_Type", propOrder = {
"institut",
"plz",
"strasse",
"vertragsnummer"
})
public class GlaeubigerSicherstellungType {
@XmlElement(name = "Institut", required = true)
protected String institut;
@XmlElement(name = "PLZ", required = true)
protected String plz;
@XmlElement(name = "Strasse", required = true)
protected String strasse;
@XmlElement(name = "Vertragsnummer", required = true)
protected String vertragsnummer;
/**
* Ruft den Wert der institut-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstitut() {
return institut;
}
/**
* Legt den Wert der institut-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstitut(String value) {
this.institut = value;
}
/**
* Ruft den Wert der plz-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPLZ() {
return plz;
}
/**
* Legt den Wert der plz-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPLZ(String value) {
this.plz = value;
}
/**
* Ruft den Wert der strasse-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStrasse() {
return strasse;
}
/**
* Legt den Wert der strasse-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStrasse(String value) {
this.strasse = value;
}
/**
* Ruft den Wert der vertragsnummer-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVertragsnummer() {
return vertragsnummer;
}
/**
* Legt den Wert der vertragsnummer-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVertragsnummer(String value) {
this.vertragsnummer = value;
}
}

View File

@@ -0,0 +1,121 @@
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
*
* <p>Java-Klasse für Gruppe complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Gruppe"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Modellelement_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Elemente" type="{urn:omds3CommonServiceTypes-1-1-0}Modellelement_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Min" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="Max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Gruppe", propOrder = {
"elemente",
"min",
"max"
})
public class Gruppe
extends ModellelementType
{
@XmlElement(name = "Elemente", required = true)
protected List<ModellelementType> elemente;
@XmlElement(name = "Min")
protected int min;
@XmlElement(name = "Max")
protected Integer max;
/**
* Gets the value of the elemente property.
*
* <p>
* 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 <CODE>set</CODE> method for the elemente property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getElemente().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ModellelementType }
*
*
*/
public List<ModellelementType> getElemente() {
if (elemente == null) {
elemente = new ArrayList<ModellelementType>();
}
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;
}
}

View File

@@ -0,0 +1,37 @@
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
*
* <p>Java-Klasse für Modellelement_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Modellelement_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Modellelement_Type")
@XmlSeeAlso({
Gruppe.class,
BasisProduktbausteinType.class
})
public abstract class ModellelementType {
}

View File

@@ -37,6 +37,14 @@ public class ObjectFactory {
public ObjectFactory() {
}
/**
* Create an instance of {@link GMSGType }
*
*/
public GMSGType createGMSGType() {
return new GMSGType();
}
/**
* Create an instance of {@link ZahlwegType }
*
@@ -117,6 +125,22 @@ 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 }
*
@@ -357,6 +381,14 @@ public class ObjectFactory {
return new VersichertePersonType();
}
/**
* Create an instance of {@link RisikoNatPersonType }
*
*/
public RisikoNatPersonType createRisikoNatPersonType() {
return new RisikoNatPersonType();
}
/**
* Create an instance of {@link VersicherteVeranstaltungType }
*
@@ -453,6 +485,14 @@ public class ObjectFactory {
return new SchadenObjektSpezifikationType();
}
/**
* Create an instance of {@link AttributMsgType }
*
*/
public AttributMsgType createAttributMsgType() {
return new AttributMsgType();
}
/**
* Create an instance of {@link AttributMetadatenStringType }
*
@@ -501,6 +541,166 @@ public class ObjectFactory {
return new EintragSchluessellisteType();
}
/**
* Create an instance of {@link AttributStringType }
*
*/
public AttributStringType createAttributStringType() {
return new AttributStringType();
}
/**
* Create an instance of {@link AttributIntType }
*
*/
public AttributIntType createAttributIntType() {
return new AttributIntType();
}
/**
* Create an instance of {@link AttributDezimalType }
*
*/
public AttributDezimalType createAttributDezimalType() {
return new AttributDezimalType();
}
/**
* Create an instance of {@link AttributDoubleType }
*
*/
public AttributDoubleType createAttributDoubleType() {
return new AttributDoubleType();
}
/**
* Create an instance of {@link AttributDatumType }
*
*/
public AttributDatumType createAttributDatumType() {
return new AttributDatumType();
}
/**
* Create an instance of {@link AttributEnumType }
*
*/
public AttributEnumType createAttributEnumType() {
return new AttributEnumType();
}
/**
* Create an instance of {@link AttributMultiEnumType }
*
*/
public AttributMultiEnumType createAttributMultiEnumType() {
return new AttributMultiEnumType();
}
/**
* Create an instance of {@link SicherstellungType }
*
*/
public SicherstellungType createSicherstellungType() {
return new SicherstellungType();
}
/**
* Create an instance of {@link AbtretungType }
*
*/
public AbtretungType createAbtretungType() {
return new AbtretungType();
}
/**
* Create an instance of {@link VerpfaendungType }
*
*/
public VerpfaendungType createVerpfaendungType() {
return new VerpfaendungType();
}
/**
* Create an instance of {@link PfandglaeubigerType }
*
*/
public PfandglaeubigerType createPfandglaeubigerType() {
return new PfandglaeubigerType();
}
/**
* Create an instance of {@link VinkulierungPersonenType }
*
*/
public VinkulierungPersonenType createVinkulierungPersonenType() {
return new VinkulierungPersonenType();
}
/**
* Create an instance of {@link GlaeubigerSicherstellungType }
*
*/
public GlaeubigerSicherstellungType createGlaeubigerSicherstellungType() {
return new GlaeubigerSicherstellungType();
}
/**
* Create an instance of {@link ZustimmungGesundheitsdatenType }
*
*/
public ZustimmungGesundheitsdatenType createZustimmungGesundheitsdatenType() {
return new ZustimmungGesundheitsdatenType();
}
/**
* Create an instance of {@link FATCAType }
*
*/
public FATCAType createFATCAType() {
return new FATCAType();
}
/**
* Create an instance of {@link FATCANatPersonType }
*
*/
public FATCANatPersonType createFATCANatPersonType() {
return new FATCANatPersonType();
}
/**
* Create an instance of {@link FATCASonstPersonType }
*
*/
public FATCASonstPersonType createFATCASonstPersonType() {
return new FATCASonstPersonType();
}
/**
* Create an instance of {@link PEPType }
*
*/
public PEPType createPEPType() {
return new PEPType();
}
/**
* Create an instance of {@link TreuhaenderfrageType }
*
*/
public TreuhaenderfrageType createTreuhaenderfrageType() {
return new TreuhaenderfrageType();
}
/**
* Create an instance of {@link GMSGType.SteuerlichAnsaessig }
*
*/
public GMSGType.SteuerlichAnsaessig createGMSGTypeSteuerlichAnsaessig() {
return new GMSGType.SteuerlichAnsaessig();
}
/**
* Create an instance of {@link ZahlwegType.Kundenkonto }
*

View File

@@ -0,0 +1,64 @@
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;
/**
* Beschreibung einer PEP
*
* <p>Java-Klasse für PEP_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="PEP_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PEP_Type", propOrder = {
"beschreibung"
})
public class PEPType {
@XmlElement(name = "Beschreibung", required = true)
protected String beschreibung;
/**
* Ruft den Wert der beschreibung-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBeschreibung() {
return beschreibung;
}
/**
* Legt den Wert der beschreibung-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBeschreibung(String value) {
this.beschreibung = value;
}
}

View File

@@ -0,0 +1,84 @@
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;
/**
* Eigenschaften Pfandgläubiger
*
* <p>Java-Klasse für Pfandglaeubiger_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Pfandglaeubiger_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Anteil" type="{http://www.w3.org/2001/XMLSchema}double"/&gt;
* &lt;element name="Glaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Pfandglaeubiger_Type", propOrder = {
"anteil",
"glaeubiger"
})
public class PfandglaeubigerType {
@XmlElement(name = "Anteil")
protected double anteil;
@XmlElement(name = "Glaeubiger", required = true)
protected GlaeubigerSicherstellungType glaeubiger;
/**
* Ruft den Wert der anteil-Eigenschaft ab.
*
*/
public double getAnteil() {
return anteil;
}
/**
* Legt den Wert der anteil-Eigenschaft fest.
*
*/
public void setAnteil(double value) {
this.anteil = value;
}
/**
* Ruft den Wert der glaeubiger-Eigenschaft ab.
*
* @return
* possible object is
* {@link GlaeubigerSicherstellungType }
*
*/
public GlaeubigerSicherstellungType getGlaeubiger() {
return glaeubiger;
}
/**
* Legt den Wert der glaeubiger-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link GlaeubigerSicherstellungType }
*
*/
public void setGlaeubiger(GlaeubigerSicherstellungType value) {
this.glaeubiger = value;
}
}

View File

@@ -8,10 +8,8 @@ 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.leben.ProduktLebenType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.ProduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.ProduktSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.VersichertePersonUnfallType;
/**
@@ -47,9 +45,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.VersichertePersonUnf
})
@XmlSeeAlso({
ProduktRechtsschutzType.class,
ProduktSachPrivatType.class,
VersichertePersonUnfallType.class,
ProduktLebenType.class
ProduktSachPrivatType.class
})
public abstract class ProduktGenerischType
extends ProduktType

View File

@@ -15,7 +15,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.ZusatzproduktKfzType;
/**
* Basistyp für ein Produkt
* Basistyp für ein Produkt (1. Generation, wird nur in Kfz verwendet)
*
* <p>Java-Klasse für Produkt_Type complex type.
*
@@ -50,9 +50,9 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.ZusatzproduktKfzType;
"zusaetzlicheProduktdaten"
})
@XmlSeeAlso({
ProduktGenerischType.class,
ProduktKfzType.class,
ZusatzproduktKfzType.class,
ProduktGenerischType.class
ZusatzproduktKfzType.class
})
public abstract class ProduktType
extends ProduktbausteinType

View File

@@ -44,6 +44,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
})
@XmlSeeAlso({
ProduktbausteinGenerischType.class,
ZusatzproduktType.class,
VerkaufsproduktType.class,
ProduktType.class,
ElementarproduktType.class

View File

@@ -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;
/**
* Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben
*
* <p>Java-Klasse für Raucher_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Raucher_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Raucher_Type")
public abstract class RaucherType
extends AttributType
{
}

View File

@@ -0,0 +1,435 @@
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;
/**
* Risikoattribute natürlicher Personen
*
* <p>Java-Klasse für RisikoNatPerson_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="RisikoNatPerson_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Gewicht" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/&gt;
* &lt;element name="Groesse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/&gt;
* &lt;element name="Raucher" type="{urn:omds3CommonServiceTypes-1-1-0}Raucher_Type" minOccurs="0"/&gt;
* &lt;element name="Sozialversicherungsanstalt" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/&gt;
* &lt;element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/&gt;
* &lt;element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/&gt;
* &lt;element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/&gt;
* &lt;element name="FreizeitSportRisiko" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/&gt;
* &lt;element name="Risikozuschlag" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/&gt;
* &lt;element name="GesetzlicheUV" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/&gt;
* &lt;element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/&gt;
* &lt;element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/&gt;
* &lt;element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/&gt;
* &lt;element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RisikoNatPerson_Type", propOrder = {
"gewicht",
"groesse",
"raucher",
"sozialversicherungsanstalt",
"gefahrenklasse",
"beruf",
"medizinischerBeruf",
"freizeitSportRisiko",
"risikozuschlag",
"gesetzlicheUV",
"personenartKranken",
"berufsgruppe",
"manuelleTaetigkeit",
"zusaetzlicheRisikodaten"
})
public class RisikoNatPersonType {
@XmlElement(name = "Gewicht")
protected AttributIntType gewicht;
@XmlElement(name = "Groesse")
protected AttributIntType groesse;
@XmlElement(name = "Raucher")
protected RaucherType raucher;
@XmlElement(name = "Sozialversicherungsanstalt")
protected AttributEnumType sozialversicherungsanstalt;
@XmlElement(name = "Gefahrenklasse")
protected AttributEnumType gefahrenklasse;
@XmlElement(name = "Beruf")
protected AttributStringType beruf;
@XmlElement(name = "MedizinischerBeruf")
protected AttributEnumType medizinischerBeruf;
@XmlElement(name = "FreizeitSportRisiko")
protected AttributEnumType freizeitSportRisiko;
@XmlElement(name = "Risikozuschlag")
protected AttributEnumType risikozuschlag;
@XmlElement(name = "GesetzlicheUV")
protected AttributEnumType gesetzlicheUV;
@XmlElement(name = "PersonenartKranken")
protected AttributEnumType personenartKranken;
@XmlElement(name = "Berufsgruppe")
protected AttributEnumType berufsgruppe;
@XmlElement(name = "ManuelleTaetigkeit")
protected AttributEnumType manuelleTaetigkeit;
@XmlElement(name = "ZusaetzlicheRisikodaten")
protected List<ZusaetzlicheRisikodatenType> zusaetzlicheRisikodaten;
/**
* Ruft den Wert der gewicht-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributIntType }
*
*/
public AttributIntType getGewicht() {
return gewicht;
}
/**
* Legt den Wert der gewicht-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributIntType }
*
*/
public void setGewicht(AttributIntType value) {
this.gewicht = value;
}
/**
* Ruft den Wert der groesse-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributIntType }
*
*/
public AttributIntType getGroesse() {
return groesse;
}
/**
* Legt den Wert der groesse-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributIntType }
*
*/
public void setGroesse(AttributIntType value) {
this.groesse = value;
}
/**
* Ruft den Wert der raucher-Eigenschaft ab.
*
* @return
* possible object is
* {@link RaucherType }
*
*/
public RaucherType getRaucher() {
return raucher;
}
/**
* Legt den Wert der raucher-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link RaucherType }
*
*/
public void setRaucher(RaucherType value) {
this.raucher = value;
}
/**
* Ruft den Wert der sozialversicherungsanstalt-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getSozialversicherungsanstalt() {
return sozialversicherungsanstalt;
}
/**
* Legt den Wert der sozialversicherungsanstalt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setSozialversicherungsanstalt(AttributEnumType value) {
this.sozialversicherungsanstalt = value;
}
/**
* Ruft den Wert der gefahrenklasse-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getGefahrenklasse() {
return gefahrenklasse;
}
/**
* Legt den Wert der gefahrenklasse-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setGefahrenklasse(AttributEnumType value) {
this.gefahrenklasse = value;
}
/**
* Ruft den Wert der beruf-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributStringType }
*
*/
public AttributStringType getBeruf() {
return beruf;
}
/**
* Legt den Wert der beruf-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributStringType }
*
*/
public void setBeruf(AttributStringType value) {
this.beruf = value;
}
/**
* Ruft den Wert der medizinischerBeruf-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getMedizinischerBeruf() {
return medizinischerBeruf;
}
/**
* Legt den Wert der medizinischerBeruf-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setMedizinischerBeruf(AttributEnumType value) {
this.medizinischerBeruf = value;
}
/**
* Ruft den Wert der freizeitSportRisiko-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getFreizeitSportRisiko() {
return freizeitSportRisiko;
}
/**
* Legt den Wert der freizeitSportRisiko-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setFreizeitSportRisiko(AttributEnumType value) {
this.freizeitSportRisiko = value;
}
/**
* Ruft den Wert der risikozuschlag-Eigenschaft ab.
*
* @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;
}
/**
* Ruft den Wert der gesetzlicheUV-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getGesetzlicheUV() {
return gesetzlicheUV;
}
/**
* Legt den Wert der gesetzlicheUV-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setGesetzlicheUV(AttributEnumType value) {
this.gesetzlicheUV = value;
}
/**
* Ruft den Wert der personenartKranken-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getPersonenartKranken() {
return personenartKranken;
}
/**
* Legt den Wert der personenartKranken-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setPersonenartKranken(AttributEnumType value) {
this.personenartKranken = value;
}
/**
* Ruft den Wert der berufsgruppe-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getBerufsgruppe() {
return berufsgruppe;
}
/**
* Legt den Wert der berufsgruppe-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setBerufsgruppe(AttributEnumType value) {
this.berufsgruppe = value;
}
/**
* Ruft den Wert der manuelleTaetigkeit-Eigenschaft ab.
*
* @return
* possible object is
* {@link AttributEnumType }
*
*/
public AttributEnumType getManuelleTaetigkeit() {
return manuelleTaetigkeit;
}
/**
* Legt den Wert der manuelleTaetigkeit-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AttributEnumType }
*
*/
public void setManuelleTaetigkeit(AttributEnumType value) {
this.manuelleTaetigkeit = value;
}
/**
* Gets the value of the zusaetzlicheRisikodaten property.
*
* <p>
* 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 <CODE>set</CODE> method for the zusaetzlicheRisikodaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusaetzlicheRisikodaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ZusaetzlicheRisikodatenType }
*
*
*/
public List<ZusaetzlicheRisikodatenType> getZusaetzlicheRisikodaten() {
if (zusaetzlicheRisikodaten == null) {
zusaetzlicheRisikodaten = new ArrayList<ZusaetzlicheRisikodatenType>();
}
return this.zusaetzlicheRisikodaten;
}
}

View File

@@ -0,0 +1,121 @@
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Typ fuer Sicherstellungen in der Personenversicherung
*
* <p>Java-Klasse für Sicherstellung_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Sicherstellung_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;element name="Betrag" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;element name="Unanfechtbarkeitssumme" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Sicherstellung_Type", propOrder = {
"lfnr",
"betrag",
"unanfechtbarkeitssumme"
})
@XmlSeeAlso({
AbtretungType.class,
VerpfaendungType.class,
VinkulierungPersonenType.class
})
public class SicherstellungType {
@XmlElement(name = "Lfnr")
@XmlSchemaType(name = "unsignedShort")
protected int lfnr;
@XmlElement(name = "Betrag")
protected BigDecimal betrag;
@XmlElement(name = "Unanfechtbarkeitssumme")
protected BigDecimal unanfechtbarkeitssumme;
/**
* Ruft den Wert der lfnr-Eigenschaft ab.
*
*/
public int getLfnr() {
return lfnr;
}
/**
* Legt den Wert der lfnr-Eigenschaft fest.
*
*/
public void setLfnr(int value) {
this.lfnr = value;
}
/**
* Ruft den Wert der betrag-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getBetrag() {
return betrag;
}
/**
* Legt den Wert der betrag-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setBetrag(BigDecimal value) {
this.betrag = value;
}
/**
* Ruft den Wert der unanfechtbarkeitssumme-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getUnanfechtbarkeitssumme() {
return unanfechtbarkeitssumme;
}
/**
* Legt den Wert der unanfechtbarkeitssumme-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setUnanfechtbarkeitssumme(BigDecimal value) {
this.unanfechtbarkeitssumme = value;
}
}

View File

@@ -0,0 +1,56 @@
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;
/**
* Details zur Treuhaenderfrage
*
* <p>Java-Klasse für Treuhaenderfrage_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Treuhaenderfrage_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Treuhaender" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Treuhaenderfrage_Type", propOrder = {
"treuhaender"
})
public class TreuhaenderfrageType {
@XmlElement(name = "Treuhaender")
protected boolean treuhaender;
/**
* Ruft den Wert der treuhaender-Eigenschaft ab.
*
*/
public boolean isTreuhaender() {
return treuhaender;
}
/**
* Legt den Wert der treuhaender-Eigenschaft fest.
*
*/
public void setTreuhaender(boolean value) {
this.treuhaender = value;
}
}

View File

@@ -8,10 +8,8 @@ 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.leben.VerkaufsproduktLebenType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.VerkaufsproduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.VerkaufsproduktUnfallType;
/**
@@ -47,9 +45,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.VerkaufsproduktUnfal
})
@XmlSeeAlso({
VerkaufsproduktRechtsschutzType.class,
VerkaufsproduktSachPrivatType.class,
VerkaufsproduktUnfallType.class,
VerkaufsproduktLebenType.class
VerkaufsproduktSachPrivatType.class
})
public abstract class VerkaufsproduktGenerischType
extends VerkaufsproduktType

View File

@@ -15,7 +15,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VerkaufsproduktKfzType;
/**
* Basistyp für ein Produktbündel
* Basistyp für ein Produktbündel (1. Generation, wird nur in Kfz verwendet)
*
* <p>Java-Klasse für Verkaufsprodukt_Type complex type.
*
@@ -50,8 +50,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.VerkaufsproduktKfzType;
"zusaetzlicheVerkaufproduktdaten"
})
@XmlSeeAlso({
VerkaufsproduktKfzType.class,
VerkaufsproduktGenerischType.class
VerkaufsproduktGenerischType.class,
VerkaufsproduktKfzType.class
})
public abstract class VerkaufsproduktType
extends ProduktbausteinType

View File

@@ -0,0 +1,73 @@
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;
/**
* Sicherstellung vom Typ Verpfändung
*
* <p>Java-Klasse für Verpfaendung_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Verpfaendung_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Pfandglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Pfandglaeubiger_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Verpfaendung_Type", propOrder = {
"pfandglaeubiger"
})
public class VerpfaendungType
extends SicherstellungType
{
@XmlElement(name = "Pfandglaeubiger", required = true)
protected List<PfandglaeubigerType> pfandglaeubiger;
/**
* Gets the value of the pfandglaeubiger property.
*
* <p>
* 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 <CODE>set</CODE> method for the pfandglaeubiger property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getPfandglaeubiger().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link PfandglaeubigerType }
*
*
*/
public List<PfandglaeubigerType> getPfandglaeubiger() {
if (pfandglaeubiger == null) {
pfandglaeubiger = new ArrayList<PfandglaeubigerType>();
}
return this.pfandglaeubiger;
}
}

View File

@@ -20,6 +20,10 @@ import javax.xml.bind.annotation.XmlType;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Person" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/&gt;
* &lt;choice minOccurs="0"&gt;
* &lt;element name="RisikoNatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}RisikoNatPerson_Type"/&gt;
* &lt;element name="RisikoSonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
* &lt;/choice&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -30,7 +34,9 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VersichertePerson_Type", propOrder = {
"person"
"person",
"risikoNatPerson",
"risikoSonstPerson"
})
public class VersichertePersonType
extends VersichertesInteresseMitAttributMetadatenType
@@ -38,6 +44,10 @@ public class VersichertePersonType
@XmlElement(name = "Person", required = true)
protected PersonType person;
@XmlElement(name = "RisikoNatPerson")
protected RisikoNatPersonType risikoNatPerson;
@XmlElement(name = "RisikoSonstPerson")
protected Object risikoSonstPerson;
/**
* Ruft den Wert der person-Eigenschaft ab.
@@ -63,4 +73,52 @@ public class VersichertePersonType
this.person = value;
}
/**
* Ruft den Wert der risikoNatPerson-Eigenschaft ab.
*
* @return
* possible object is
* {@link RisikoNatPersonType }
*
*/
public RisikoNatPersonType getRisikoNatPerson() {
return risikoNatPerson;
}
/**
* Legt den Wert der risikoNatPerson-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link RisikoNatPersonType }
*
*/
public void setRisikoNatPerson(RisikoNatPersonType value) {
this.risikoNatPerson = value;
}
/**
* Ruft den Wert der risikoSonstPerson-Eigenschaft ab.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getRisikoSonstPerson() {
return risikoSonstPerson;
}
/**
* Legt den Wert der risikoSonstPerson-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setRisikoSonstPerson(Object value) {
this.risikoSonstPerson = value;
}
}

View File

@@ -0,0 +1,66 @@
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;
/**
* Sicherstellung vom Typ Vinkulierung
*
* <p>Java-Klasse für VinkulierungPersonen_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="VinkulierungPersonen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Vinkularglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VinkulierungPersonen_Type", propOrder = {
"vinkularglaeubiger"
})
public class VinkulierungPersonenType
extends SicherstellungType
{
@XmlElement(name = "Vinkularglaeubiger", required = true)
protected VinkularglaeubigerType vinkularglaeubiger;
/**
* Ruft den Wert der vinkularglaeubiger-Eigenschaft ab.
*
* @return
* possible object is
* {@link VinkularglaeubigerType }
*
*/
public VinkularglaeubigerType getVinkularglaeubiger() {
return vinkularglaeubiger;
}
/**
* Legt den Wert der vinkularglaeubiger-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VinkularglaeubigerType }
*
*/
public void setVinkularglaeubiger(VinkularglaeubigerType value) {
this.vinkularglaeubiger = value;
}
}

View File

@@ -0,0 +1,32 @@
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;
/**
* VU-spezifische Erweiterungsmöglichkeit für Personendaten
*
* <p>Java-Klasse für ZusaetzlicheRisikodaten_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ZusaetzlicheRisikodaten_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ZusaetzlicheRisikodaten_Type")
public abstract class ZusaetzlicheRisikodatenType {
}

View File

@@ -0,0 +1,32 @@
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;
/**
* VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt
*
* <p>Java-Klasse für ZusaetzlicheZusatzproduktdaten_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ZusaetzlicheZusatzproduktdaten_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ZusaetzlicheZusatzproduktdaten_Type")
public abstract class ZusaetzlicheZusatzproduktdatenType {
}

View File

@@ -0,0 +1,178 @@
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
*
* <p>Java-Klasse für ZusatzproduktGenerisch_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ZusatzproduktGenerisch_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Zusatzprodukt_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Eingeschlossen" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;element name="EinschlussAenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/&gt;
* &lt;element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Versicherungssumme" type="{urn:omds20}decimal14_2" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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<AttributMetadatenType> 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.
*
* <p>
* 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 <CODE>set</CODE> method for the attributMetadaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getAttributMetadaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link AttributMetadatenType }
*
*
*/
public List<AttributMetadatenType> getAttributMetadaten() {
if (attributMetadaten == null) {
attributMetadaten = new ArrayList<AttributMetadatenType>();
}
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;
}
}

View File

@@ -0,0 +1,108 @@
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)
*
* <p>Java-Klasse für Zusatzprodukt_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Zusatzprodukt_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/&gt;
* &lt;element name="ZusaetzlicheZusatzproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheZusatzproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@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<ZusaetzlicheZusatzproduktdatenType> 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.
*
* <p>
* 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 <CODE>set</CODE> method for the zusaetzlicheZusatzproduktdaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusaetzlicheZusatzproduktdaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ZusaetzlicheZusatzproduktdatenType }
*
*
*/
public List<ZusaetzlicheZusatzproduktdatenType> getZusaetzlicheZusatzproduktdaten() {
if (zusaetzlicheZusatzproduktdaten == null) {
zusaetzlicheZusatzproduktdaten = new ArrayList<ZusaetzlicheZusatzproduktdatenType>();
}
return this.zusaetzlicheZusatzproduktdaten;
}
}

View File

@@ -0,0 +1,78 @@
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;
/**
* Zustimmung Gesundheitsdaten
*
* <p>Java-Klasse für ZustimmungGesundheitsdaten_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ZustimmungGesundheitsdaten_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;element name="Zustimmung" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ZustimmungGesundheitsdaten_Type", propOrder = {
"lfnr",
"zustimmung"
})
public class ZustimmungGesundheitsdatenType {
@XmlElement(name = "Lfnr")
@XmlSchemaType(name = "unsignedShort")
protected int lfnr;
@XmlElement(name = "Zustimmung")
protected boolean zustimmung;
/**
* Ruft den Wert der lfnr-Eigenschaft ab.
*
*/
public int getLfnr() {
return lfnr;
}
/**
* Legt den Wert der lfnr-Eigenschaft fest.
*
*/
public void setLfnr(int value) {
this.lfnr = value;
}
/**
* Ruft den Wert der zustimmung-Eigenschaft ab.
*
*/
public boolean isZustimmung() {
return zustimmung;
}
/**
* Legt den Wert der zustimmung-Eigenschaft fest.
*
*/
public void setZustimmung(boolean value) {
this.zustimmung = value;
}
}

View File

@@ -6,10 +6,8 @@ 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.leben.CalculateLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CalculateUnfallRequestType;
/**
@@ -39,9 +37,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CalculateUnfallReque
})
@XmlSeeAlso({
CalculateRechtsschutzRequestType.class,
CalculateSachPrivatRequestType.class,
CalculateUnfallRequestType.class,
CalculateLebenRequestType.class
CalculateSachPrivatRequestType.class
})
public abstract class CalculateRequestGenType
extends CalculateRequestType

View File

@@ -36,8 +36,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzRequestType
"requestUpselling"
})
@XmlSeeAlso({
CalculateKfzRequestType.class,
CalculateRequestGenType.class
CalculateRequestGenType.class,
CalculateKfzRequestType.class
})
public abstract class CalculateRequestType
extends CommonProcessRequestType

View File

@@ -5,10 +5,8 @@ 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.leben.CalculateLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CalculateRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CalculateUnfallResponseType;
/**
@@ -33,9 +31,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CalculateUnfallRespo
@XmlType(name = "CalculateResponseGen_Type")
@XmlSeeAlso({
CalculateRechtsschutzResponseType.class,
CalculateSachPrivatResponseType.class,
CalculateUnfallResponseType.class,
CalculateLebenResponseType.class
CalculateSachPrivatResponseType.class
})
public abstract class CalculateResponseGenType
extends CalculateResponseType

View File

@@ -30,8 +30,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CalculateKfzResponseTyp
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateResponse_Type")
@XmlSeeAlso({
CalculateKfzResponseType.class,
CalculateResponseGenType.class
CalculateResponseGenType.class,
CalculateKfzResponseType.class
})
public abstract class CalculateResponseType
extends CommonProcessResponseType

View File

@@ -6,10 +6,8 @@ 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.leben.CreateApplicationLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CreateApplicationUnfallRequestType;
/**
@@ -39,9 +37,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CreateApplicationUnf
})
@XmlSeeAlso({
CreateApplicationRechtsschutzRequestType.class,
CreateApplicationSachPrivatRequestType.class,
CreateApplicationUnfallRequestType.class,
CreateApplicationLebenRequestType.class
CreateApplicationSachPrivatRequestType.class
})
public abstract class CreateApplicationRequestGenType
extends CreateApplicationRequestType

View File

@@ -39,8 +39,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzReq
"dateianhaenge"
})
@XmlSeeAlso({
CreateApplicationKfzRequestType.class,
CreateApplicationRequestGenType.class
CreateApplicationRequestGenType.class,
CreateApplicationKfzRequestType.class
})
public abstract class CreateApplicationRequestType
extends CommonProcessRequestType

View File

@@ -5,10 +5,8 @@ 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.leben.CreateApplicationLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CreateApplicationUnfallResponseType;
/**
@@ -33,9 +31,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CreateApplicationUnf
@XmlType(name = "CreateApplicationResponseGen_Type")
@XmlSeeAlso({
CreateApplicationRechtsschutzResponseType.class,
CreateApplicationSachPrivatResponseType.class,
CreateApplicationUnfallResponseType.class,
CreateApplicationLebenResponseType.class
CreateApplicationSachPrivatResponseType.class
})
public abstract class CreateApplicationResponseGenType
extends CreateApplicationResponseType

View File

@@ -44,8 +44,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateApplicationKfzRes
"dokumente"
})
@XmlSeeAlso({
CreateApplicationKfzResponseType.class,
CreateApplicationResponseGenType.class
CreateApplicationResponseGenType.class,
CreateApplicationKfzResponseType.class
})
public abstract class CreateApplicationResponseType
extends CommonProcessResponseType

View File

@@ -6,10 +6,8 @@ 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.leben.CreateOfferLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CreateOfferUnfallRequestType;
/**
@@ -39,9 +37,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CreateOfferUnfallReq
})
@XmlSeeAlso({
CreateOfferRechtsschutzRequestType.class,
CreateOfferSachPrivatRequestType.class,
CreateOfferUnfallRequestType.class,
CreateOfferLebenRequestType.class
CreateOfferSachPrivatRequestType.class
})
public abstract class CreateOfferRequestGenType
extends CreateOfferRequestType

View File

@@ -30,8 +30,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzRequestTy
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferRequest_Type")
@XmlSeeAlso({
CreateOfferKfzRequestType.class,
CreateOfferRequestGenType.class
CreateOfferRequestGenType.class,
CreateOfferKfzRequestType.class
})
public abstract class CreateOfferRequestType
extends CommonProcessRequestType

View File

@@ -5,10 +5,8 @@ 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.leben.CreateOfferLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.CreateOfferRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CreateOfferUnfallResponseType;
/**
@@ -33,9 +31,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.CreateOfferUnfallRes
@XmlType(name = "CreateOfferResponseGen_Type")
@XmlSeeAlso({
CreateOfferRechtsschutzResponseType.class,
CreateOfferSachPrivatResponseType.class,
CreateOfferUnfallResponseType.class,
CreateOfferLebenResponseType.class
CreateOfferSachPrivatResponseType.class
})
public abstract class CreateOfferResponseGenType
extends CreateOfferResponseType

View File

@@ -39,8 +39,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.CreateOfferKfzResponseT
"dokumente"
})
@XmlSeeAlso({
CreateOfferKfzResponseType.class,
CreateOfferResponseGenType.class
CreateOfferResponseGenType.class,
CreateOfferKfzResponseType.class
})
public abstract class CreateOfferResponseType
extends CommonProcessResponseType

View File

@@ -0,0 +1,530 @@
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.AbgelehnteRisikenType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.AntragsartType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.BeteiligtePersonVertragType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.DatenverwendungType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.ErsatzpolizzenType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.KontierungType;
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;
/**
* Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist
*
* <p>Java-Klasse für SpezAntragBasis_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezAntragBasis_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/&gt;
* &lt;element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/&gt;
* &lt;element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/&gt;
* &lt;element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/&gt;
* &lt;element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/&gt;
* &lt;element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/&gt;
* &lt;element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/&gt;
* &lt;element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="3" minOccurs="0"/&gt;
* &lt;element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/&gt;
* &lt;element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezAntragBasis_Type", propOrder = {
"antragsart",
"personen",
"versicherungsnehmer",
"abweichenderPraemienzahler",
"weitereVersicherungsnehmer",
"weitereVertragspersonen",
"abgelehnteRisiken",
"vorversicherungen",
"zahlungsdaten",
"sepa",
"polizzenversand",
"datenschutzbestimmungen",
"kontierung",
"ersatzpolizzennummer",
"zusendungWeitereDokumente",
"zusaetzlicheAntragsdaten"
})
@XmlSeeAlso({
SpezAntragPersonenType.class,
SpezAntragType.class
})
public abstract class SpezAntragBasisType {
@XmlElement(name = "Antragsart")
@XmlSchemaType(name = "string")
protected AntragsartType antragsart;
@XmlElement(name = "Personen", required = true)
protected List<BeteiligtePersonVertragType> personen;
@XmlElement(name = "Versicherungsnehmer")
@XmlSchemaType(name = "unsignedShort")
protected int versicherungsnehmer;
@XmlElement(name = "AbweichenderPraemienzahler")
@XmlSchemaType(name = "unsignedShort")
protected Integer abweichenderPraemienzahler;
@XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class)
@XmlSchemaType(name = "unsignedShort")
protected List<Integer> weitereVersicherungsnehmer;
@XmlElement(name = "WeitereVertragspersonen")
protected List<VertragspersonType> weitereVertragspersonen;
@XmlElement(name = "AbgelehnteRisiken")
protected AbgelehnteRisikenType abgelehnteRisiken;
@XmlElement(name = "Vorversicherungen")
protected VorversicherungenType vorversicherungen;
@XmlElement(name = "Zahlungsdaten", required = true)
protected ZahlungsdatenType zahlungsdaten;
@XmlElement(name = "Sepa")
@XmlSchemaType(name = "unsignedByte")
protected Short sepa;
@XmlElement(name = "Polizzenversand")
@XmlSchemaType(name = "string")
protected PolizzenversandType polizzenversand;
@XmlElement(name = "Datenschutzbestimmungen", required = true)
protected DatenverwendungType datenschutzbestimmungen;
@XmlElement(name = "Kontierung")
protected List<KontierungType> kontierung;
@XmlElement(name = "Ersatzpolizzennummer")
protected ErsatzpolizzenType ersatzpolizzennummer;
@XmlElement(name = "ZusendungWeitereDokumente")
protected List<String> zusendungWeitereDokumente;
@XmlElement(name = "ZusaetzlicheAntragsdaten")
protected List<ZusaetzlicheAntragsdatenType> zusaetzlicheAntragsdaten;
/**
* Ruft den Wert der antragsart-Eigenschaft ab.
*
* @return
* possible object is
* {@link AntragsartType }
*
*/
public AntragsartType getAntragsart() {
return antragsart;
}
/**
* Legt den Wert der antragsart-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AntragsartType }
*
*/
public void setAntragsart(AntragsartType value) {
this.antragsart = value;
}
/**
* Gets the value of the personen property.
*
* <p>
* 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 <CODE>set</CODE> method for the personen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getPersonen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link BeteiligtePersonVertragType }
*
*
*/
public List<BeteiligtePersonVertragType> getPersonen() {
if (personen == null) {
personen = new ArrayList<BeteiligtePersonVertragType>();
}
return this.personen;
}
/**
* Ruft den Wert der versicherungsnehmer-Eigenschaft ab.
*
*/
public int getVersicherungsnehmer() {
return versicherungsnehmer;
}
/**
* Legt den Wert der versicherungsnehmer-Eigenschaft fest.
*
*/
public void setVersicherungsnehmer(int value) {
this.versicherungsnehmer = value;
}
/**
* Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getAbweichenderPraemienzahler() {
return abweichenderPraemienzahler;
}
/**
* Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setAbweichenderPraemienzahler(Integer value) {
this.abweichenderPraemienzahler = value;
}
/**
* Gets the value of the weitereVersicherungsnehmer property.
*
* <p>
* 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 <CODE>set</CODE> method for the weitereVersicherungsnehmer property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getWeitereVersicherungsnehmer().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Integer }
*
*
*/
public List<Integer> getWeitereVersicherungsnehmer() {
if (weitereVersicherungsnehmer == null) {
weitereVersicherungsnehmer = new ArrayList<Integer>();
}
return this.weitereVersicherungsnehmer;
}
/**
* Gets the value of the weitereVertragspersonen property.
*
* <p>
* 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 <CODE>set</CODE> method for the weitereVertragspersonen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getWeitereVertragspersonen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link VertragspersonType }
*
*
*/
public List<VertragspersonType> getWeitereVertragspersonen() {
if (weitereVertragspersonen == null) {
weitereVertragspersonen = new ArrayList<VertragspersonType>();
}
return this.weitereVertragspersonen;
}
/**
* Ruft den Wert der abgelehnteRisiken-Eigenschaft ab.
*
* @return
* possible object is
* {@link AbgelehnteRisikenType }
*
*/
public AbgelehnteRisikenType getAbgelehnteRisiken() {
return abgelehnteRisiken;
}
/**
* Legt den Wert der abgelehnteRisiken-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AbgelehnteRisikenType }
*
*/
public void setAbgelehnteRisiken(AbgelehnteRisikenType value) {
this.abgelehnteRisiken = value;
}
/**
* Ruft den Wert der vorversicherungen-Eigenschaft ab.
*
* @return
* possible object is
* {@link VorversicherungenType }
*
*/
public VorversicherungenType getVorversicherungen() {
return vorversicherungen;
}
/**
* Legt den Wert der vorversicherungen-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VorversicherungenType }
*
*/
public void setVorversicherungen(VorversicherungenType value) {
this.vorversicherungen = value;
}
/**
* Ruft den Wert der zahlungsdaten-Eigenschaft ab.
*
* @return
* possible object is
* {@link ZahlungsdatenType }
*
*/
public ZahlungsdatenType getZahlungsdaten() {
return zahlungsdaten;
}
/**
* Legt den Wert der zahlungsdaten-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ZahlungsdatenType }
*
*/
public void setZahlungsdaten(ZahlungsdatenType value) {
this.zahlungsdaten = value;
}
/**
* Ruft den Wert der sepa-Eigenschaft ab.
*
* @return
* possible object is
* {@link Short }
*
*/
public Short getSepa() {
return sepa;
}
/**
* Legt den Wert der sepa-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Short }
*
*/
public void setSepa(Short value) {
this.sepa = value;
}
/**
* Ruft den Wert der polizzenversand-Eigenschaft ab.
*
* @return
* possible object is
* {@link PolizzenversandType }
*
*/
public PolizzenversandType getPolizzenversand() {
return polizzenversand;
}
/**
* Legt den Wert der polizzenversand-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PolizzenversandType }
*
*/
public void setPolizzenversand(PolizzenversandType value) {
this.polizzenversand = value;
}
/**
* Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab.
*
* @return
* possible object is
* {@link DatenverwendungType }
*
*/
public DatenverwendungType getDatenschutzbestimmungen() {
return datenschutzbestimmungen;
}
/**
* Legt den Wert der datenschutzbestimmungen-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link DatenverwendungType }
*
*/
public void setDatenschutzbestimmungen(DatenverwendungType value) {
this.datenschutzbestimmungen = value;
}
/**
* Gets the value of the kontierung property.
*
* <p>
* 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 <CODE>set</CODE> method for the kontierung property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getKontierung().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link KontierungType }
*
*
*/
public List<KontierungType> getKontierung() {
if (kontierung == null) {
kontierung = new ArrayList<KontierungType>();
}
return this.kontierung;
}
/**
* Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab.
*
* @return
* possible object is
* {@link ErsatzpolizzenType }
*
*/
public ErsatzpolizzenType getErsatzpolizzennummer() {
return ersatzpolizzennummer;
}
/**
* Legt den Wert der ersatzpolizzennummer-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ErsatzpolizzenType }
*
*/
public void setErsatzpolizzennummer(ErsatzpolizzenType value) {
this.ersatzpolizzennummer = value;
}
/**
* Gets the value of the zusendungWeitereDokumente property.
*
* <p>
* 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 <CODE>set</CODE> method for the zusendungWeitereDokumente property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusendungWeitereDokumente().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getZusendungWeitereDokumente() {
if (zusendungWeitereDokumente == null) {
zusendungWeitereDokumente = new ArrayList<String>();
}
return this.zusendungWeitereDokumente;
}
/**
* Gets the value of the zusaetzlicheAntragsdaten property.
*
* <p>
* 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 <CODE>set</CODE> method for the zusaetzlicheAntragsdaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusaetzlicheAntragsdaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ZusaetzlicheAntragsdatenType }
*
*
*/
public List<ZusaetzlicheAntragsdatenType> getZusaetzlicheAntragsdaten() {
if (zusaetzlicheAntragsdaten == null) {
zusaetzlicheAntragsdaten = new ArrayList<ZusaetzlicheAntragsdatenType>();
}
return this.zusaetzlicheAntragsdaten;
}
}

View File

@@ -0,0 +1,107 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.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;
import at.vvo.omds.types.omds3Types.r1_5_0.common.SicherstellungType;
/**
* Abstrakter Basistyp für Antrag in der Personenversicherung, der bei Request und bei Response gleich ist
*
* <p>Java-Klasse für SpezAntragPersonen_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezAntragPersonen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragBasis_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Sicherstellung" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" minOccurs="0"/&gt;
* &lt;element name="ZustGesundheitsdaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;element name="Unanfechtbarkeit" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezAntragPersonen_Type", propOrder = {
"sicherstellung",
"zustGesundheitsdaten",
"unanfechtbarkeit"
})
public abstract class SpezAntragPersonenType
extends SpezAntragBasisType
{
@XmlElement(name = "Sicherstellung")
protected SicherstellungType sicherstellung;
@XmlElement(name = "ZustGesundheitsdaten")
protected boolean zustGesundheitsdaten;
@XmlElement(name = "Unanfechtbarkeit")
protected boolean unanfechtbarkeit;
/**
* Ruft den Wert der sicherstellung-Eigenschaft ab.
*
* @return
* possible object is
* {@link SicherstellungType }
*
*/
public SicherstellungType getSicherstellung() {
return sicherstellung;
}
/**
* Legt den Wert der sicherstellung-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SicherstellungType }
*
*/
public void setSicherstellung(SicherstellungType value) {
this.sicherstellung = value;
}
/**
* Ruft den Wert der zustGesundheitsdaten-Eigenschaft ab.
*
*/
public boolean isZustGesundheitsdaten() {
return zustGesundheitsdaten;
}
/**
* Legt den Wert der zustGesundheitsdaten-Eigenschaft fest.
*
*/
public void setZustGesundheitsdaten(boolean value) {
this.zustGesundheitsdaten = value;
}
/**
* Ruft den Wert der unanfechtbarkeit-Eigenschaft ab.
*
*/
public boolean isUnanfechtbarkeit() {
return unanfechtbarkeit;
}
/**
* Legt den Wert der unanfechtbarkeit-Eigenschaft fest.
*
*/
public void setUnanfechtbarkeit(boolean value) {
this.unanfechtbarkeit = value;
}
}

View File

@@ -1,30 +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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.AbgelehnteRisikenType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.AntragsartType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.BeteiligtePersonVertragType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.DatenverwendungType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.ErsatzpolizzenType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.KontierungType;
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.VinkularglaeubigerType;
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;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben.SpezAntragLebenType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SpezAntragRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.AntragSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SpezAntragUnfallType;
/**
@@ -37,27 +22,11 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SpezAntragUnfallType
* <pre>
* &lt;complexType name="SpezAntrag_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragBasis_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/&gt;
* &lt;element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="AbgelehnteRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AbgelehnteRisiken_Type" minOccurs="0"/&gt;
* &lt;element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type" minOccurs="0"/&gt;
* &lt;element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/&gt;
* &lt;element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/&gt;
* &lt;element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/&gt;
* &lt;element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/&gt;
* &lt;element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/&gt;
* &lt;element name="Kontierung" type="{urn:omds3CommonServiceTypes-1-1-0}Kontierung_Type" maxOccurs="3" minOccurs="0"/&gt;
* &lt;element name="Ersatzpolizzennummer" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizzen_Type" minOccurs="0"/&gt;
* &lt;element name="ZusendungWeitereDokumente" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="ZusaetzlicheAntragsdaten" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}ZusaetzlicheAntragsdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
@@ -66,320 +35,19 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SpezAntragUnfallType
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezAntrag_Type", propOrder = {
"antragsart",
"personen",
"versicherungsnehmer",
"abweichenderPraemienzahler",
"weitereVersicherungsnehmer",
"weitereVertragspersonen",
"abgelehnteRisiken",
"vorversicherungen",
"zahlungsdaten",
"sepa",
"vinkulierung",
"polizzenversand",
"datenschutzbestimmungen",
"kontierung",
"ersatzpolizzennummer",
"zusendungWeitereDokumente",
"zusaetzlicheAntragsdaten"
"vinkulierung"
})
@XmlSeeAlso({
SpezAntragRechtsschutzType.class,
AntragSachPrivatType.class,
SpezAntragUnfallType.class,
SpezAntragKfzType.class,
SpezAntragLebenType.class
SpezAntragKfzType.class
})
public abstract class SpezAntragType {
public abstract class SpezAntragType
extends SpezAntragBasisType
{
@XmlElement(name = "Antragsart")
@XmlSchemaType(name = "string")
protected AntragsartType antragsart;
@XmlElement(name = "Personen", required = true)
protected List<BeteiligtePersonVertragType> personen;
@XmlElement(name = "Versicherungsnehmer")
@XmlSchemaType(name = "unsignedShort")
protected int versicherungsnehmer;
@XmlElement(name = "AbweichenderPraemienzahler")
@XmlSchemaType(name = "unsignedShort")
protected Integer abweichenderPraemienzahler;
@XmlElement(name = "WeitereVersicherungsnehmer", type = Integer.class)
@XmlSchemaType(name = "unsignedShort")
protected List<Integer> weitereVersicherungsnehmer;
@XmlElement(name = "WeitereVertragspersonen")
protected List<VertragspersonType> weitereVertragspersonen;
@XmlElement(name = "AbgelehnteRisiken")
protected AbgelehnteRisikenType abgelehnteRisiken;
@XmlElement(name = "Vorversicherungen")
protected VorversicherungenType vorversicherungen;
@XmlElement(name = "Zahlungsdaten", required = true)
protected ZahlungsdatenType zahlungsdaten;
@XmlElement(name = "Sepa")
@XmlSchemaType(name = "unsignedByte")
protected Short sepa;
@XmlElement(name = "Vinkulierung")
protected VinkularglaeubigerType vinkulierung;
@XmlElement(name = "Polizzenversand")
@XmlSchemaType(name = "string")
protected PolizzenversandType polizzenversand;
@XmlElement(name = "Datenschutzbestimmungen", required = true)
protected DatenverwendungType datenschutzbestimmungen;
@XmlElement(name = "Kontierung")
protected List<KontierungType> kontierung;
@XmlElement(name = "Ersatzpolizzennummer")
protected ErsatzpolizzenType ersatzpolizzennummer;
@XmlElement(name = "ZusendungWeitereDokumente")
protected List<String> zusendungWeitereDokumente;
@XmlElement(name = "ZusaetzlicheAntragsdaten")
protected List<ZusaetzlicheAntragsdatenType> zusaetzlicheAntragsdaten;
/**
* Ruft den Wert der antragsart-Eigenschaft ab.
*
* @return
* possible object is
* {@link AntragsartType }
*
*/
public AntragsartType getAntragsart() {
return antragsart;
}
/**
* Legt den Wert der antragsart-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AntragsartType }
*
*/
public void setAntragsart(AntragsartType value) {
this.antragsart = value;
}
/**
* Gets the value of the personen property.
*
* <p>
* 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 <CODE>set</CODE> method for the personen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getPersonen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link BeteiligtePersonVertragType }
*
*
*/
public List<BeteiligtePersonVertragType> getPersonen() {
if (personen == null) {
personen = new ArrayList<BeteiligtePersonVertragType>();
}
return this.personen;
}
/**
* Ruft den Wert der versicherungsnehmer-Eigenschaft ab.
*
*/
public int getVersicherungsnehmer() {
return versicherungsnehmer;
}
/**
* Legt den Wert der versicherungsnehmer-Eigenschaft fest.
*
*/
public void setVersicherungsnehmer(int value) {
this.versicherungsnehmer = value;
}
/**
* Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getAbweichenderPraemienzahler() {
return abweichenderPraemienzahler;
}
/**
* Legt den Wert der abweichenderPraemienzahler-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setAbweichenderPraemienzahler(Integer value) {
this.abweichenderPraemienzahler = value;
}
/**
* Gets the value of the weitereVersicherungsnehmer property.
*
* <p>
* 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 <CODE>set</CODE> method for the weitereVersicherungsnehmer property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getWeitereVersicherungsnehmer().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Integer }
*
*
*/
public List<Integer> getWeitereVersicherungsnehmer() {
if (weitereVersicherungsnehmer == null) {
weitereVersicherungsnehmer = new ArrayList<Integer>();
}
return this.weitereVersicherungsnehmer;
}
/**
* Gets the value of the weitereVertragspersonen property.
*
* <p>
* 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 <CODE>set</CODE> method for the weitereVertragspersonen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getWeitereVertragspersonen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link VertragspersonType }
*
*
*/
public List<VertragspersonType> getWeitereVertragspersonen() {
if (weitereVertragspersonen == null) {
weitereVertragspersonen = new ArrayList<VertragspersonType>();
}
return this.weitereVertragspersonen;
}
/**
* Ruft den Wert der abgelehnteRisiken-Eigenschaft ab.
*
* @return
* possible object is
* {@link AbgelehnteRisikenType }
*
*/
public AbgelehnteRisikenType getAbgelehnteRisiken() {
return abgelehnteRisiken;
}
/**
* Legt den Wert der abgelehnteRisiken-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AbgelehnteRisikenType }
*
*/
public void setAbgelehnteRisiken(AbgelehnteRisikenType value) {
this.abgelehnteRisiken = value;
}
/**
* Ruft den Wert der vorversicherungen-Eigenschaft ab.
*
* @return
* possible object is
* {@link VorversicherungenType }
*
*/
public VorversicherungenType getVorversicherungen() {
return vorversicherungen;
}
/**
* Legt den Wert der vorversicherungen-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VorversicherungenType }
*
*/
public void setVorversicherungen(VorversicherungenType value) {
this.vorversicherungen = value;
}
/**
* Ruft den Wert der zahlungsdaten-Eigenschaft ab.
*
* @return
* possible object is
* {@link ZahlungsdatenType }
*
*/
public ZahlungsdatenType getZahlungsdaten() {
return zahlungsdaten;
}
/**
* Legt den Wert der zahlungsdaten-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ZahlungsdatenType }
*
*/
public void setZahlungsdaten(ZahlungsdatenType value) {
this.zahlungsdaten = value;
}
/**
* Ruft den Wert der sepa-Eigenschaft ab.
*
* @return
* possible object is
* {@link Short }
*
*/
public Short getSepa() {
return sepa;
}
/**
* Legt den Wert der sepa-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Short }
*
*/
public void setSepa(Short value) {
this.sepa = value;
}
/**
* Ruft den Wert der vinkulierung-Eigenschaft ab.
@@ -405,163 +73,4 @@ public abstract class SpezAntragType {
this.vinkulierung = value;
}
/**
* Ruft den Wert der polizzenversand-Eigenschaft ab.
*
* @return
* possible object is
* {@link PolizzenversandType }
*
*/
public PolizzenversandType getPolizzenversand() {
return polizzenversand;
}
/**
* Legt den Wert der polizzenversand-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PolizzenversandType }
*
*/
public void setPolizzenversand(PolizzenversandType value) {
this.polizzenversand = value;
}
/**
* Ruft den Wert der datenschutzbestimmungen-Eigenschaft ab.
*
* @return
* possible object is
* {@link DatenverwendungType }
*
*/
public DatenverwendungType getDatenschutzbestimmungen() {
return datenschutzbestimmungen;
}
/**
* Legt den Wert der datenschutzbestimmungen-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link DatenverwendungType }
*
*/
public void setDatenschutzbestimmungen(DatenverwendungType value) {
this.datenschutzbestimmungen = value;
}
/**
* Gets the value of the kontierung property.
*
* <p>
* 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 <CODE>set</CODE> method for the kontierung property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getKontierung().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link KontierungType }
*
*
*/
public List<KontierungType> getKontierung() {
if (kontierung == null) {
kontierung = new ArrayList<KontierungType>();
}
return this.kontierung;
}
/**
* Ruft den Wert der ersatzpolizzennummer-Eigenschaft ab.
*
* @return
* possible object is
* {@link ErsatzpolizzenType }
*
*/
public ErsatzpolizzenType getErsatzpolizzennummer() {
return ersatzpolizzennummer;
}
/**
* Legt den Wert der ersatzpolizzennummer-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ErsatzpolizzenType }
*
*/
public void setErsatzpolizzennummer(ErsatzpolizzenType value) {
this.ersatzpolizzennummer = value;
}
/**
* Gets the value of the zusendungWeitereDokumente property.
*
* <p>
* 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 <CODE>set</CODE> method for the zusendungWeitereDokumente property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusendungWeitereDokumente().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getZusendungWeitereDokumente() {
if (zusendungWeitereDokumente == null) {
zusendungWeitereDokumente = new ArrayList<String>();
}
return this.zusendungWeitereDokumente;
}
/**
* Gets the value of the zusaetzlicheAntragsdaten property.
*
* <p>
* 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 <CODE>set</CODE> method for the zusaetzlicheAntragsdaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusaetzlicheAntragsdaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ZusaetzlicheAntragsdatenType }
*
*
*/
public List<ZusaetzlicheAntragsdatenType> getZusaetzlicheAntragsdaten() {
if (zusaetzlicheAntragsdaten == null) {
zusaetzlicheAntragsdaten = new ArrayList<ZusaetzlicheAntragsdatenType>();
}
return this.zusaetzlicheAntragsdaten;
}
}

View File

@@ -6,10 +6,8 @@ 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.SpezBerechnungKfzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben.SpezBerechnungLebenType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SpezBerechnungRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.BerechnungSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SpezBerechnungUnfallType;
/**
@@ -35,9 +33,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SpezBerechnungUnfall
@XmlSeeAlso({
SpezBerechnungRechtsschutzType.class,
BerechnungSachPrivatType.class,
SpezBerechnungUnfallType.class,
SpezBerechnungKfzType.class,
SpezBerechnungLebenType.class
SpezBerechnungKfzType.class
})
public abstract class SpezBerechnungType {

View File

@@ -12,10 +12,8 @@ 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.leben.SpezOffertLebenType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SpezOffertRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.OffertSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SpezOffertUnfallType;
/**
@@ -50,9 +48,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SpezOffertUnfallType
@XmlSeeAlso({
SpezOffertRechtsschutzType.class,
OffertSachPrivatType.class,
SpezOffertUnfallType.class,
SpezOffertKfzType.class,
SpezOffertLebenType.class
SpezOffertKfzType.class
})
public abstract class SpezOffertType {

View File

@@ -6,10 +6,8 @@ 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.leben.SubmitApplicationLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SubmitApplicationUnfallRequestType;
/**
@@ -39,9 +37,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SubmitApplicationUnf
})
@XmlSeeAlso({
SubmitApplicationRechtsschutzRequestType.class,
SubmitApplicationSachPrivatRequestType.class,
SubmitApplicationUnfallRequestType.class,
SubmitApplicationLebenRequestType.class
SubmitApplicationSachPrivatRequestType.class
})
public abstract class SubmitApplicationRequestGenType
extends SubmitApplicationRequestType

View File

@@ -42,8 +42,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzReq
"antragsnummer"
})
@XmlSeeAlso({
SubmitApplicationKfzRequestType.class,
SubmitApplicationRequestGenType.class
SubmitApplicationRequestGenType.class,
SubmitApplicationKfzRequestType.class
})
public abstract class SubmitApplicationRequestType
extends CommonProcessRequestType

View File

@@ -5,10 +5,8 @@ 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.leben.SubmitApplicationLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SubmitApplicationUnfallResponseType;
/**
@@ -33,9 +31,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SubmitApplicationUnf
@XmlType(name = "SubmitApplicationResponseGen_Type")
@XmlSeeAlso({
SubmitApplicationRechtsschutzResponseType.class,
SubmitApplicationSachPrivatResponseType.class,
SubmitApplicationUnfallResponseType.class,
SubmitApplicationLebenResponseType.class
SubmitApplicationSachPrivatResponseType.class
})
public abstract class SubmitApplicationResponseGenType
extends SubmitApplicationResponseType

View File

@@ -44,8 +44,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.kfz.SubmitApplicationKfzRes
"dokumente"
})
@XmlSeeAlso({
SubmitApplicationKfzResponseType.class,
SubmitApplicationResponseGenType.class
SubmitApplicationResponseGenType.class,
SubmitApplicationKfzResponseType.class
})
public abstract class SubmitApplicationResponseType
extends CommonProcessResponseType

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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 Leben
*
* <p>Java-Klasse für CalculateLebenRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CalculateLebenRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateLebenRequest_Type", propOrder = {
"berechnungsanfrage"
})
public class CalculateLebenRequestType
extends CalculateRequestGenType
{
@XmlElement(name = "Berechnungsanfrage", required = true)
protected SpezBerechnungLebenType berechnungsanfrage;
/**
* Ruft den Wert der berechnungsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezBerechnungLebenType }
*
*/
public SpezBerechnungLebenType getBerechnungsanfrage() {
return berechnungsanfrage;
}
/**
* Legt den Wert der berechnungsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezBerechnungLebenType }
*
*/
public void setBerechnungsanfrage(SpezBerechnungLebenType value) {
this.berechnungsanfrage = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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 Responseobjekts für eine Leben-Berechnung
*
* <p>Java-Klasse für CalculateLebenResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CalculateLebenResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateLebenResponse_Type", propOrder = {
"berechnungsantwort"
})
public class CalculateLebenResponseType
extends CalculateResponseGenType
{
@XmlElement(name = "Berechnungsantwort", required = true)
protected SpezBerechnungLebenType berechnungsantwort;
/**
* Ruft den Wert der berechnungsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezBerechnungLebenType }
*
*/
public SpezBerechnungLebenType getBerechnungsantwort() {
return berechnungsantwort;
}
/**
* Legt den Wert der berechnungsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezBerechnungLebenType }
*
*/
public void setBerechnungsantwort(SpezBerechnungLebenType value) {
this.berechnungsantwort = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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 Leben-Antrags
*
* <p>Java-Klasse für CreateApplicationLebenRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateApplicationLebenRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationLebenRequest_Type", propOrder = {
"antragsanfrage"
})
public class CreateApplicationLebenRequestType
extends CreateApplicationRequestGenType
{
@XmlElement(name = "Antragsanfrage", required = true)
protected SpezAntragLebenType antragsanfrage;
/**
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragLebenType }
*
*/
public SpezAntragLebenType getAntragsanfrage() {
return antragsanfrage;
}
/**
* Legt den Wert der antragsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragLebenType }
*
*/
public void setAntragsanfrage(SpezAntragLebenType value) {
this.antragsanfrage = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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 für die Erstellung eines Leben-Antrags
*
* <p>Java-Klasse für CreateApplicationLebenResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateApplicationLebenResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationLebenResponse_Type", propOrder = {
"antragsantwort"
})
public class CreateApplicationLebenResponseType
extends CreateApplicationResponseGenType
{
@XmlElement(name = "Antragsantwort", required = true)
protected SpezAntragLebenType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragLebenType }
*
*/
public SpezAntragLebenType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragLebenType }
*
*/
public void setAntragsantwort(SpezAntragLebenType value) {
this.antragsantwort = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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 Leben-Offerts
*
* <p>Java-Klasse für CreateOfferLebenRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateOfferLebenRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferLebenRequest_Type", propOrder = {
"offertanfrage"
})
public class CreateOfferLebenRequestType
extends CreateOfferRequestGenType
{
@XmlElement(name = "Offertanfrage", required = true)
protected SpezOffertLebenType offertanfrage;
/**
* Ruft den Wert der offertanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezOffertLebenType }
*
*/
public SpezOffertLebenType getOffertanfrage() {
return offertanfrage;
}
/**
* Legt den Wert der offertanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezOffertLebenType }
*
*/
public void setOffertanfrage(SpezOffertLebenType value) {
this.offertanfrage = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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 für eine Erstellung eines Leben-Offerts
*
* <p>Java-Klasse für CreateOfferLebenResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateOfferLebenResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezOffertLeben_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferLebenResponse_Type", propOrder = {
"offertantwort"
})
public class CreateOfferLebenResponseType
extends CreateOfferResponseGenType
{
@XmlElement(name = "Offertantwort", required = true)
protected SpezOffertLebenType offertantwort;
/**
* Ruft den Wert der offertantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezOffertLebenType }
*
*/
public SpezOffertLebenType getOffertantwort() {
return offertantwort;
}
/**
* Legt den Wert der offertantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezOffertLebenType }
*
*/
public void setOffertantwort(SpezOffertLebenType value) {
this.offertantwort = value;
}
}

View File

@@ -1,97 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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.BezugsberechtigungType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.ElementarproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
/**
* Typ für ein Elementarprodukt in der Sparte Leben. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet.
*
* <p>Java-Klasse für ElementarproduktLeben_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ElementarproduktLeben_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&gt;
* &lt;element name="Bezugsberechtigung" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ElementarproduktLeben_Type", propOrder = {
"selbstbehalt",
"bezugsberechtigung"
})
public class ElementarproduktLebenType
extends ElementarproduktGenerischType
{
@XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt;
@XmlElement(name = "Bezugsberechtigung")
protected BezugsberechtigungType bezugsberechtigung;
/**
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
*
* @return
* possible object is
* {@link SelbstbehaltType }
*
*/
public SelbstbehaltType getSelbstbehalt() {
return selbstbehalt;
}
/**
* Legt den Wert der selbstbehalt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SelbstbehaltType }
*
*/
public void setSelbstbehalt(SelbstbehaltType value) {
this.selbstbehalt = value;
}
/**
* Ruft den Wert der bezugsberechtigung-Eigenschaft ab.
*
* @return
* possible object is
* {@link BezugsberechtigungType }
*
*/
public BezugsberechtigungType getBezugsberechtigung() {
return bezugsberechtigung;
}
/**
* Legt den Wert der bezugsberechtigung-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BezugsberechtigungType }
*
*/
public void setBezugsberechtigung(BezugsberechtigungType value) {
this.bezugsberechtigung = value;
}
}

View File

@@ -1,227 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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.leben package.
* <p>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 _CalculateLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenRequest");
private final static QName _CalculateLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenResponse");
private final static QName _CreateOfferLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenRequest");
private final static QName _CreateOfferLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenResponse");
private final static QName _CreateApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenRequest");
private final static QName _CreateApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenResponse");
private final static QName _SubmitApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenRequest");
private final static QName _SubmitApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenResponse");
/**
* 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.leben
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link CalculateLebenRequestType }
*
*/
public CalculateLebenRequestType createCalculateLebenRequestType() {
return new CalculateLebenRequestType();
}
/**
* Create an instance of {@link CalculateLebenResponseType }
*
*/
public CalculateLebenResponseType createCalculateLebenResponseType() {
return new CalculateLebenResponseType();
}
/**
* Create an instance of {@link CreateOfferLebenRequestType }
*
*/
public CreateOfferLebenRequestType createCreateOfferLebenRequestType() {
return new CreateOfferLebenRequestType();
}
/**
* Create an instance of {@link CreateOfferLebenResponseType }
*
*/
public CreateOfferLebenResponseType createCreateOfferLebenResponseType() {
return new CreateOfferLebenResponseType();
}
/**
* Create an instance of {@link CreateApplicationLebenRequestType }
*
*/
public CreateApplicationLebenRequestType createCreateApplicationLebenRequestType() {
return new CreateApplicationLebenRequestType();
}
/**
* Create an instance of {@link CreateApplicationLebenResponseType }
*
*/
public CreateApplicationLebenResponseType createCreateApplicationLebenResponseType() {
return new CreateApplicationLebenResponseType();
}
/**
* Create an instance of {@link SubmitApplicationLebenResponseType }
*
*/
public SubmitApplicationLebenResponseType createSubmitApplicationLebenResponseType() {
return new SubmitApplicationLebenResponseType();
}
/**
* Create an instance of {@link VerkaufsproduktLebenType }
*
*/
public VerkaufsproduktLebenType createVerkaufsproduktLebenType() {
return new VerkaufsproduktLebenType();
}
/**
* Create an instance of {@link ProduktLebenType }
*
*/
public ProduktLebenType createProduktLebenType() {
return new ProduktLebenType();
}
/**
* Create an instance of {@link ElementarproduktLebenType }
*
*/
public ElementarproduktLebenType createElementarproduktLebenType() {
return new ElementarproduktLebenType();
}
/**
* Create an instance of {@link SpezBerechnungLebenType }
*
*/
public SpezBerechnungLebenType createSpezBerechnungLebenType() {
return new SpezBerechnungLebenType();
}
/**
* Create an instance of {@link SpezOffertLebenType }
*
*/
public SpezOffertLebenType createSpezOffertLebenType() {
return new SpezOffertLebenType();
}
/**
* Create an instance of {@link SpezAntragLebenType }
*
*/
public SpezAntragLebenType createSpezAntragLebenType() {
return new SpezAntragLebenType();
}
/**
* Create an instance of {@link SubmitApplicationLebenRequestType }
*
*/
public SubmitApplicationLebenRequestType createSubmitApplicationLebenRequestType() {
return new SubmitApplicationLebenRequestType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenRequest")
public JAXBElement<CalculateLebenRequestType> createCalculateLebenRequest(CalculateLebenRequestType value) {
return new JAXBElement<CalculateLebenRequestType>(_CalculateLebenRequest_QNAME, CalculateLebenRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenResponse")
public JAXBElement<CalculateLebenResponseType> createCalculateLebenResponse(CalculateLebenResponseType value) {
return new JAXBElement<CalculateLebenResponseType>(_CalculateLebenResponse_QNAME, CalculateLebenResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenRequest")
public JAXBElement<CreateOfferLebenRequestType> createCreateOfferLebenRequest(CreateOfferLebenRequestType value) {
return new JAXBElement<CreateOfferLebenRequestType>(_CreateOfferLebenRequest_QNAME, CreateOfferLebenRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenResponse")
public JAXBElement<CreateOfferLebenResponseType> createCreateOfferLebenResponse(CreateOfferLebenResponseType value) {
return new JAXBElement<CreateOfferLebenResponseType>(_CreateOfferLebenResponse_QNAME, CreateOfferLebenResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenRequest")
public JAXBElement<CreateApplicationLebenRequestType> createCreateApplicationLebenRequest(CreateApplicationLebenRequestType value) {
return new JAXBElement<CreateApplicationLebenRequestType>(_CreateApplicationLebenRequest_QNAME, CreateApplicationLebenRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenResponse")
public JAXBElement<CreateApplicationLebenResponseType> createCreateApplicationLebenResponse(CreateApplicationLebenResponseType value) {
return new JAXBElement<CreateApplicationLebenResponseType>(_CreateApplicationLebenResponse_QNAME, CreateApplicationLebenResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenRequest")
public JAXBElement<SubmitApplicationLebenResponseType> createSubmitApplicationLebenRequest(SubmitApplicationLebenResponseType value) {
return new JAXBElement<SubmitApplicationLebenResponseType>(_SubmitApplicationLebenRequest_QNAME, SubmitApplicationLebenResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenResponse")
public JAXBElement<SubmitApplicationLebenResponseType> createSubmitApplicationLebenResponse(SubmitApplicationLebenResponseType value) {
return new JAXBElement<SubmitApplicationLebenResponseType>(_SubmitApplicationLebenResponse_QNAME, SubmitApplicationLebenResponseType.class, null, value);
}
}

View File

@@ -1,125 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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;
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
/**
* Typ für ein Produkt in der Sparte Leben. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten.
*
* <p>Java-Klasse für ProduktLeben_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ProduktLeben_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&gt;
* &lt;element name="Elementarprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ElementarproduktLeben_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktLeben_Type", propOrder = {
"personRefLfnr",
"selbstbehalt",
"elementarprodukte"
})
public class ProduktLebenType
extends ProduktGenerischType
{
@XmlElement(name = "PersonRefLfnr")
@XmlSchemaType(name = "unsignedShort")
protected int personRefLfnr;
@XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt;
@XmlElement(name = "Elementarprodukte")
protected List<ElementarproduktLebenType> elementarprodukte;
/**
* Ruft den Wert der personRefLfnr-Eigenschaft ab.
*
*/
public int getPersonRefLfnr() {
return personRefLfnr;
}
/**
* Legt den Wert der personRefLfnr-Eigenschaft fest.
*
*/
public void setPersonRefLfnr(int value) {
this.personRefLfnr = value;
}
/**
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
*
* @return
* possible object is
* {@link SelbstbehaltType }
*
*/
public SelbstbehaltType getSelbstbehalt() {
return selbstbehalt;
}
/**
* Legt den Wert der selbstbehalt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SelbstbehaltType }
*
*/
public void setSelbstbehalt(SelbstbehaltType value) {
this.selbstbehalt = value;
}
/**
* Gets the value of the elementarprodukte property.
*
* <p>
* 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 <CODE>set</CODE> method for the elementarprodukte property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getElementarprodukte().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ElementarproduktLebenType }
*
*
*/
public List<ElementarproduktLebenType> getElementarprodukte() {
if (elementarprodukte == null) {
elementarprodukte = new ArrayList<ElementarproduktLebenType>();
}
return this.elementarprodukte;
}
}

View File

@@ -1,103 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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.ELBezugsberechtigungType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezAntragType;
/**
* Typ für den Schritt Antrags-Erzeugung
*
* <p>Java-Klasse für SpezAntragLeben_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezAntragLeben_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type"&gt;
* &lt;sequence&gt;
* &lt;element ref="{urn:omds20}EL-Bezugsberechtigung" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezAntragLeben_Type", propOrder = {
"elBezugsberechtigung",
"verkaufsprodukt"
})
public class SpezAntragLebenType
extends SpezAntragType
{
@XmlElement(name = "EL-Bezugsberechtigung", namespace = "urn:omds20")
protected List<ELBezugsberechtigungType> elBezugsberechtigung;
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktLebenType verkaufsprodukt;
/**
* Gets the value of the elBezugsberechtigung property.
*
* <p>
* 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 <CODE>set</CODE> method for the elBezugsberechtigung property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getELBezugsberechtigung().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ELBezugsberechtigungType }
*
*
*/
public List<ELBezugsberechtigungType> getELBezugsberechtigung() {
if (elBezugsberechtigung == null) {
elBezugsberechtigung = new ArrayList<ELBezugsberechtigungType>();
}
return this.elBezugsberechtigung;
}
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktLebenType }
*
*/
public VerkaufsproduktLebenType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktLebenType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktLebenType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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
*
* <p>Java-Klasse für SpezBerechnungLeben_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezBerechnungLeben_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezBerechnungLeben_Type", propOrder = {
"verkaufsprodukt"
})
public class SpezBerechnungLebenType
extends SpezBerechnungType
{
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktLebenType verkaufsprodukt;
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktLebenType }
*
*/
public VerkaufsproduktLebenType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktLebenType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktLebenType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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
*
* <p>Java-Klasse für SpezOffertLeben_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezOffertLeben_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezOffertLeben_Type", propOrder = {
"verkaufsprodukt"
})
public class SpezOffertLebenType
extends SpezOffertType
{
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktLebenType verkaufsprodukt;
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktLebenType }
*
*/
public VerkaufsproduktLebenType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktLebenType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktLebenType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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
*
* <p>Java-Klasse für SubmitApplicationLebenRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SubmitApplicationLebenRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationLebenRequest_Type", propOrder = {
"antragsanfrage"
})
public class SubmitApplicationLebenRequestType
extends SubmitApplicationRequestGenType
{
@XmlElement(name = "Antragsanfrage")
protected SpezAntragLebenType antragsanfrage;
/**
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragLebenType }
*
*/
public SpezAntragLebenType getAntragsanfrage() {
return antragsanfrage;
}
/**
* Legt den Wert der antragsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragLebenType }
*
*/
public void setAntragsanfrage(SpezAntragLebenType value) {
this.antragsanfrage = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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, um den Antrag einzureichen
*
* <p>Java-Klasse für SubmitApplicationLebenResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SubmitApplicationLebenResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezAntragLeben_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationLebenResponse_Type", propOrder = {
"antragsantwort"
})
public class SubmitApplicationLebenResponseType
extends SubmitApplicationResponseGenType
{
@XmlElement(name = "Antragsantwort", required = true)
protected SpezAntragLebenType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragLebenType }
*
*/
public SpezAntragLebenType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragLebenType }
*
*/
public void setAntragsantwort(SpezAntragLebenType value) {
this.antragsantwort = value;
}
}

View File

@@ -1,108 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;
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.VerkaufsproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertePersonType;
/**
* Typ für ein Verkaufsprodukt in der Sparte Leben
*
* <p>Java-Klasse für VerkaufsproduktLeben_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="VerkaufsproduktLeben_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ProduktLeben_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VerkaufsproduktLeben_Type", propOrder = {
"produkte",
"personen"
})
public class VerkaufsproduktLebenType
extends VerkaufsproduktGenerischType
{
@XmlElement(name = "Produkte", required = true)
protected List<ProduktLebenType> produkte;
@XmlElement(name = "Personen", required = true)
protected List<VersichertePersonType> personen;
/**
* Gets the value of the produkte property.
*
* <p>
* 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 <CODE>set</CODE> method for the produkte property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getProdukte().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ProduktLebenType }
*
*
*/
public List<ProduktLebenType> getProdukte() {
if (produkte == null) {
produkte = new ArrayList<ProduktLebenType>();
}
return this.produkte;
}
/**
* Gets the value of the personen property.
*
* <p>
* 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 <CODE>set</CODE> method for the personen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getPersonen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link VersichertePersonType }
*
*
*/
public List<VersichertePersonType> getPersonen() {
if (personen == null) {
personen = new ArrayList<VersichertePersonType>();
}
return this.personen;
}
}

View File

@@ -1,2 +0,0 @@
@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.leben;

View File

@@ -50,15 +50,15 @@ public class GenElementarproduktGebaeudeType
{
@XmlElementRefs({
@XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Nebenkosten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
@XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
})
protected List<JAXBElement<?>> rest;
@@ -68,8 +68,8 @@ public class GenElementarproduktGebaeudeType
* <p>
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
* Zeile 298 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_SachPrivat.xsd
* Zeile 891 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd
* Zeile 301 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_SachPrivat.xsd
* Zeile 912 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd
* <p>
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
@@ -91,14 +91,14 @@ public class GenElementarproduktGebaeudeType
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link Long }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
*
*
*/

View File

@@ -50,15 +50,15 @@ public class GenElementarproduktHaushaltType
{
@XmlElementRefs({
@XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Nebenkosten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
@XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
})
protected List<JAXBElement<?>> rest;
@@ -68,8 +68,8 @@ public class GenElementarproduktHaushaltType
* <p>
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
* Zeile 313 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_SachPrivat.xsd
* Zeile 891 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd
* Zeile 316 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_SachPrivat.xsd
* Zeile 912 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3CommonServiceTypes.xsd
* <p>
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
@@ -90,15 +90,15 @@ public class GenElementarproduktHaushaltType
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link Long }{@code >}
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
*
*
*/

View File

@@ -1,12 +1,15 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat;
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 at.vvo.omds.types.omds3Types.r1_5_0.common.Gruppe;
import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType;
@@ -21,6 +24,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;element name="Elementarprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Gruppen" type="{urn:omds3CommonServiceTypes-1-1-0}Gruppe" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -31,7 +36,9 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktSachPrivat_Type", propOrder = {
"versObjekteRefLfnr"
"versObjekteRefLfnr",
"elementarprodukte",
"gruppen"
})
@XmlSeeAlso({
ProduktGebaeudeversicherungType.class,
@@ -44,6 +51,10 @@ public abstract class ProduktSachPrivatType
@XmlElement(name = "VersObjekteRefLfnr")
@XmlSchemaType(name = "unsignedShort")
protected int versObjekteRefLfnr;
@XmlElement(name = "Elementarprodukte")
protected List<ElementarproduktSachPrivatType> elementarprodukte;
@XmlElement(name = "Gruppen")
protected List<Gruppe> gruppen;
/**
* Ruft den Wert der versObjekteRefLfnr-Eigenschaft ab.
@@ -61,4 +72,62 @@ public abstract class ProduktSachPrivatType
this.versObjekteRefLfnr = value;
}
/**
* Gets the value of the elementarprodukte property.
*
* <p>
* 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 <CODE>set</CODE> method for the elementarprodukte property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getElementarprodukte().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ElementarproduktSachPrivatType }
*
*
*/
public List<ElementarproduktSachPrivatType> getElementarprodukte() {
if (elementarprodukte == null) {
elementarprodukte = new ArrayList<ElementarproduktSachPrivatType>();
}
return this.elementarprodukte;
}
/**
* Gets the value of the gruppen property.
*
* <p>
* 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 <CODE>set</CODE> method for the gruppen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getGruppen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Gruppe }
*
*
*/
public List<Gruppe> getGruppen() {
if (gruppen == null) {
gruppen = new ArrayList<Gruppe>();
}
return this.gruppen;
}
}

View File

@@ -7,6 +7,7 @@ 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.Gruppe;
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;
@@ -26,6 +27,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseType;
* &lt;sequence&gt;
* &lt;element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Gruppen" type="{urn:omds3CommonServiceTypes-1-1-0}Gruppe" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -39,6 +41,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseType;
@XmlType(name = "VerkaufsproduktSachPrivat_Type", propOrder = {
"produkte",
"zusatzprodukte",
"gruppen",
"versicherteObjekte"
})
public class VerkaufsproduktSachPrivatType
@@ -49,6 +52,8 @@ public class VerkaufsproduktSachPrivatType
protected List<ProduktSachPrivatType> produkte;
@XmlElement(name = "Zusatzprodukte")
protected List<ProduktGenerischType> zusatzprodukte;
@XmlElement(name = "Gruppen")
protected List<Gruppe> gruppen;
@XmlElement(name = "VersicherteObjekte", required = true)
protected List<VersichertesInteresseType> versicherteObjekte;
@@ -110,6 +115,35 @@ public class VerkaufsproduktSachPrivatType
return this.zusatzprodukte;
}
/**
* Gets the value of the gruppen property.
*
* <p>
* 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 <CODE>set</CODE> method for the gruppen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getGruppen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Gruppe }
*
*
*/
public List<Gruppe> getGruppen() {
if (gruppen == null) {
gruppen = new ArrayList<Gruppe>();
}
return this.gruppen;
}
/**
* Gets the value of the versicherteObjekte property.
*

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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 Unfall
*
* <p>Java-Klasse für CalculateUnfallRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CalculateUnfallRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateUnfallRequest_Type", propOrder = {
"berechnungsanfrage"
})
public class CalculateUnfallRequestType
extends CalculateRequestGenType
{
@XmlElement(name = "Berechnungsanfrage", required = true)
protected SpezBerechnungUnfallType berechnungsanfrage;
/**
* Ruft den Wert der berechnungsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezBerechnungUnfallType }
*
*/
public SpezBerechnungUnfallType getBerechnungsanfrage() {
return berechnungsanfrage;
}
/**
* Legt den Wert der berechnungsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezBerechnungUnfallType }
*
*/
public void setBerechnungsanfrage(SpezBerechnungUnfallType value) {
this.berechnungsanfrage = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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 Responseobjekts für eine Unfall-Berechnung
*
* <p>Java-Klasse für CalculateUnfallResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CalculateUnfallResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateUnfallResponse_Type", propOrder = {
"berechnungsantwort"
})
public class CalculateUnfallResponseType
extends CalculateResponseGenType
{
@XmlElement(name = "Berechnungsantwort", required = true)
protected SpezBerechnungUnfallType berechnungsantwort;
/**
* Ruft den Wert der berechnungsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezBerechnungUnfallType }
*
*/
public SpezBerechnungUnfallType getBerechnungsantwort() {
return berechnungsantwort;
}
/**
* Legt den Wert der berechnungsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezBerechnungUnfallType }
*
*/
public void setBerechnungsantwort(SpezBerechnungUnfallType value) {
this.berechnungsantwort = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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 Unfallantrags
*
* <p>Java-Klasse für CreateApplicationUnfallRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateApplicationUnfallRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationUnfallRequest_Type", propOrder = {
"antragsanfrage"
})
public class CreateApplicationUnfallRequestType
extends CreateApplicationRequestGenType
{
@XmlElement(name = "Antragsanfrage", required = true)
protected SpezAntragUnfallType antragsanfrage;
/**
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragUnfallType }
*
*/
public SpezAntragUnfallType getAntragsanfrage() {
return antragsanfrage;
}
/**
* Legt den Wert der antragsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragUnfallType }
*
*/
public void setAntragsanfrage(SpezAntragUnfallType value) {
this.antragsanfrage = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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 für die Erstellung eines Unfallantrags
*
* <p>Java-Klasse für CreateApplicationUnfallResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateApplicationUnfallResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationUnfallResponse_Type", propOrder = {
"antragsantwort"
})
public class CreateApplicationUnfallResponseType
extends CreateApplicationResponseGenType
{
@XmlElement(name = "Antragsantwort", required = true)
protected SpezAntragUnfallType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragUnfallType }
*
*/
public SpezAntragUnfallType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragUnfallType }
*
*/
public void setAntragsantwort(SpezAntragUnfallType value) {
this.antragsantwort = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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 Unfall-Offerts
*
* <p>Java-Klasse für CreateOfferUnfallRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateOfferUnfallRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferUnfallRequest_Type", propOrder = {
"offertanfrage"
})
public class CreateOfferUnfallRequestType
extends CreateOfferRequestGenType
{
@XmlElement(name = "Offertanfrage", required = true)
protected SpezOffertUnfallType offertanfrage;
/**
* Ruft den Wert der offertanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezOffertUnfallType }
*
*/
public SpezOffertUnfallType getOffertanfrage() {
return offertanfrage;
}
/**
* Legt den Wert der offertanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezOffertUnfallType }
*
*/
public void setOffertanfrage(SpezOffertUnfallType value) {
this.offertanfrage = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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 für eine Erstellung eines Unfall-Offerts
*
* <p>Java-Klasse für CreateOfferUnfallResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateOfferUnfallResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferUnfallResponse_Type", propOrder = {
"offertantwort"
})
public class CreateOfferUnfallResponseType
extends CreateOfferResponseGenType
{
@XmlElement(name = "Offertantwort", required = true)
protected SpezOffertUnfallType offertantwort;
/**
* Ruft den Wert der offertantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezOffertUnfallType }
*
*/
public SpezOffertUnfallType getOffertantwort() {
return offertantwort;
}
/**
* Legt den Wert der offertantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezOffertUnfallType }
*
*/
public void setOffertantwort(SpezOffertUnfallType value) {
this.offertantwort = value;
}
}

View File

@@ -1,68 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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.ElementarproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
/**
* Typ für ein Elementarprodukt in der Sparte Unfall. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet.
*
* <p>Java-Klasse für LeistungsartUnfall_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="LeistungsartUnfall_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LeistungsartUnfall_Type", propOrder = {
"selbstbehalt"
})
public class LeistungsartUnfallType
extends ElementarproduktGenerischType
{
@XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt;
/**
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
*
* @return
* possible object is
* {@link SelbstbehaltType }
*
*/
public SelbstbehaltType getSelbstbehalt() {
return selbstbehalt;
}
/**
* Legt den Wert der selbstbehalt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SelbstbehaltType }
*
*/
public void setSelbstbehalt(SelbstbehaltType value) {
this.selbstbehalt = value;
}
}

View File

@@ -1,227 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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.unfall package.
* <p>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 _CalculateUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallRequest");
private final static QName _CalculateUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallResponse");
private final static QName _CreateOfferUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallRequest");
private final static QName _CreateOfferUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallResponse");
private final static QName _CreateApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallRequest");
private final static QName _CreateApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallResponse");
private final static QName _SubmitApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallRequest");
private final static QName _SubmitApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallResponse");
/**
* 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.unfall
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link CalculateUnfallRequestType }
*
*/
public CalculateUnfallRequestType createCalculateUnfallRequestType() {
return new CalculateUnfallRequestType();
}
/**
* Create an instance of {@link CalculateUnfallResponseType }
*
*/
public CalculateUnfallResponseType createCalculateUnfallResponseType() {
return new CalculateUnfallResponseType();
}
/**
* Create an instance of {@link CreateOfferUnfallRequestType }
*
*/
public CreateOfferUnfallRequestType createCreateOfferUnfallRequestType() {
return new CreateOfferUnfallRequestType();
}
/**
* Create an instance of {@link CreateOfferUnfallResponseType }
*
*/
public CreateOfferUnfallResponseType createCreateOfferUnfallResponseType() {
return new CreateOfferUnfallResponseType();
}
/**
* Create an instance of {@link CreateApplicationUnfallRequestType }
*
*/
public CreateApplicationUnfallRequestType createCreateApplicationUnfallRequestType() {
return new CreateApplicationUnfallRequestType();
}
/**
* Create an instance of {@link CreateApplicationUnfallResponseType }
*
*/
public CreateApplicationUnfallResponseType createCreateApplicationUnfallResponseType() {
return new CreateApplicationUnfallResponseType();
}
/**
* Create an instance of {@link SubmitApplicationUnfallResponseType }
*
*/
public SubmitApplicationUnfallResponseType createSubmitApplicationUnfallResponseType() {
return new SubmitApplicationUnfallResponseType();
}
/**
* Create an instance of {@link VerkaufsproduktUnfallType }
*
*/
public VerkaufsproduktUnfallType createVerkaufsproduktUnfallType() {
return new VerkaufsproduktUnfallType();
}
/**
* Create an instance of {@link VersichertePersonUnfallType }
*
*/
public VersichertePersonUnfallType createVersichertePersonUnfallType() {
return new VersichertePersonUnfallType();
}
/**
* Create an instance of {@link LeistungsartUnfallType }
*
*/
public LeistungsartUnfallType createLeistungsartUnfallType() {
return new LeistungsartUnfallType();
}
/**
* Create an instance of {@link SpezBerechnungUnfallType }
*
*/
public SpezBerechnungUnfallType createSpezBerechnungUnfallType() {
return new SpezBerechnungUnfallType();
}
/**
* Create an instance of {@link SpezOffertUnfallType }
*
*/
public SpezOffertUnfallType createSpezOffertUnfallType() {
return new SpezOffertUnfallType();
}
/**
* Create an instance of {@link SpezAntragUnfallType }
*
*/
public SpezAntragUnfallType createSpezAntragUnfallType() {
return new SpezAntragUnfallType();
}
/**
* Create an instance of {@link SubmitApplicationUnfallRequestType }
*
*/
public SubmitApplicationUnfallRequestType createSubmitApplicationUnfallRequestType() {
return new SubmitApplicationUnfallRequestType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallRequest")
public JAXBElement<CalculateUnfallRequestType> createCalculateUnfallRequest(CalculateUnfallRequestType value) {
return new JAXBElement<CalculateUnfallRequestType>(_CalculateUnfallRequest_QNAME, CalculateUnfallRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CalculateUnfallResponse")
public JAXBElement<CalculateUnfallResponseType> createCalculateUnfallResponse(CalculateUnfallResponseType value) {
return new JAXBElement<CalculateUnfallResponseType>(_CalculateUnfallResponse_QNAME, CalculateUnfallResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallRequest")
public JAXBElement<CreateOfferUnfallRequestType> createCreateOfferUnfallRequest(CreateOfferUnfallRequestType value) {
return new JAXBElement<CreateOfferUnfallRequestType>(_CreateOfferUnfallRequest_QNAME, CreateOfferUnfallRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferUnfallResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateOfferUnfallResponse")
public JAXBElement<CreateOfferUnfallResponseType> createCreateOfferUnfallResponse(CreateOfferUnfallResponseType value) {
return new JAXBElement<CreateOfferUnfallResponseType>(_CreateOfferUnfallResponse_QNAME, CreateOfferUnfallResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallRequest")
public JAXBElement<CreateApplicationUnfallRequestType> createCreateApplicationUnfallRequest(CreateApplicationUnfallRequestType value) {
return new JAXBElement<CreateApplicationUnfallRequestType>(_CreateApplicationUnfallRequest_QNAME, CreateApplicationUnfallRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationUnfallResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "CreateApplicationUnfallResponse")
public JAXBElement<CreateApplicationUnfallResponseType> createCreateApplicationUnfallResponse(CreateApplicationUnfallResponseType value) {
return new JAXBElement<CreateApplicationUnfallResponseType>(_CreateApplicationUnfallResponse_QNAME, CreateApplicationUnfallResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallRequest")
public JAXBElement<SubmitApplicationUnfallResponseType> createSubmitApplicationUnfallRequest(SubmitApplicationUnfallResponseType value) {
return new JAXBElement<SubmitApplicationUnfallResponseType>(_SubmitApplicationUnfallRequest_QNAME, SubmitApplicationUnfallResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallResponse")
public JAXBElement<SubmitApplicationUnfallResponseType> createSubmitApplicationUnfallResponse(SubmitApplicationUnfallResponseType value) {
return new JAXBElement<SubmitApplicationUnfallResponseType>(_SubmitApplicationUnfallResponse_QNAME, SubmitApplicationUnfallResponseType.class, null, value);
}
}

View File

@@ -1,96 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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.BezugsberechtigungType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SpezAntragType;
/**
* Typ für den Schritt Antrags-Erzeugung
*
* <p>Java-Klasse für SpezAntragUnfall_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezAntragUnfall_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Bezugsberechtigung" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" minOccurs="0"/&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezAntragUnfall_Type", propOrder = {
"bezugsberechtigung",
"verkaufsprodukt"
})
public class SpezAntragUnfallType
extends SpezAntragType
{
@XmlElement(name = "Bezugsberechtigung")
protected BezugsberechtigungType bezugsberechtigung;
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktUnfallType verkaufsprodukt;
/**
* Ruft den Wert der bezugsberechtigung-Eigenschaft ab.
*
* @return
* possible object is
* {@link BezugsberechtigungType }
*
*/
public BezugsberechtigungType getBezugsberechtigung() {
return bezugsberechtigung;
}
/**
* Legt den Wert der bezugsberechtigung-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BezugsberechtigungType }
*
*/
public void setBezugsberechtigung(BezugsberechtigungType value) {
this.bezugsberechtigung = value;
}
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktUnfallType }
*
*/
public VerkaufsproduktUnfallType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktUnfallType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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
*
* <p>Java-Klasse für SpezBerechnungUnfall_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezBerechnungUnfall_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezBerechnungUnfall_Type", propOrder = {
"verkaufsprodukt"
})
public class SpezBerechnungUnfallType
extends SpezBerechnungType
{
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktUnfallType verkaufsprodukt;
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktUnfallType }
*
*/
public VerkaufsproduktUnfallType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktUnfallType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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
*
* <p>Java-Klasse für SpezOffertUnfall_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezOffertUnfall_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VerkaufsproduktUnfall_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezOffertUnfall_Type", propOrder = {
"verkaufsprodukt"
})
public class SpezOffertUnfallType
extends SpezOffertType
{
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktUnfallType verkaufsprodukt;
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktUnfallType }
*
*/
public VerkaufsproduktUnfallType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktUnfallType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktUnfallType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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
*
* <p>Java-Klasse für SubmitApplicationUnfallRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SubmitApplicationUnfallRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationUnfallRequest_Type", propOrder = {
"antragsanfrage"
})
public class SubmitApplicationUnfallRequestType
extends SubmitApplicationRequestGenType
{
@XmlElement(name = "Antragsanfrage")
protected SpezAntragUnfallType antragsanfrage;
/**
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragUnfallType }
*
*/
public SpezAntragUnfallType getAntragsanfrage() {
return antragsanfrage;
}
/**
* Legt den Wert der antragsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragUnfallType }
*
*/
public void setAntragsanfrage(SpezAntragUnfallType value) {
this.antragsanfrage = value;
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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, um den Antrag einzureichen
*
* <p>Java-Klasse für SubmitApplicationUnfallResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SubmitApplicationUnfallResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationUnfallResponse_Type", propOrder = {
"antragsantwort"
})
public class SubmitApplicationUnfallResponseType
extends SubmitApplicationResponseGenType
{
@XmlElement(name = "Antragsantwort", required = true)
protected SpezAntragUnfallType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragUnfallType }
*
*/
public SpezAntragUnfallType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragUnfallType }
*
*/
public void setAntragsantwort(SpezAntragUnfallType value) {
this.antragsantwort = value;
}
}

View File

@@ -1,108 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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.VerkaufsproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertePersonType;
/**
* Typ für ein Verkaufsprodukt in der Sparte Unfall
*
* <p>Java-Klasse für VerkaufsproduktUnfall_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="VerkaufsproduktUnfall_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="VersichertePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VersichertePersonUnfall_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VerkaufsproduktUnfall_Type", propOrder = {
"versichertePersonen",
"personen"
})
public class VerkaufsproduktUnfallType
extends VerkaufsproduktGenerischType
{
@XmlElement(name = "VersichertePersonen", required = true)
protected List<VersichertePersonUnfallType> versichertePersonen;
@XmlElement(name = "Personen", required = true)
protected List<VersichertePersonType> personen;
/**
* Gets the value of the versichertePersonen property.
*
* <p>
* 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 <CODE>set</CODE> method for the versichertePersonen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getVersichertePersonen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link VersichertePersonUnfallType }
*
*
*/
public List<VersichertePersonUnfallType> getVersichertePersonen() {
if (versichertePersonen == null) {
versichertePersonen = new ArrayList<VersichertePersonUnfallType>();
}
return this.versichertePersonen;
}
/**
* Gets the value of the personen property.
*
* <p>
* 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 <CODE>set</CODE> method for the personen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getPersonen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link VersichertePersonType }
*
*
*/
public List<VersichertePersonType> getPersonen() {
if (personen == null) {
personen = new ArrayList<VersichertePersonType>();
}
return this.personen;
}
}

View File

@@ -1,125 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
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;
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
/**
* Typ für ein Produkt in der Sparte Unfall. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten.
*
* <p>Java-Klasse für VersichertePersonUnfall_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="VersichertePersonUnfall_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&gt;
* &lt;element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}LeistungsartUnfall_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VersichertePersonUnfall_Type", propOrder = {
"personRefLfnr",
"selbstbehalt",
"leistungsarten"
})
public class VersichertePersonUnfallType
extends ProduktGenerischType
{
@XmlElement(name = "PersonRefLfnr")
@XmlSchemaType(name = "unsignedShort")
protected int personRefLfnr;
@XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt;
@XmlElement(name = "Leistungsarten")
protected List<LeistungsartUnfallType> leistungsarten;
/**
* Ruft den Wert der personRefLfnr-Eigenschaft ab.
*
*/
public int getPersonRefLfnr() {
return personRefLfnr;
}
/**
* Legt den Wert der personRefLfnr-Eigenschaft fest.
*
*/
public void setPersonRefLfnr(int value) {
this.personRefLfnr = value;
}
/**
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
*
* @return
* possible object is
* {@link SelbstbehaltType }
*
*/
public SelbstbehaltType getSelbstbehalt() {
return selbstbehalt;
}
/**
* Legt den Wert der selbstbehalt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SelbstbehaltType }
*
*/
public void setSelbstbehalt(SelbstbehaltType value) {
this.selbstbehalt = value;
}
/**
* Gets the value of the leistungsarten property.
*
* <p>
* 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 <CODE>set</CODE> method for the leistungsarten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getLeistungsarten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link LeistungsartUnfallType }
*
*
*/
public List<LeistungsartUnfallType> getLeistungsarten() {
if (leistungsarten == null) {
leistungsarten = new ArrayList<LeistungsartUnfallType>();
}
return this.leistungsarten;
}
}

View File

@@ -1,2 +0,0 @@
@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;

View File

@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
protected ObjektIdType objektId;
@XmlElementRefs({
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
@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 = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class)
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class)
})
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
@XmlElement(name = "WirksamtkeitAb", required = true)

Some files were not shown because too many files have changed in this diff Show More