Anpassungen Unfall nach Fachausschuss Unfall:

- Versicherte Person referenziert eine Person (ähnlich anderen Sparten)
 - Bezugsrecht eigenes Objekt
 - Keine Darstellung der Prämien nach Leistungsarten
This commit is contained in:
2019-11-13 18:06:50 +01:00
parent 3572597fb6
commit 596dde457e
24 changed files with 754 additions and 638 deletions

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;
/**
* Bezugsberechtigung gesetzliche Erben
*
* <p>Java-Klasse für BezugsberechtigungGesetzlicheErben_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="BezugsberechtigungGesetzlicheErben_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BezugsberechtigungGesetzlicheErben_Type")
public class BezugsberechtigungGesetzlicheErbenType
extends BezugsberechtigungType
{
}

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;
/**
* Bezugsberechtigung Individuell
*
* <p>Java-Klasse für BezugsberechtigungIndividuell complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="BezugsberechtigungIndividuell"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BezugsberechtigungIndividuell", propOrder = {
"beschreibung"
})
public class BezugsberechtigungIndividuell
extends BezugsberechtigungType
{
@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,60 @@
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;
/**
* Bezugsberechtigung namentlich
*
* <p>Java-Klasse für BezugsberechtigungNamentlich complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="BezugsberechtigungNamentlich"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="ReferenzPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BezugsberechtigungNamentlich", propOrder = {
"referenzPerson"
})
public class BezugsberechtigungNamentlich
extends BezugsberechtigungType
{
@XmlElement(name = "ReferenzPerson")
@XmlSchemaType(name = "unsignedShort")
protected int referenzPerson;
/**
* Ruft den Wert der referenzPerson-Eigenschaft ab.
*
*/
public int getReferenzPerson() {
return referenzPerson;
}
/**
* Legt den Wert der referenzPerson-Eigenschaft fest.
*
*/
public void setReferenzPerson(int value) {
this.referenzPerson = value;
}
}

View File

