|
|
|
|
@@ -6,13 +6,13 @@ import java.util.List;
|
|
|
|
|
import jakarta.xml.bind.annotation.XmlAccessType;
|
|
|
|
|
import jakarta.xml.bind.annotation.XmlAccessorType;
|
|
|
|
|
import jakarta.xml.bind.annotation.XmlElement;
|
|
|
|
|
import jakarta.xml.bind.annotation.XmlSchemaType;
|
|
|
|
|
import jakarta.xml.bind.annotation.XmlSeeAlso;
|
|
|
|
|
import jakarta.xml.bind.annotation.XmlType;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gemeinsame Details zu einer Vorversicherung. Dieser Typ wird erweitert von Vorversicherung_Type
|
|
|
|
|
* und ist der Typ von VorversicherungRechtschutz und VorversicherungKfz in Kfz
|
|
|
|
|
* Gemeinsame Details zu einer Vorversicherung. Dieser Typ wird erweitert von Vorversicherung_Type und ist der Typ von VorversicherungRechtschutz und VorversicherungKfz in Kfz
|
|
|
|
|
*
|
|
|
|
|
* <p>Java-Klasse für VorversicherungenDetail_Type complex type.
|
|
|
|
|
*
|
|
|
|
|
@@ -38,6 +38,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
|
|
|
|
* </element>
|
|
|
|
|
* <element name="AuslaendischeVersicherungsgesellschaft" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
|
|
|
|
* <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
|
|
|
|
|
* <element name="VersInteresseRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
|
|
|
|
|
* <element name="ZusaetzlicheVorversicherungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVorversicherungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
|
|
|
* </sequence>
|
|
|
|
|
* </restriction>
|
|
|
|
|
@@ -53,6 +54,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
|
|
|
|
"aufloesungsgrund",
|
|
|
|
|
"auslaendischeVersicherungsgesellschaft",
|
|
|
|
|
"versicherungsgesellschaft",
|
|
|
|
|
"versInteresseRefLfnr",
|
|
|
|
|
"zusaetzlicheVorversicherungsdaten"
|
|
|
|
|
})
|
|
|
|
|
@XmlSeeAlso({
|
|
|
|
|
@@ -69,6 +71,9 @@ public class VorversicherungenDetailType {
|
|
|
|
|
protected Boolean auslaendischeVersicherungsgesellschaft;
|
|
|
|
|
@XmlElement(name = "Versicherungsgesellschaft", required = true)
|
|
|
|
|
protected String versicherungsgesellschaft;
|
|
|
|
|
@XmlElement(name = "VersInteresseRefLfnr", type = Integer.class)
|
|
|
|
|
@XmlSchemaType(name = "unsignedShort")
|
|
|
|
|
protected List<Integer> versInteresseRefLfnr;
|
|
|
|
|
@XmlElement(name = "ZusaetzlicheVorversicherungsdaten")
|
|
|
|
|
protected List<ZusaetzlicheVorversicherungsdatenType> zusaetzlicheVorversicherungsdaten;
|
|
|
|
|
|
|
|
|
|
@@ -160,13 +165,42 @@ public class VorversicherungenDetailType {
|
|
|
|
|
this.versicherungsgesellschaft = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the value of the versInteresseRefLfnr 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 Jakarta XML Binding object.
|
|
|
|
|
* This is why there is not a <CODE>set</CODE> method for the versInteresseRefLfnr property.
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* For example, to add a new item, do as follows:
|
|
|
|
|
* <pre>
|
|
|
|
|
* getVersInteresseRefLfnr().add(newItem);
|
|
|
|
|
* </pre>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* Objects of the following type(s) are allowed in the list
|
|
|
|
|
* {@link Integer }
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public List<Integer> getVersInteresseRefLfnr() {
|
|
|
|
|
if (versInteresseRefLfnr == null) {
|
|
|
|
|
versInteresseRefLfnr = new ArrayList<Integer>();
|
|
|
|
|
}
|
|
|
|
|
return this.versInteresseRefLfnr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the value of the zusaetzlicheVorversicherungsdaten 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.
|
|
|
|
|
* returned list will be present inside the Jakarta XML Binding object.
|
|
|
|
|
* This is why there is not a <CODE>set</CODE> method for the zusaetzlicheVorversicherungsdaten property.
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
|