Anforderung von Dokumenten, insb. von Versicherungsbestätigungen
This commit is contained in:
@@ -21,7 +21,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
* <sequence>
|
||||
* <element name="ZustimmungZurElektrUebermittlungVorvertraglDokumente" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* <element name="ElektrUebermittlungVorvertraglDokumenteEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="ZustimmungZurVerwendungDerDatenZuWerbezwecken" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="ZustimmungZurVerwendungDerDatenZuWerbezwecken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -43,7 +43,7 @@ public class DatenverwendungType {
|
||||
@XmlElement(name = "ElektrUebermittlungVorvertraglDokumenteEmail")
|
||||
protected String elektrUebermittlungVorvertraglDokumenteEmail;
|
||||
@XmlElement(name = "ZustimmungZurVerwendungDerDatenZuWerbezwecken")
|
||||
protected boolean zustimmungZurVerwendungDerDatenZuWerbezwecken;
|
||||
protected Boolean zustimmungZurVerwendungDerDatenZuWerbezwecken;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft ab.
|
||||
@@ -96,16 +96,24 @@ public class DatenverwendungType {
|
||||
/**
|
||||
* Ruft den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public boolean isZustimmungZurVerwendungDerDatenZuWerbezwecken() {
|
||||
public Boolean isZustimmungZurVerwendungDerDatenZuWerbezwecken() {
|
||||
return zustimmungZurVerwendungDerDatenZuWerbezwecken;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setZustimmungZurVerwendungDerDatenZuWerbezwecken(boolean value) {
|
||||
public void setZustimmungZurVerwendungDerDatenZuWerbezwecken(Boolean value) {
|
||||
this.zustimmungZurVerwendungDerDatenZuWerbezwecken = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -205,6 +205,14 @@ public class ObjectFactory {
|
||||
return new AutorisierungsartType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ProzessDokRequestType }
|
||||
*
|
||||
*/
|
||||
public ProzessDokRequestType createProzessDokRequestType() {
|
||||
return new ProzessDokRequestType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ProzessDokRequirementType }
|
||||
*
|
||||
|
||||
@@ -8,7 +8,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Bereitstellung Dokument für Kunde, nicht zu unterschreiben
|
||||
* Bereitstellung eines Dokuments durch die VU für den Kunden, nicht zu unterschreiben
|
||||
*
|
||||
* <p>Java-Klasse für ProzessDokHandout_Type complex type.
|
||||
*
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.common;
|
||||
|
||||
import jakarta.xml.bind.annotation.XmlAccessType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessorType;
|
||||
import jakarta.xml.bind.annotation.XmlAttribute;
|
||||
import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Anforderung eines Dokuments durch den Client
|
||||
*
|
||||
* <p>Java-Klasse für ProzessDokRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ProzessDokRequest_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="DokumentType" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ProzessDokRequest_Type")
|
||||
public class ProzessDokRequestType {
|
||||
|
||||
@XmlAttribute(name = "DokumentType", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String dokumentType;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der dokumentType-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDokumentType() {
|
||||
return dokumentType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der dokumentType-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDokumentType(String value) {
|
||||
this.dokumentType = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -10,7 +10,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Anforderung eines beizubringenden Dokuments
|
||||
* Anforderung der VU eines durch den Kunden beizubringenden Dokuments
|
||||
*
|
||||
* <p>Java-Klasse für ProzessDokRequirement_Type complex type.
|
||||
*
|
||||
|
||||
@@ -10,7 +10,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Bereitstellung Dokument zum Unterschreiben bzw. Ausfüllen
|
||||
* Bereitstellung eines Dokuments durch die VU zum Unterschreiben bzw. Ausfüllen durch den Kunden
|
||||
*
|
||||
* <p>Java-Klasse für ProzessDokToReturn_Type complex type.
|
||||
*
|
||||
|
||||
@@ -21,7 +21,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
|
||||
* <sequence>
|
||||
* <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
@@ -43,21 +43,29 @@ public abstract class CalculateRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "RequestUpselling", defaultValue = "false")
|
||||
protected boolean requestUpselling;
|
||||
protected Boolean requestUpselling;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der requestUpselling-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public boolean isRequestUpselling() {
|
||||
public Boolean isRequestUpselling() {
|
||||
return requestUpselling;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der requestUpselling-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setRequestUpselling(boolean value) {
|
||||
public void setRequestUpselling(Boolean value) {
|
||||
this.requestUpselling = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -4,6 +4,7 @@ package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.common.DateianhangType;
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokumentType;
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzRequestType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessType;
|
||||
@@ -25,6 +26,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
|
||||
* <sequence>
|
||||
* <element name="DokAnfordVermittler" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokRequest_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
@@ -37,6 +39,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateApplicationRequest_Type", propOrder = {
|
||||
"dokAnforderungenVermittler",
|
||||
"dateianhaenge",
|
||||
"dokumente"
|
||||
})
|
||||
@@ -48,11 +51,42 @@ public abstract class CreateApplicationRequestType
|
||||
extends BOAProcessRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "DokAnfordVermittler")
|
||||
protected List<ProzessDokRequestType> dokAnforderungenVermittler;
|
||||
@XmlElement(name = "Dateianhaenge")
|
||||
protected List<DateianhangType> dateianhaenge;
|
||||
@XmlElement(name = "Dokumente")
|
||||
protected List<ProzessDokumentType> dokumente;
|
||||
|
||||
/**
|
||||
* <p>Die Dokumente, welche der Vermittler anfordert.</p>Gets the value of the dokAnforderungenVermittler 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 dokAnforderungenVermittler property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDokAnforderungenVermittler().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ProzessDokRequestType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ProzessDokRequestType> getDokAnforderungenVermittler() {
|
||||
if (dokAnforderungenVermittler == null) {
|
||||
dokAnforderungenVermittler = new ArrayList<ProzessDokRequestType>();
|
||||
}
|
||||
return this.dokAnforderungenVermittler;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dateianhaenge property.
|
||||
*
|
||||
|
||||
@@ -1,9 +1,13 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.common.ProzessDokRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzRequestType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessorType;
|
||||
import jakarta.xml.bind.annotation.XmlElement;
|
||||
import jakarta.xml.bind.annotation.XmlSeeAlso;
|
||||
import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
@@ -19,6 +23,9 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
* <complexType name="CreateOfferRequest_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
|
||||
* <sequence>
|
||||
* <element name="DokAnfordVermittler" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokRequest_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
@@ -27,7 +34,9 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateOfferRequest_Type")
|
||||
@XmlType(name = "CreateOfferRequest_Type", propOrder = {
|
||||
"dokAnforderungenVermittler"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
CreateOfferKfzRequestType.class,
|
||||
CreateOfferRequestGenType.class
|
||||
@@ -36,5 +45,36 @@ public abstract class CreateOfferRequestType
|
||||
extends BOAProcessRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "DokAnfordVermittler")
|
||||
protected List<ProzessDokRequestType> dokAnforderungenVermittler;
|
||||
|
||||
/**
|
||||
* <p>Die Dokumente, welche der Vermittler anfordert.</p>Gets the value of the dokAnforderungenVermittler 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 dokAnforderungenVermittler property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDokAnforderungenVermittler().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ProzessDokRequestType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ProzessDokRequestType> getDokAnforderungenVermittler() {
|
||||
if (dokAnforderungenVermittler == null) {
|
||||
dokAnforderungenVermittler = new ArrayList<ProzessDokRequestType>();
|
||||
}
|
||||
return this.dokAnforderungenVermittler;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -11,6 +11,8 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Request für Product-Proposal
|
||||
*
|
||||
* <p>Java-Klasse für ProductProposalRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
|
||||
@@ -10,6 +10,8 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Response für Product-Proposal
|
||||
*
|
||||
* <p>Java-Klasse für ProductProposalResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
|
||||
@@ -7,6 +7,8 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Typ für Kontextinformationen im Product-Proposal-Request
|
||||
*
|
||||
* <p>Java-Klasse für ProposalContext_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
|
||||
@@ -49,7 +49,7 @@ public class ZusatzversicherungUnfallinvaliditaetType
|
||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
||||
* Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd
|
||||
* Zeile 1614 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd
|
||||
* Zeile 1620 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_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:
|
||||
|
||||
@@ -49,7 +49,7 @@ public class ZusatzversicherungUnfalltodType
|
||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
||||
* Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd
|
||||
* Zeile 1614 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd
|
||||
* Zeile 1620 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_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:
|
||||
|
||||
@@ -10,7 +10,7 @@ import jakarta.xml.ws.Service;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 4.0.3
|
||||
* 2024-04-16T09:32:14.926+02:00
|
||||
* 2024-04-24T12:48:35.622+02:00
|
||||
* Generated source version: 4.0.3
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -16,7 +16,7 @@ import jakarta.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 4.0.3
|
||||
* 2024-04-16T09:32:14.853+02:00
|
||||
* 2024-04-24T12:48:35.479+02:00
|
||||
* Generated source version: 4.0.3
|
||||
*
|
||||
*/
|
||||
@@ -39,7 +39,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation calculateLeben");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -55,7 +55,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation addDocToBusinessCase");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -71,7 +71,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation calculateRechtsschutz");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CalculateRechtsschutzResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CalculateRechtsschutzResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CalculateRechtsschutzResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -87,7 +87,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createApplicationKfz");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -103,7 +103,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation submitReceipt");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -119,7 +119,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createOfferKfz");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -135,7 +135,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation submitApplicationLeben");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -151,7 +151,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createOfferRechtsschutz");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CreateOfferRechtsschutzResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CreateOfferRechtsschutzResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CreateOfferRechtsschutzResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -167,7 +167,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation searchClaim");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -183,7 +183,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation getStateChanges");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -199,7 +199,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation submitClaim");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -215,7 +215,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation deepLinkOffer");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -231,7 +231,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createVB");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -247,7 +247,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation submitApplication");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -263,7 +263,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation getDocumentsOfPeriod");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -279,7 +279,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation productProposal");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ProductProposalResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ProductProposalResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ProductProposalResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -295,7 +295,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createApplicationUnfall");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -311,7 +311,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation calculateKranken");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -327,7 +327,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation checkClaim");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -343,7 +343,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation calculate");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -359,7 +359,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createApplicationLeben");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -375,7 +375,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createOfferUnfall");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -391,7 +391,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation getArcImageInfos");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -407,7 +407,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation getOMDSPackageList");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -423,7 +423,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createApplicationKranken");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -439,7 +439,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createApplication");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -455,7 +455,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation calculateSachPrivat");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -471,7 +471,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createApplicationRechtsschutz");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CreateApplicationRechtsschutzResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -487,7 +487,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation deepLinkPartner");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -503,7 +503,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation deepLinkPolicy");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -519,7 +519,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation getUserData");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -535,7 +535,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation deepLinkClaim");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -551,7 +551,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation checkCoverage");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -567,7 +567,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation submitApplicationKranken");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -583,7 +583,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation getNumberOfDocuments");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -599,7 +599,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation getOMDSPackage");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -615,7 +615,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createOffer");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -631,7 +631,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation calculateUnfall");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -647,7 +647,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation submitApplicationUnfall");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -663,7 +663,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation conversionProposal");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -679,7 +679,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation getDocumentsOfObject");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -695,7 +695,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation calculateKfz");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -711,7 +711,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createOfferKranken");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -727,7 +727,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createOfferSachPrivat");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -743,7 +743,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createApplicationSachPrivat");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -759,7 +759,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation conversionScope");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -775,7 +775,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation getClaim");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -791,7 +791,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation getArcImage");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -807,7 +807,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation addInformationToClaim");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -823,7 +823,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation submitApplicationRechtsschutz");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -839,7 +839,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation acknowledgeDocuments");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -855,7 +855,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation createOfferLeben");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -871,7 +871,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation login");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -887,7 +887,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation submitApplicationKfz");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -903,7 +903,7 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
LOG.info("Executing operation submitApplicationSachPrivat");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _return = null;
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _return = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType();
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
|
||||
@@ -9,7 +9,7 @@ import jakarta.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 4.0.3
|
||||
* 2024-04-16T09:32:14.909+02:00
|
||||
* 2024-04-24T12:48:35.608+02:00
|
||||
* Generated source version: 4.0.3
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -6,7 +6,7 @@ import jakarta.xml.ws.WebFault;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 4.0.3
|
||||
* 2024-04-16T09:32:14.797+02:00
|
||||
* 2024-04-24T12:48:35.436+02:00
|
||||
* Generated source version: 4.0.3
|
||||
*/
|
||||
|
||||
|
||||
@@ -26,6 +26,10 @@ Was ist neu oder anders in Version 1.11.0 im Vergleich zur Version 1.10.0?
|
||||
"javax" auf "jakarta"), entfernen Javaklassen älterer Versionen, da aufgrund der unveränderten
|
||||
Namespaces unterschiedliche Versionen derzeit ohnehin nicht in einer Applikation betrieben werden können.
|
||||
9. ZustimmungZurVerwendungDerDatenZuWerbezwecken ist jetzt optional, dann ist die Frage unbeantwortet.
|
||||
10. RequestUpselling ist künftig optional und deprecated
|
||||
11. Neue Möglichkeit optionale Dokumente im Request von CreateOffer und CreateApplication anzufordern, insbesondere
|
||||
Dokumente, die auf ein Fahrzeug bezogen sind.
|
||||
12. Personen in Calculate als Deprecated markiert.
|
||||
|
||||
==============
|
||||
Version 1.10.0
|
||||
|
||||
@@ -0,0 +1,88 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<kfz:CreateOfferKfzRequest
|
||||
xmlns="urn:omds3CommonServiceTypes-1-1-0"
|
||||
xmlns:cst="urn:omds3CommonServiceTypes-1-1-0"
|
||||
xmlns:kfz="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz"
|
||||
xmlns:kfzerw="http://boa.example.com/kfz"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common"
|
||||
xmlns:omds="urn:omds20"
|
||||
xsi:schemaLocation="
|
||||
urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz ../../omds3_ON2_Antrag_Kfz.xsd
|
||||
urn:omds3CommonServiceTypes-1-1-0 ../../omds3CommonServiceTypes.xsd
|
||||
urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common ../../omds3_ON2_Antrag_Common.xsd
|
||||
urn:omds20 ../../omds216-00.xsd
|
||||
http://boa.example.com/kfz KfzExtension.xsd
|
||||
">
|
||||
<VUNr>23</VUNr>
|
||||
<KorrelationsId>1000010011</KorrelationsId>
|
||||
<ac:DokAnfordVermittler cst:DokumentType="49" /><!-- Vermittler fordert ein optionales Dokument an (49 = Obliegenheiten) -->
|
||||
<ac:DokAnfordVermittler xsi:type="kfzerw:DokAnfordVersicherungsbestaetigung_Type">
|
||||
<kfz:FahrzeugRefLfdNr>1</kfz:FahrzeugRefLfdNr>
|
||||
<kfzerw:VorlaeufigeDeckung>false</kfzerw:VorlaeufigeDeckung>
|
||||
</ac:DokAnfordVermittler><!-- Versicherungsbestätigung ohne vorläufige Deckung -->
|
||||
<kfz:Offertanfrage>
|
||||
<ac:Personen>
|
||||
<Lfnr>1</Lfnr>
|
||||
<Person cst:PersArtCd="N" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0">
|
||||
<omds:NATUERLICHE_PERSON Familienname="Muster" Vorname="Thomas"/>
|
||||
</Person>
|
||||
</ac:Personen>
|
||||
<ac:Versicherungsnehmer>1</ac:Versicherungsnehmer>
|
||||
<kfz:Verkaufsprodukt xsi:type="kfz:VerkaufsproduktKfz_Type">
|
||||
<Id>100-200-1</Id>
|
||||
<Bezeichnung>Privat Bündel</Bezeichnung>
|
||||
|
||||
<VtgBeg>2022-05-01</VtgBeg>
|
||||
<Hauptfaelligkeit>--05-01</Hauptfaelligkeit>
|
||||
|
||||
<kfz:KfzVersicherung xsi:type="kfz:ProduktKfz_Type">
|
||||
|
||||
<kfz:Haftpflicht>
|
||||
<kfz:Art>AH</kfz:Art>
|
||||
<omds:EL-Versicherungssumme VSArtCd="BDS" VSBetrag="100000000.00"/>
|
||||
<kfz:VarianteLeihwagen>VB</kfz:VarianteLeihwagen>
|
||||
<omds:EL-Einstufung EstArtCd="G" EstWert="3"/>
|
||||
</kfz:Haftpflicht>
|
||||
<kfz:Teilkasko>
|
||||
<kfz:FahrzeugRefLfdNr>2</kfz:FahrzeugRefLfdNr>
|
||||
<kfz:Art>AK</kfz:Art>
|
||||
<kfz:VorsteuerAbzugBerechtigung>true</kfz:VorsteuerAbzugBerechtigung>
|
||||
<kfz:Vandalismusklausel>false</kfz:Vandalismusklausel>
|
||||
</kfz:Teilkasko>
|
||||
|
||||
<!-- Neue Modellierung: Kaskoelemente vom Typ Teilkasko und Vollkasko können gleichzeitig in KfzVersicherung existieren,
|
||||
Plausibilitäten müssen zur Laufzeit geprueft werden -->
|
||||
<kfz:Kasko xsi:type="kfz:TeilkaskoKfz_Type">
|
||||
<kfz:FahrzeugRefLfdNr>2</kfz:FahrzeugRefLfdNr>
|
||||
<kfz:Art>AK</kfz:Art>
|
||||
<kfz:VorsteuerAbzugBerechtigung>true</kfz:VorsteuerAbzugBerechtigung>
|
||||
<kfz:Vandalismusklausel>false</kfz:Vandalismusklausel>
|
||||
</kfz:Kasko>
|
||||
<kfz:Kasko xsi:type="kfz:VollkaskoKfz_Type">
|
||||
<kfz:FahrzeugRefLfdNr>1</kfz:FahrzeugRefLfdNr>
|
||||
<kfz:Art>AK</kfz:Art>
|
||||
<kfz:VorsteuerAbzugBerechtigung>true</kfz:VorsteuerAbzugBerechtigung>
|
||||
</kfz:Kasko>
|
||||
<kfz:Insassenunfall>
|
||||
<kfz:FahrzeugRefLfdNr>1</kfz:FahrzeugRefLfdNr>
|
||||
<kfz:InsassenUnfallSystem>Aufsassenunfallversicherung</kfz:InsassenUnfallSystem>
|
||||
</kfz:Insassenunfall>
|
||||
<kfz:Insassenunfall>
|
||||
<kfz:FahrzeugRefLfdNr>2</kfz:FahrzeugRefLfdNr>
|
||||
<kfz:InsassenUnfallSystem>Aufsassenunfallversicherung</kfz:InsassenUnfallSystem>
|
||||
</kfz:Insassenunfall>
|
||||
|
||||
</kfz:KfzVersicherung>
|
||||
<!-- Intellij hat Probleme mit der Validierung dieser VersicherteFahrzeuge-Tags, XMLSPY validiert sie -->
|
||||
<kfz:VersicherteFahrzeuge cst:Lfnr="1" cst:Marke="BMW">
|
||||
|
||||
</kfz:VersicherteFahrzeuge>
|
||||
<kfz:VersicherteFahrzeuge cst:Lfnr="2" cst:Marke="VW">
|
||||
|
||||
</kfz:VersicherteFahrzeuge>
|
||||
</kfz:Verkaufsprodukt>
|
||||
|
||||
</kfz:Offertanfrage>
|
||||
|
||||
</kfz:CreateOfferKfzRequest>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xsd:schema xmlns="http://boa.example.com/kfz" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:kfz="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" targetNamespace="http://boa.example.com/kfz" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.11.0" xsi:schemaLocation="urn:omds3CommonServiceTypes-1-1-0 ../../omds3CommonServiceTypes.xsd">
|
||||
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="../../omds3CommonServiceTypes.xsd"/>
|
||||
<xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz" schemaLocation="../../omds3_ON2_Antrag_Kfz.xsd"/>
|
||||
<!--
|
||||
Beispiele für die Nutzung von TarifId_Type für die Kennzeichnung der Produktbausteine. Daneben können
|
||||
auch andere Wege bestritten werden, z.B. Ableitung eigener Produktbausteine von den Standardbausteinen mittels
|
||||
Vererbung
|
||||
-->
|
||||
<xsd:complexType name="DokAnfordVersicherungsbestaetigung_Type">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="kfz:DokAnfordFahrzeug_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="VorlaeufigeDeckung" type="xsd:boolean">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Vorläufige Deckung gewünscht? Ja / Nein</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
@@ -1031,6 +1031,12 @@
|
||||
<xsd:extension base="xsd:string"/>
|
||||
</xsd:simpleContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProzessDokRequest_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Anforderung eines Dokuments durch den Client</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:attribute name="DokumentType" type="xsd:string" use="optional"/>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProzessDokumentBasis_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Basistyp für Bereitstellung und Anforderung von Dokumenten</xsd:documentation>
|
||||
@@ -1038,7 +1044,7 @@
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Dokumenttyp" type="xsd:string">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Der fachliche Typ des Dokuments. Alle Integer-Werte sind dem OMDS Standard vorbehalten und folgen dem DocumentType. Andere Codes für Dokumententypen können vom Serviceprovider frei gewählt werden.</xsd:documentation>
|
||||
<xsd:documentation>Der fachliche Typ des Dokuments. Alle Integer-Werte sind dem OMDS Standard vorbehalten und folgen dem cst:DocumentType. Andere Codes für Dokumententypen können vom Serviceprovider frei gewählt werden.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Beschreibung" minOccurs="0">
|
||||
@@ -1055,7 +1061,7 @@
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProzessDokRequirement_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Anforderung eines beizubringenden Dokuments</xsd:documentation>
|
||||
<xsd:documentation>Anforderung der VU eines durch den Kunden beizubringenden Dokuments</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ProzessDokumentBasis_Type">
|
||||
@@ -1092,7 +1098,7 @@
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProzessDokToReturn_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Bereitstellung Dokument zum Unterschreiben bzw. Ausfüllen</xsd:documentation>
|
||||
<xsd:documentation>Bereitstellung eines Dokuments durch die VU zum Unterschreiben bzw. Ausfüllen durch den Kunden</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ProzessDokumentBasis_Type">
|
||||
@@ -1134,7 +1140,7 @@
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProzessDokHandout_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Bereitstellung Dokument für Kunde, nicht zu unterschreiben</xsd:documentation>
|
||||
<xsd:documentation>Bereitstellung eines Dokuments durch die VU für den Kunden, nicht zu unterschreiben</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ProzessDokumentBasis_Type">
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Personen" type="cst:BeteiligtePersonVertrag_Type" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Liste aller benötigten Personen, welche dann über ihre Rolle direkt referenziert werden. Im Offert ist dies insb. der Versicherungsnehmer.</xsd:documentation>
|
||||
<xsd:documentation>Deprecated: Liste aller benötigten Personen, welche dann über ihre Rolle referenziert werden. In der Berechnung ist dies nicht mehr vorgesehen.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
@@ -200,7 +200,7 @@
|
||||
</xsd:element>
|
||||
<xsd:element name="Ersatzpolizzen" type="cst:Ersatzpolizze_Type" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Polizzennummern, die im Rahmen einer Konvertierung, einem Fahrzeugwechsel o.Ä. abgelöst werden sollen.</xsd:documentation>
|
||||
<xsd:documentation>Polizzennummern beim gleichen Versicherer, die im Rahmen einer Konvertierung, einem Fahrzeugwechsel o.Ä. abgelöst werden sollen.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
@@ -277,9 +277,9 @@
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="BOAProcessRequest_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="RequestUpselling" type="xsd:boolean" default="false">
|
||||
<xsd:element name="RequestUpselling" type="xsd:boolean" default="false" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Sollen Upselling-Vorschläge mitberechnet werden? Wenn ja kann dies zu einer längeren Berechnungsdauer führen.</xsd:documentation>
|
||||
<xsd:documentation>Deprecated, es kommt ein neuer Service ProductPropsal, welcher diese Rolle übernimmt. Sollen Upselling-Vorschläge mitberechnet werden? Wenn ja kann dies zu einer längeren Berechnungsdauer führen.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
@@ -299,7 +299,11 @@
|
||||
<xsd:documentation>Abstrakter Request für das Offert</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="BOAProcessRequest_Type"/>
|
||||
<xsd:extension base="BOAProcessRequest_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="DokAnfordVermittler" type="cst:ProzessDokRequest_Type" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="CreateOfferResponse_Type" abstract="true">
|
||||
@@ -330,6 +334,7 @@
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="BOAProcessRequest_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="DokAnfordVermittler" type="cst:ProzessDokRequest_Type" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="Dateianhaenge" type="cst:Dateianhang_Type" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Deprecated: Verwende künftig Dokumente.</xsd:documentation>
|
||||
|
||||
@@ -439,6 +439,18 @@
|
||||
<xsd:documentation>Responseobjekt fuer die Antragseinreichung Kfz</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:complexType name="DokAnfordFahrzeug_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Dokumentenanforderung des Vermittlers bezogen auf ein Fahrzeug</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:ProzessDokRequest_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element ref="FahrzeugRefLfdNr"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:element name="FahrzeugRefLfdNr" type="xsd:string">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Referenziert auf ein versichertes Fahrzeug über die laufende Nummer innerhalb eines Elementarprodukts.</xsd:documentation>
|
||||
|
||||
@@ -89,6 +89,18 @@
|
||||
<jaxb:javadoc><![CDATA[<p>Die Liste der Verträge, die in der Konvertierungsanforderung behandelt werden.</p>]]></jaxb:javadoc>
|
||||
</jaxb:property>
|
||||
</jaxb:bindings>
|
||||
|
||||
<jaxb:bindings node="//xs:complexType[@name='CreateOfferRequest_Type']//xs:element[@name='DokAnfordVermittler']">
|
||||
<jaxb:property name="dokumentenAnforderungenVermittler">
|
||||
<jaxb:javadoc><![CDATA[<p>Die Dokumente, welche der Vermittler für den Response anfordert.</p>]]></jaxb:javadoc>
|
||||
</jaxb:property>
|
||||
</jaxb:bindings>
|
||||
<jaxb:bindings node="//xs:complexType[@name='CreateApplicationRequest_Type']//xs:element[@name='DokAnfordVermittler']">
|
||||
<jaxb:property name="dokumentenAnforderungenVermittler">
|
||||
<jaxb:javadoc><![CDATA[<p>Die Dokumente, welche der Vermittler für den Response anfordert.</p>]]></jaxb:javadoc>
|
||||
</jaxb:property>
|
||||
</jaxb:bindings>
|
||||
|
||||
</jaxb:bindings>
|
||||
|
||||
<!-- Antrag Kfz -->
|
||||
|
||||
Reference in New Issue
Block a user