@@ -0,0 +1,39 @@
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 Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell
*
* <p>Java-Klasse für Bezugsberechtigung_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Bezugsberechtigung_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 = "Bezugsberechtigung_Type")
@XmlSeeAlso({
BezugsberechtigungGesetzlicheErbenType.class,
BezugsberechtigungUeberbringerType.class,
BezugsberechtigungNamentlich.class,
BezugsberechtigungIndividuell.class
})
public abstract class BezugsberechtigungType {
}

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;
/**
* Bezugsberechtigung Überbringer
*
* <p>Java-Klasse für BezugsberechtigungUeberbringer_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="BezugsberechtigungUeberbringer_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BezugsberechtigungUeberbringer_Type")
public class BezugsberechtigungUeberbringerType
extends BezugsberechtigungType
{
}

View File

@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds2Types.v2_11.PERSONType;
/** /**
* Type Bezugsrecht * Type Bezugsrecht fuer Kfz
* *
* <p>Java-Klasse für Bezugsrecht_Type complex type. * <p>Java-Klasse für Bezugsrecht_Type complex type.
* *

View File

@@ -1,6 +1,7 @@
package at.vvo.omds.types.omds3Types.r1_5_0.common; package at.vvo.omds.types.omds3Types.r1_5_0.common;
import java.math.BigDecimal;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
@@ -29,6 +30,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.LeistungsartUnfallTy
* &lt;element name="EinschlussAenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/&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="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="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;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -42,7 +44,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.LeistungsartUnfallTy
"eingeschlossen", "eingeschlossen",
"einschlussAenderbar", "einschlussAenderbar",
"attributMetadaten", "attributMetadaten",
"beschreibungTxt" "beschreibungTxt",
"versicherungssumme"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
ElementarproduktRechtsschutzType.class, ElementarproduktRechtsschutzType.class,
@@ -61,6 +64,8 @@ public abstract class ElementarproduktGenerischType
protected List<AttributMetadatenType> attributMetadaten; protected List<AttributMetadatenType> attributMetadaten;
@XmlElement(name = "BeschreibungTxt") @XmlElement(name = "BeschreibungTxt")
protected String beschreibungTxt; protected String beschreibungTxt;
@XmlElement(name = "Versicherungssumme")
protected BigDecimal versicherungssumme;
/** /**
* Ruft den Wert der eingeschlossen-Eigenschaft ab. * Ruft den Wert der eingeschlossen-Eigenschaft ab.
@@ -155,4 +160,28 @@ public abstract class ElementarproduktGenerischType
this.beschreibungTxt = 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

@@ -165,6 +165,14 @@ public class ObjectFactory {
return new VinkulierungType(); return new VinkulierungType();
} }
/**
* Create an instance of {@link VinkularglaeubigerType }
*
*/
public VinkularglaeubigerType createVinkularglaeubigerType() {
return new VinkularglaeubigerType();
}
/** /**
* Create an instance of {@link BezugsrechtType } * Create an instance of {@link BezugsrechtType }
* *
@@ -174,11 +182,35 @@ public class ObjectFactory {
} }
/** /**
* Create an instance of {@link VinkularglaeubigerType } * Create an instance of {@link BezugsberechtigungGesetzlicheErbenType }
* *
*/ */
public VinkularglaeubigerType createVinkularglaeubigerType() { public BezugsberechtigungGesetzlicheErbenType createBezugsberechtigungGesetzlicheErbenType() {
return new VinkularglaeubigerType(); return new BezugsberechtigungGesetzlicheErbenType();
}
/**
* Create an instance of {@link BezugsberechtigungUeberbringerType }
*
*/
public BezugsberechtigungUeberbringerType createBezugsberechtigungUeberbringerType() {
return new BezugsberechtigungUeberbringerType();
}
/**
* Create an instance of {@link BezugsberechtigungNamentlich }
*
*/
public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() {
return new BezugsberechtigungNamentlich();
}
/**
* Create an instance of {@link BezugsberechtigungIndividuell }
*
*/
public BezugsberechtigungIndividuell createBezugsberechtigungIndividuell() {
return new BezugsberechtigungIndividuell();
} }
/** /**

View File

@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CalculateResponseGen
/** /**
* Typ des Responseobjekts für eine Rechtsschutz-Berechnung * Typ des Responseobjekt bei der Rechtsschutz-Berechnung
* *
* <p>Java-Klasse für CalculateRechtsschutzResponse_Type complex type. * <p>Java-Klasse für CalculateRechtsschutzResponse_Type complex type.
* *

View File

@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateApplicationRes
/** /**
* Type des Responseobjekts für die Erstellung eines Rechtsschutzantrags * Type des Responseobjekts bei der Erstellung eines Rechtsschutzantrags
* *
* <p>Java-Klasse für CreateApplicationRechtsschutzResponse_Type complex type. * <p>Java-Klasse für CreateApplicationRechtsschutzResponse_Type complex type.
* *

View File

@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.CreateOfferResponseG
/** /**
* Type des Responseobjekts für eine Erstellung eines Rechtsschutz-Offerts * Type des Responseobjekts bei der Erstellung eines Rechtsschutz-Offerts
* *
* <p>Java-Klasse für CreateOfferRechtsschutzResponse_Type complex type. * <p>Java-Klasse für CreateOfferRechtsschutzResponse_Type complex type.
* *

View File

@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationRes
/** /**
* Type des Response, um den Antrag einzureichen * Type des Response beim Eineichen des Antrags
* *
* <p>Java-Klasse für SubmitApplicationRechtsschutzResponse_Type complex type. * <p>Java-Klasse für SubmitApplicationRechtsschutzResponse_Type complex type.
* *

View File

@@ -2,10 +2,13 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat;
import java.math.BigInteger; import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.KostenFixOderProzentType; import at.vvo.omds.types.omds3Types.r1_5_0.common.KostenFixOderProzentType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType; import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
@@ -40,257 +43,70 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = { @XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = {
"sparte", "rest"
"pauschalbetrag",
"selbstbehalt",
"versicherungssumme",
"unterversicherungsverzicht",
"prozentVersicherungssumme",
"nebenkosten",
"vorsorge",
"hoechsthaftungssumme"
}) })
public class GenElementarproduktGebaeudeType public class GenElementarproduktGebaeudeType
extends ElementarproduktGebaeudeType extends ElementarproduktGebaeudeType
{ {
@XmlElement(name = "Sparte", required = true) @XmlElementRefs({
protected String sparte; @XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElement(name = "Pauschalbetrag") @XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlSchemaType(name = "unsignedLong") @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
protected BigInteger pauschalbetrag; @XmlElementRef(name = "Nebenkosten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElement(name = "Selbstbehalt") @XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
protected SelbstbehaltType selbstbehalt; @XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElement(name = "Versicherungssumme") @XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlSchemaType(name = "unsignedLong") @XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
protected BigInteger versicherungssumme; @XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
@XmlElement(name = "Unterversicherungsverzicht") })
protected Boolean unterversicherungsverzicht; protected List<JAXBElement<?>> rest;
@XmlElement(name = "ProzentVersicherungssumme")
@XmlSchemaType(name = "unsignedInt")
protected Long prozentVersicherungssumme;
@XmlElement(name = "Nebenkosten")
protected KostenFixOderProzentType nebenkosten;
@XmlElement(name = "Vorsorge")
protected KostenFixOderProzentType vorsorge;
@XmlElement(name = "Hoechsthaftungssumme")
@XmlSchemaType(name = "unsignedLong")
protected BigInteger hoechsthaftungssumme;
/** /**
* Ruft den Wert der sparte-Eigenschaft ab. * Ruft das restliche Contentmodell ab.
*
* <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
* <p>
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
* Gets the value of the rest 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 rest property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getRest().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link Long }{@code >}
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
* *
* @return
* possible object is
* {@link String }
* *
*/ */
public String getSparte() { public List<JAXBElement<?>> getRest() {
return sparte; if (rest == null) {
rest = new ArrayList<JAXBElement<?>>();
} }
return this.rest;
/**
* Legt den Wert der sparte-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSparte(String value) {
this.sparte = value;
}
/**
* Ruft den Wert der pauschalbetrag-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getPauschalbetrag() {
return pauschalbetrag;
}
/**
* Legt den Wert der pauschalbetrag-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setPauschalbetrag(BigInteger value) {
this.pauschalbetrag = 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;
}
/**
* Ruft den Wert der versicherungssumme-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getVersicherungssumme() {
return versicherungssumme;
}
/**
* Legt den Wert der versicherungssumme-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setVersicherungssumme(BigInteger value) {
this.versicherungssumme = value;
}
/**
* Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUnterversicherungsverzicht() {
return unterversicherungsverzicht;
}
/**
* Legt den Wert der unterversicherungsverzicht-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUnterversicherungsverzicht(Boolean value) {
this.unterversicherungsverzicht = value;
}
/**
* Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getProzentVersicherungssumme() {
return prozentVersicherungssumme;
}
/**
* Legt den Wert der prozentVersicherungssumme-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setProzentVersicherungssumme(Long value) {
this.prozentVersicherungssumme = value;
}
/**
* Ruft den Wert der nebenkosten-Eigenschaft ab.
*
* @return
* possible object is
* {@link KostenFixOderProzentType }
*
*/
public KostenFixOderProzentType getNebenkosten() {
return nebenkosten;
}
/**
* Legt den Wert der nebenkosten-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link KostenFixOderProzentType }
*
*/
public void setNebenkosten(KostenFixOderProzentType value) {
this.nebenkosten = value;
}
/**
* Ruft den Wert der vorsorge-Eigenschaft ab.
*
* @return
* possible object is
* {@link KostenFixOderProzentType }
*
*/
public KostenFixOderProzentType getVorsorge() {
return vorsorge;
}
/**
* Legt den Wert der vorsorge-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link KostenFixOderProzentType }
*
*/
public void setVorsorge(KostenFixOderProzentType value) {
this.vorsorge = value;
}
/**
* Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getHoechsthaftungssumme() {
return hoechsthaftungssumme;
}
/**
* Legt den Wert der hoechsthaftungssumme-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setHoechsthaftungssumme(BigInteger value) {
this.hoechsthaftungssumme = value;
} }
} }

View File

@@ -2,10 +2,13 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat;
import java.math.BigInteger; import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.KostenFixOderProzentType; import at.vvo.omds.types.omds3Types.r1_5_0.common.KostenFixOderProzentType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType; import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
@@ -40,257 +43,70 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = { @XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = {
"sparte", "rest"
"versicherungssumme",
"pauschalbetrag",
"prozentVersicherungssumme",
"selbstbehalt",
"unterversicherungsverzicht",
"nebenkosten",
"vorsorge",
"hoechsthaftungssumme"
}) })
public class GenElementarproduktHaushaltType public class GenElementarproduktHaushaltType
extends ElementarproduktHaushaltType extends ElementarproduktHaushaltType
{ {
@XmlElement(name = "Sparte", required = true) @XmlElementRefs({
protected String sparte; @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElement(name = "Versicherungssumme") @XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlSchemaType(name = "unsignedLong") @XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
protected BigInteger versicherungssumme; @XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElement(name = "Pauschalbetrag") @XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlSchemaType(name = "unsignedLong") @XmlElementRef(name = "Nebenkosten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
protected BigInteger pauschalbetrag; @XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlElement(name = "ProzentVersicherungssumme") @XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
@XmlSchemaType(name = "unsignedInt") @XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
protected Long prozentVersicherungssumme; })
@XmlElement(name = "Selbstbehalt") protected List<JAXBElement<?>> rest;
protected SelbstbehaltType selbstbehalt;
@XmlElement(name = "Unterversicherungsverzicht")
protected Boolean unterversicherungsverzicht;
@XmlElement(name = "Nebenkosten")
protected KostenFixOderProzentType nebenkosten;
@XmlElement(name = "Vorsorge")
protected KostenFixOderProzentType vorsorge;
@XmlElement(name = "Hoechsthaftungssumme")
@XmlSchemaType(name = "unsignedLong")
protected BigInteger hoechsthaftungssumme;
/** /**
* Ruft den Wert der sparte-Eigenschaft ab. * Ruft das restliche Contentmodell ab.
*
* <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
* <p>
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
* Gets the value of the rest 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 rest property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getRest().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
* {@link JAXBElement }{@code <}{@link Long }{@code >}
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
* *
* @return
* possible object is
* {@link String }
* *
*/ */
public String getSparte() { public List<JAXBElement<?>> getRest() {
return sparte; if (rest == null) {
rest = new ArrayList<JAXBElement<?>>();
} }
return this.rest;
/**
* Legt den Wert der sparte-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSparte(String value) {
this.sparte = value;
}
/**
* Ruft den Wert der versicherungssumme-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getVersicherungssumme() {
return versicherungssumme;
}
/**
* Legt den Wert der versicherungssumme-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setVersicherungssumme(BigInteger value) {
this.versicherungssumme = value;
}
/**
* Ruft den Wert der pauschalbetrag-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getPauschalbetrag() {
return pauschalbetrag;
}
/**
* Legt den Wert der pauschalbetrag-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setPauschalbetrag(BigInteger value) {
this.pauschalbetrag = value;
}
/**
* Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getProzentVersicherungssumme() {
return prozentVersicherungssumme;
}
/**
* Legt den Wert der prozentVersicherungssumme-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setProzentVersicherungssumme(Long value) {
this.prozentVersicherungssumme = 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;
}
/**
* Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUnterversicherungsverzicht() {
return unterversicherungsverzicht;
}
/**
* Legt den Wert der unterversicherungsverzicht-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUnterversicherungsverzicht(Boolean value) {
this.unterversicherungsverzicht = value;
}
/**
* Ruft den Wert der nebenkosten-Eigenschaft ab.
*
* @return
* possible object is
* {@link KostenFixOderProzentType }
*
*/
public KostenFixOderProzentType getNebenkosten() {
return nebenkosten;
}
/**
* Legt den Wert der nebenkosten-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link KostenFixOderProzentType }
*
*/
public void setNebenkosten(KostenFixOderProzentType value) {
this.nebenkosten = value;
}
/**
* Ruft den Wert der vorsorge-Eigenschaft ab.
*
* @return
* possible object is
* {@link KostenFixOderProzentType }
*
*/
public KostenFixOderProzentType getVorsorge() {
return vorsorge;
}
/**
* Legt den Wert der vorsorge-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link KostenFixOderProzentType }
*
*/
public void setVorsorge(KostenFixOderProzentType value) {
this.vorsorge = value;
}
/**
* Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getHoechsthaftungssumme() {
return hoechsthaftungssumme;
}
/**
* Legt den Wert der hoechsthaftungssumme-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setHoechsthaftungssumme(BigInteger value) {
this.hoechsthaftungssumme = value;
} }
} }

View File

@@ -1,10 +1,13 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat; package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat;
import java.math.BigInteger;
import javax.xml.bind.JAXBElement; import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry; import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName; import javax.xml.namespace.QName;
import at.vvo.omds.types.omds3Types.r1_5_0.common.KostenFixOderProzentType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
/** /**
@@ -34,6 +37,15 @@ public class ObjectFactory {
private final static QName _CreateApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatResponse"); private final static QName _CreateApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "CreateApplicationSachPrivatResponse");
private final static QName _SubmitApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatRequest"); private final static QName _SubmitApplicationSachPrivatRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatRequest");
private final static QName _SubmitApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatResponse"); private final static QName _SubmitApplicationSachPrivatResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "SubmitApplicationSachPrivatResponse");
private final static QName _GenElementarproduktHaushaltTypeSparte_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Sparte");
private final static QName _GenElementarproduktHaushaltTypeVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Versicherungssumme");
private final static QName _GenElementarproduktHaushaltTypePauschalbetrag_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Pauschalbetrag");
private final static QName _GenElementarproduktHaushaltTypeProzentVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "ProzentVersicherungssumme");
private final static QName _GenElementarproduktHaushaltTypeSelbstbehalt_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Selbstbehalt");
private final static QName _GenElementarproduktHaushaltTypeUnterversicherungsverzicht_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Unterversicherungsverzicht");
private final static QName _GenElementarproduktHaushaltTypeNebenkosten_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Nebenkosten");
private final static QName _GenElementarproduktHaushaltTypeVorsorge_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Vorsorge");
private final static QName _GenElementarproduktHaushaltTypeHoechsthaftungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", "Hoechsthaftungssumme");
/** /**
* 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.sachPrivat * 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.sachPrivat
@@ -332,4 +344,166 @@ public class ObjectFactory {
return new JAXBElement<SubmitApplicationSachPrivatResponseType>(_SubmitApplicationSachPrivatResponse_QNAME, SubmitApplicationSachPrivatResponseType.class, null, value); return new JAXBElement<SubmitApplicationSachPrivatResponseType>(_SubmitApplicationSachPrivatResponse_QNAME, SubmitApplicationSachPrivatResponseType.class, null, value);
} }
/**
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Sparte", scope = GenElementarproduktHaushaltType.class)
public JAXBElement<String> createGenElementarproduktHaushaltTypeSparte(String value) {
return new JAXBElement<String>(_GenElementarproduktHaushaltTypeSparte_QNAME, String.class, GenElementarproduktHaushaltType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Versicherungssumme", scope = GenElementarproduktHaushaltType.class)
public JAXBElement<BigInteger> createGenElementarproduktHaushaltTypeVersicherungssumme(BigInteger value) {
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypeVersicherungssumme_QNAME, BigInteger.class, GenElementarproduktHaushaltType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Pauschalbetrag", scope = GenElementarproduktHaushaltType.class)
public JAXBElement<BigInteger> createGenElementarproduktHaushaltTypePauschalbetrag(BigInteger value) {
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypePauschalbetrag_QNAME, BigInteger.class, GenElementarproduktHaushaltType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProzentVersicherungssumme", scope = GenElementarproduktHaushaltType.class)
public JAXBElement<Long> createGenElementarproduktHaushaltTypeProzentVersicherungssumme(Long value) {
return new JAXBElement<Long>(_GenElementarproduktHaushaltTypeProzentVersicherungssumme_QNAME, Long.class, GenElementarproduktHaushaltType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Selbstbehalt", scope = GenElementarproduktHaushaltType.class)
public JAXBElement<SelbstbehaltType> createGenElementarproduktHaushaltTypeSelbstbehalt(SelbstbehaltType value) {
return new JAXBElement<SelbstbehaltType>(_GenElementarproduktHaushaltTypeSelbstbehalt_QNAME, SelbstbehaltType.class, GenElementarproduktHaushaltType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Unterversicherungsverzicht", scope = GenElementarproduktHaushaltType.class)
public JAXBElement<Boolean> createGenElementarproduktHaushaltTypeUnterversicherungsverzicht(Boolean value) {
return new JAXBElement<Boolean>(_GenElementarproduktHaushaltTypeUnterversicherungsverzicht_QNAME, Boolean.class, GenElementarproduktHaushaltType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Nebenkosten", scope = GenElementarproduktHaushaltType.class)
public JAXBElement<KostenFixOderProzentType> createGenElementarproduktHaushaltTypeNebenkosten(KostenFixOderProzentType value) {
return new JAXBElement<KostenFixOderProzentType>(_GenElementarproduktHaushaltTypeNebenkosten_QNAME, KostenFixOderProzentType.class, GenElementarproduktHaushaltType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Vorsorge", scope = GenElementarproduktHaushaltType.class)
public JAXBElement<KostenFixOderProzentType> createGenElementarproduktHaushaltTypeVorsorge(KostenFixOderProzentType value) {
return new JAXBElement<KostenFixOderProzentType>(_GenElementarproduktHaushaltTypeVorsorge_QNAME, KostenFixOderProzentType.class, GenElementarproduktHaushaltType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Hoechsthaftungssumme", scope = GenElementarproduktHaushaltType.class)
public JAXBElement<BigInteger> createGenElementarproduktHaushaltTypeHoechsthaftungssumme(BigInteger value) {
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypeHoechsthaftungssumme_QNAME, BigInteger.class, GenElementarproduktHaushaltType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Sparte", scope = GenElementarproduktGebaeudeType.class)
public JAXBElement<String> createGenElementarproduktGebaeudeTypeSparte(String value) {
return new JAXBElement<String>(_GenElementarproduktHaushaltTypeSparte_QNAME, String.class, GenElementarproduktGebaeudeType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Pauschalbetrag", scope = GenElementarproduktGebaeudeType.class)
public JAXBElement<BigInteger> createGenElementarproduktGebaeudeTypePauschalbetrag(BigInteger value) {
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypePauschalbetrag_QNAME, BigInteger.class, GenElementarproduktGebaeudeType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Selbstbehalt", scope = GenElementarproduktGebaeudeType.class)
public JAXBElement<SelbstbehaltType> createGenElementarproduktGebaeudeTypeSelbstbehalt(SelbstbehaltType value) {
return new JAXBElement<SelbstbehaltType>(_GenElementarproduktHaushaltTypeSelbstbehalt_QNAME, SelbstbehaltType.class, GenElementarproduktGebaeudeType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Versicherungssumme", scope = GenElementarproduktGebaeudeType.class)
public JAXBElement<BigInteger> createGenElementarproduktGebaeudeTypeVersicherungssumme(BigInteger value) {
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypeVersicherungssumme_QNAME, BigInteger.class, GenElementarproduktGebaeudeType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Unterversicherungsverzicht", scope = GenElementarproduktGebaeudeType.class)
public JAXBElement<Boolean> createGenElementarproduktGebaeudeTypeUnterversicherungsverzicht(Boolean value) {
return new JAXBElement<Boolean>(_GenElementarproduktHaushaltTypeUnterversicherungsverzicht_QNAME, Boolean.class, GenElementarproduktGebaeudeType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "ProzentVersicherungssumme", scope = GenElementarproduktGebaeudeType.class)
public JAXBElement<Long> createGenElementarproduktGebaeudeTypeProzentVersicherungssumme(Long value) {
return new JAXBElement<Long>(_GenElementarproduktHaushaltTypeProzentVersicherungssumme_QNAME, Long.class, GenElementarproduktGebaeudeType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Nebenkosten", scope = GenElementarproduktGebaeudeType.class)
public JAXBElement<KostenFixOderProzentType> createGenElementarproduktGebaeudeTypeNebenkosten(KostenFixOderProzentType value) {
return new JAXBElement<KostenFixOderProzentType>(_GenElementarproduktHaushaltTypeNebenkosten_QNAME, KostenFixOderProzentType.class, GenElementarproduktGebaeudeType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Vorsorge", scope = GenElementarproduktGebaeudeType.class)
public JAXBElement<KostenFixOderProzentType> createGenElementarproduktGebaeudeTypeVorsorge(KostenFixOderProzentType value) {
return new JAXBElement<KostenFixOderProzentType>(_GenElementarproduktHaushaltTypeVorsorge_QNAME, KostenFixOderProzentType.class, GenElementarproduktGebaeudeType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", name = "Hoechsthaftungssumme", scope = GenElementarproduktGebaeudeType.class)
public JAXBElement<BigInteger> createGenElementarproduktGebaeudeTypeHoechsthaftungssumme(BigInteger value) {
return new JAXBElement<BigInteger>(_GenElementarproduktHaushaltTypeHoechsthaftungssumme_QNAME, BigInteger.class, GenElementarproduktGebaeudeType.class, value);
}
} }

View File

@@ -1,11 +1,11 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall; package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; 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.ElementarproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType; import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
@@ -22,8 +22,8 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Versicherungssumme" type="{urn:omds20}decimal"/&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&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;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -34,41 +34,17 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LeistungsartUnfall_Type", propOrder = { @XmlType(name = "LeistungsartUnfall_Type", propOrder = {
"versicherungssumme", "selbstbehalt",
"selbstbehalt" "bezugsberechtigung"
}) })
public class LeistungsartUnfallType public class LeistungsartUnfallType
extends ElementarproduktGenerischType extends ElementarproduktGenerischType
{ {
@XmlElement(name = "Versicherungssumme", required = true)
protected BigDecimal versicherungssumme;
@XmlElement(name = "Selbstbehalt") @XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt; protected SelbstbehaltType selbstbehalt;
@XmlElement(name = "Bezugsberechtigung")
/** protected BezugsberechtigungType bezugsberechtigung;
* 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;
}
/** /**
* Ruft den Wert der selbstbehalt-Eigenschaft ab. * Ruft den Wert der selbstbehalt-Eigenschaft ab.
@@ -94,4 +70,28 @@ public class LeistungsartUnfallType
this.selbstbehalt = 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

@@ -120,14 +120,6 @@ public class ObjectFactory {
return new LeistungsartUnfallType(); return new LeistungsartUnfallType();
} }
/**
* Create an instance of {@link DarstellungPraemieNachLeistungsartType }
*
*/
public DarstellungPraemieNachLeistungsartType createDarstellungPraemieNachLeistungsartType() {
return new DarstellungPraemieNachLeistungsartType();
}
/** /**
* Create an instance of {@link SpezBerechnungUnfallType } * Create an instance of {@link SpezBerechnungUnfallType }
* *

View File

@@ -8,6 +8,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; 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.VerkaufsproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertePersonType;
/** /**
@@ -23,7 +24,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.VerkaufsproduktGenerischType;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type"&gt;
* &lt;sequence&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="VersichertePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}VersichertePersonUnfall_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}DarstellungPraemieNachLeistungsart_Type" maxOccurs="unbounded" minOccurs="0"/&gt; * &lt;element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -35,7 +36,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.VerkaufsproduktGenerischType;
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VerkaufsproduktUnfall_Type", propOrder = { @XmlType(name = "VerkaufsproduktUnfall_Type", propOrder = {
"versichertePersonen", "versichertePersonen",
"leistungsarten" "personen"
}) })
public class VerkaufsproduktUnfallType public class VerkaufsproduktUnfallType
extends VerkaufsproduktGenerischType extends VerkaufsproduktGenerischType
@@ -43,8 +44,8 @@ public class VerkaufsproduktUnfallType
@XmlElement(name = "VersichertePersonen", required = true) @XmlElement(name = "VersichertePersonen", required = true)
protected List<VersichertePersonUnfallType> versichertePersonen; protected List<VersichertePersonUnfallType> versichertePersonen;
@XmlElement(name = "Leistungsarten") @XmlElement(name = "Personen", required = true)
protected List<DarstellungPraemieNachLeistungsartType> leistungsarten; protected List<VersichertePersonType> personen;
/** /**
* Gets the value of the versichertePersonen property. * Gets the value of the versichertePersonen property.
@@ -76,32 +77,32 @@ public class VerkaufsproduktUnfallType
} }
/** /**
* Gets the value of the leistungsarten property. * Gets the value of the personen property.
* *
* <p> * <p>
* This accessor method returns a reference to the live list, * This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the * not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object. * returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the leistungsarten property. * This is why there is not a <CODE>set</CODE> method for the personen property.
* *
* <p> * <p>
* For example, to add a new item, do as follows: * For example, to add a new item, do as follows:
* <pre> * <pre>
* getLeistungsarten().add(newItem); * getPersonen().add(newItem);
* </pre> * </pre>
* *
* *
* <p> * <p>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@link DarstellungPraemieNachLeistungsartType } * {@link VersichertePersonType }
* *
* *
*/ */
public List<DarstellungPraemieNachLeistungsartType> getLeistungsarten() { public List<VersichertePersonType> getPersonen() {
if (leistungsarten == null) { if (personen == null) {
leistungsarten = new ArrayList<DarstellungPraemieNachLeistungsartType>(); personen = new ArrayList<VersichertePersonType>();
} }
return this.leistungsarten; return this.personen;
} }
} }

View File

@@ -6,8 +6,8 @@ import java.util.List;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.PersonType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType; import at.vvo.omds.types.omds3Types.r1_5_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType; import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
@@ -24,7 +24,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Person" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/&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="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;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;/sequence&gt;
@@ -37,7 +37,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.SelbstbehaltType;
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VersichertePersonUnfall_Type", propOrder = { @XmlType(name = "VersichertePersonUnfall_Type", propOrder = {
"person", "personRefLfnr",
"selbstbehalt", "selbstbehalt",
"leistungsarten" "leistungsarten"
}) })
@@ -45,35 +45,28 @@ public class VersichertePersonUnfallType
extends ProduktGenerischType extends ProduktGenerischType
{ {
@XmlElement(name = "Person", required = true) @XmlElement(name = "PersonRefLfnr")
protected PersonType person; @XmlSchemaType(name = "unsignedShort")
protected int personRefLfnr;
@XmlElement(name = "Selbstbehalt") @XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt; protected SelbstbehaltType selbstbehalt;
@XmlElement(name = "Leistungsarten") @XmlElement(name = "Leistungsarten")
protected List<LeistungsartUnfallType> leistungsarten; protected List<LeistungsartUnfallType> leistungsarten;
/** /**
* Ruft den Wert der person-Eigenschaft ab. * Ruft den Wert der personRefLfnr-Eigenschaft ab.
*
* @return
* possible object is
* {@link PersonType }
* *
*/ */
public PersonType getPerson() { public int getPersonRefLfnr() {
return person; return personRefLfnr;
} }
/** /**
* Legt den Wert der person-Eigenschaft fest. * Legt den Wert der personRefLfnr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PersonType }
* *
*/ */
public void setPerson(PersonType value) { public void setPersonRefLfnr(int value) {
this.person = value; this.personRefLfnr = value;
} }
/** /**

View File

@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
protected ObjektIdType objektId; protected ObjektIdType objektId;
@XmlElementRefs({ @XmlElementRefs({
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class), @XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class), @XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", 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)
}) })
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung; protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
@XmlElement(name = "WirksamtkeitAb", required = true) @XmlElement(name = "WirksamtkeitAb", required = true)
@@ -115,8 +115,8 @@ public class ChangeCommunicationObjectRequestType
* *
* <p> * <p>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >} * {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >} * {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
* *
* *

View File

@@ -799,25 +799,6 @@
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<!-- <xsd:complexType name="VerkaufsproduktGenerisch_Type" abstract="true">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Basistyp für ein Produktbündel, 2. Generation</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:complexContent>-->
<!-- <xsd:extension base="ProduktbausteinGenerisch_Type">-->
<!-- <xsd:sequence>-->
<!-- <xsd:element name="Verkaufsproduktgeneration" type="xsd:string" minOccurs="0"/>-->
<!-- <xsd:element name="Berechnungsvariante" type="Berechnungsvariante_Type" minOccurs="0">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Ermöglicht eine Vorgabe für die Produktkonfiguration durch den Serviceprovider: von "basic = Basiskonfiguration" über "medium" bis "top" = vollumfänglich".</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- <xsd:element ref="omds:EL-Rahmenvereinbarung" minOccurs="0"/>-->
<!-- <xsd:element name="ZusaetzlicheVerkaufproduktdaten" type="ZusaetzlicheVerkaufproduktdaten_Type" minOccurs="0" maxOccurs="unbounded"/>-->
<!-- </xsd:sequence>-->
<!-- </xsd:extension>-->
<!-- </xsd:complexContent>-->
<!-- </xsd:complexType>-->
<xsd:complexType name="VerkaufsproduktGenerisch_Type" abstract="true"> <xsd:complexType name="VerkaufsproduktGenerisch_Type" abstract="true">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Basistyp für ein Produktbündel, 2. Generation</xsd:documentation> <xsd:documentation>Basistyp für ein Produktbündel, 2. Generation</xsd:documentation>
@@ -849,22 +830,6 @@
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<!-- <xsd:complexType name="ProduktGenerisch_Type" abstract="true">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Basistyp für ein Produkt, 2. Generation</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:complexContent>-->
<!-- <xsd:extension base="ProduktbausteinGenerisch_Type">-->
<!-- <xsd:sequence>-->
<!-- <xsd:element name="Produktgeneration" type="xsd:string"/>-->
<!-- <xsd:element name="Zahlweg" type="omds:ZahlWegCd_Type" minOccurs="0"/>-->
<!-- <xsd:element name="Zahlrhythmus" type="omds:ZahlRhythmCd_Type" minOccurs="0"/>-->
<!-- <xsd:element name="Hauptfaelligkeit" type="Hauptfaelligkeit_Type"/>-->
<!-- <xsd:element name="ZusaetzlicheProduktdaten" type="ZusaetzlicheProduktdaten_Type" minOccurs="0" maxOccurs="unbounded"/>-->
<!-- </xsd:sequence>-->
<!-- </xsd:extension>-->
<!-- </xsd:complexContent>-->
<!-- </xsd:complexType>-->
<xsd:complexType name="ProduktGenerisch_Type" abstract="true"> <xsd:complexType name="ProduktGenerisch_Type" abstract="true">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Basistyp für ein Produkt, 2. Generation</xsd:documentation> <xsd:documentation>Basistyp für ein Produkt, 2. Generation</xsd:documentation>
@@ -896,19 +861,6 @@
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<!-- <xsd:complexType name="ElementarproduktGenerisch_Type" abstract="true">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Basistyp für ein Elementarprodukt, 2. Generation</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- <xsd:complexContent>-->
<!-- <xsd:extension base="ProduktbausteinGenerisch_Type">-->
<!-- <xsd:sequence>-->
<!-- <xsd:element name="ZusaetzlicheElementarproduktdaten" type="ZusaetzlicheElementarproduktdaten_Type" minOccurs="0" maxOccurs="unbounded"/>-->
<!-- </xsd:sequence>-->
<!-- </xsd:extension>-->
<!-- </xsd:complexContent>-->
<!-- </xsd:complexType>-->
<xsd:complexType name="ElementarproduktGenerisch_Type" abstract="true"> <xsd:complexType name="ElementarproduktGenerisch_Type" abstract="true">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Basistyp für ein Elementarprodukt, 2. Generation</xsd:documentation> <xsd:documentation>Basistyp für ein Elementarprodukt, 2. Generation</xsd:documentation>
@@ -936,11 +888,11 @@
<xsd:documentation>Eine weitereführende Beschreibung des Bausteins für eine Anzeige.</xsd:documentation> <xsd:documentation>Eine weitereführende Beschreibung des Bausteins für eine Anzeige.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:element> </xsd:element>
<xsd:element name="Versicherungssumme" type="omds:decimal14_2" minOccurs="0"/>
</xsd:sequence> </xsd:sequence>
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="BeteiligtePersonVertrag_Type"> <xsd:complexType name="BeteiligtePersonVertrag_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind</xsd:documentation> <xsd:documentation>Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind</xsd:documentation>
@@ -1163,14 +1115,6 @@
<xsd:element ref="omds:PERSON"/> <xsd:element ref="omds:PERSON"/>
</xsd:sequence> </xsd:sequence>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="Bezugsrecht_Type">
<xsd:annotation>
<xsd:documentation>Type Bezugsrecht</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element ref="omds:PERSON"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Vinkularglaeubiger_Type"> <xsd:complexType name="Vinkularglaeubiger_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Typ zur Beschreibung einer Bank als Vinkulargläubiger</xsd:documentation> <xsd:documentation>Typ zur Beschreibung einer Bank als Vinkulargläubiger</xsd:documentation>
@@ -1210,6 +1154,62 @@
</xsd:element> </xsd:element>
</xsd:sequence> </xsd:sequence>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="Bezugsrecht_Type">
<xsd:annotation>
<xsd:documentation>Type Bezugsrecht fuer Kfz</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element ref="omds:PERSON"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Bezugsberechtigung_Type" abstract="true">
<xsd:annotation>
<xsd:documentation>Abstrakter Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell</xsd:documentation>
</xsd:annotation>
</xsd:complexType>
<xsd:complexType name="BezugsberechtigungGesetzlicheErben_Type">
<xsd:annotation>
<xsd:documentation>Bezugsberechtigung gesetzliche Erben</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="Bezugsberechtigung_Type">
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="BezugsberechtigungUeberbringer_Type">
<xsd:annotation>
<xsd:documentation>Bezugsberechtigung Überbringer</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="Bezugsberechtigung_Type">
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="BezugsberechtigungNamentlich">
<xsd:annotation>
<xsd:documentation>Bezugsberechtigung namentlich</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="Bezugsberechtigung_Type">
<xsd:sequence>
<xsd:element name="ReferenzPerson" type="xsd:unsignedShort"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="BezugsberechtigungIndividuell">
<xsd:annotation>
<xsd:documentation>Bezugsberechtigung Individuell</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="Bezugsberechtigung_Type">
<xsd:sequence>
<xsd:element name="Beschreibung" type="xsd:string"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<!-- Bonus Malus--> <!-- Bonus Malus-->
<xsd:complexType name="BonusMalusSystem_Type"> <xsd:complexType name="BonusMalusSystem_Type">
<xsd:annotation> <xsd:annotation>

View File

@@ -56,6 +56,9 @@
</xsd:complexType> </xsd:complexType>
<!-- Der Typ Vertragsrechtsschutz_Type ist ein Beispiel für einen normierten Untertyp. In dieser Form können auch VUs eigene Untertypen definieren --> <!-- Der Typ Vertragsrechtsschutz_Type ist ein Beispiel für einen normierten Untertyp. In dieser Form können auch VUs eigene Untertypen definieren -->
<xsd:simpleType name="OertlicherGeltungsbereichCd_Type"> <xsd:simpleType name="OertlicherGeltungsbereichCd_Type">
<xsd:annotation>
<xsd:documentation>Code für den örtlichen Geltungsbereichs</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:unsignedByte"> <xsd:restriction base="xsd:unsignedByte">
<xsd:enumeration value="1"> <xsd:enumeration value="1">
<xsd:annotation> <xsd:annotation>
@@ -136,7 +139,7 @@
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="CalculateRechtsschutzResponse_Type"> <xsd:complexType name="CalculateRechtsschutzResponse_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Typ des Responseobjekts für eine Rechtsschutz-Berechnung</xsd:documentation> <xsd:documentation>Typ des Responseobjekt bei der Rechtsschutz-Berechnung</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="ac:CalculateResponseGen_Type"> <xsd:extension base="ac:CalculateResponseGen_Type">
@@ -160,7 +163,7 @@
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="CreateOfferRechtsschutzResponse_Type"> <xsd:complexType name="CreateOfferRechtsschutzResponse_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Type des Responseobjekts für eine Erstellung eines Rechtsschutz-Offerts</xsd:documentation> <xsd:documentation>Type des Responseobjekts bei der Erstellung eines Rechtsschutz-Offerts</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="ac:CreateOfferResponseGen_Type"> <xsd:extension base="ac:CreateOfferResponseGen_Type">
@@ -184,7 +187,7 @@
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="CreateApplicationRechtsschutzResponse_Type"> <xsd:complexType name="CreateApplicationRechtsschutzResponse_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Type des Responseobjekts für die Erstellung eines Rechtsschutzantrags</xsd:documentation> <xsd:documentation>Type des Responseobjekts bei der Erstellung eines Rechtsschutzantrags</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="ac:CreateApplicationResponseGen_Type"> <xsd:extension base="ac:CreateApplicationResponseGen_Type">
@@ -208,7 +211,7 @@
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="SubmitApplicationRechtsschutzResponse_Type"> <xsd:complexType name="SubmitApplicationRechtsschutzResponse_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Type des Response, um den Antrag einzureichen</xsd:documentation> <xsd:documentation>Type des Response beim Eineichen des Antrags</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="ac:SubmitApplicationResponseGen_Type"> <xsd:extension base="ac:SubmitApplicationResponseGen_Type">
@@ -218,12 +221,44 @@
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:element name="CalculateRechtsschutzRequest" type="CalculateRechtsschutzRequest_Type"/> <xsd:element name="CalculateRechtsschutzRequest" type="CalculateRechtsschutzRequest_Type">
<xsd:element name="CalculateRechtsschutzResponse" type="CalculateRechtsschutzResponse_Type"/> <xsd:annotation>
<xsd:element name="CreateOfferRechtsschutzRequest" type="CreateOfferRechtsschutzRequest_Type"/> <xsd:documentation>Requestobjekt für eine Berechnung Rechtsschutz</xsd:documentation>
<xsd:element name="CreateOfferRechtsschutzResponse" type="CreateOfferRechtsschutzResponse_Type"/> </xsd:annotation>
<xsd:element name="CreateApplicationRechtsschutzRequest" type="CreateApplicationRechtsschutzRequest_Type"/> </xsd:element>
<xsd:element name="CreateApplicationRechtsschutzResponse" type="CreateApplicationRechtsschutzResponse_Type"/> <xsd:element name="CalculateRechtsschutzResponse" type="CalculateRechtsschutzResponse_Type">
<xsd:element name="SubmitApplicationRechtsschutzRequest" type="SubmitApplicationRechtsschutzResponse_Type"/> <xsd:annotation>
<xsd:element name="SubmitApplicationRechtsschutzResponse" type="SubmitApplicationRechtsschutzResponse_Type"/> <xsd:documentation>Responseobjekt bei der Rechtsschutz-Berechnung</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateOfferRechtsschutzRequest" type="CreateOfferRechtsschutzRequest_Type">
<xsd:annotation>
<xsd:documentation>Requestobjekt für eine Erstellung eines Rechstsschutz-Offerts</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateOfferRechtsschutzResponse" type="CreateOfferRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Responseobjekt bei der Erstellung eines Rechtsschutz-Offerts</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateApplicationRechtsschutzRequest" type="CreateApplicationRechtsschutzRequest_Type">
<xsd:annotation>
<xsd:documentation>Requestobjekt für die Erstellung eines Rechtsschutzantrags</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateApplicationRechtsschutzResponse" type="CreateApplicationRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Responseobjekt bei der Erstellung eines Rechtsschutzantrags</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SubmitApplicationRechtsschutzRequest" type="SubmitApplicationRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Requests, um den Antrag einzureichen</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SubmitApplicationRechtsschutzResponse" type="SubmitApplicationRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Response nach dem einreichen des Antrags</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:schema> </xsd:schema>

View File

@@ -414,10 +414,11 @@
<xsd:documentation>Einbruchdiebstahl</xsd:documentation> <xsd:documentation>Einbruchdiebstahl</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="EK"><!-- auf Anforderung Generali, keine OMDS 2 Sparte --> <xsd:enumeration value="EK">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Elektronik</xsd:documentation> <xsd:documentation>Elektronik</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<!-- auf Anforderung Generali, keine OMDS 2 Sparte -->
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="FE"> <xsd:enumeration value="FE">
<xsd:annotation> <xsd:annotation>

View File

@@ -11,9 +11,9 @@
<xsd:extension base="cst:VerkaufsproduktGenerisch_Type"> <xsd:extension base="cst:VerkaufsproduktGenerisch_Type">
<xsd:sequence> <xsd:sequence>
<xsd:element name="VersichertePersonen" type="VersichertePersonUnfall_Type" maxOccurs="unbounded"/> <xsd:element name="VersichertePersonen" type="VersichertePersonUnfall_Type" maxOccurs="unbounded"/>
<xsd:element name="Leistungsarten" type="DarstellungPraemieNachLeistungsart_Type" minOccurs="0" maxOccurs="unbounded"> <xsd:element name="Personen" type="cst:VersichertePerson_Type" minOccurs="1" maxOccurs="unbounded">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Element um Prämien Personen-übergreifend nach Leistungsarten darzustellen.</xsd:documentation> <xsd:documentation>Die Personendaten der versicherten Personen, die im Produktbaum referenziert werden.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:element> </xsd:element>
</xsd:sequence> </xsd:sequence>
@@ -27,9 +27,9 @@
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="cst:ProduktGenerisch_Type"> <xsd:extension base="cst:ProduktGenerisch_Type">
<xsd:sequence> <xsd:sequence>
<xsd:element name="Person" type="cst:Person_Type"> <xsd:element name="PersonRefLfnr" type="xsd:unsignedShort">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Die Person an sich</xsd:documentation> <xsd:documentation>Referenz auf die Versicherte Person</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:element> </xsd:element>
<xsd:element name="Selbstbehalt" type="cst:Selbstbehalt_Type" minOccurs="0"> <xsd:element name="Selbstbehalt" type="cst:Selbstbehalt_Type" minOccurs="0">
@@ -53,18 +53,12 @@
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="cst:ElementarproduktGenerisch_Type"> <xsd:extension base="cst:ElementarproduktGenerisch_Type">
<xsd:sequence> <xsd:sequence>
<xsd:element name="Versicherungssumme" type="omds:decimal"/>
<xsd:element name="Selbstbehalt" type="cst:Selbstbehalt_Type" minOccurs="0"/> <xsd:element name="Selbstbehalt" type="cst:Selbstbehalt_Type" minOccurs="0"/>
<xsd:element name="Bezugsberechtigung" type="cst:Bezugsberechtigung_Type" minOccurs="0"/>
</xsd:sequence> </xsd:sequence>
</xsd:extension> </xsd:extension>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="DarstellungPraemieNachLeistungsart_Type">
<xsd:sequence>
<xsd:element name="BezeichnungLeistungsart" type="xsd:string"/>
<xsd:element name="Praemie" type="cst:Praemie_Type"/>
</xsd:sequence>
</xsd:complexType>
<!-- Typen für die Schritte in BOA --> <!-- Typen für die Schritte in BOA -->
<xsd:complexType name="SpezBerechnungUnfall_Type"> <xsd:complexType name="SpezBerechnungUnfall_Type">
<xsd:annotation> <xsd:annotation>