Beispiel für ProductProposal in der Sparte Kranken erstellt.
This commit is contained in:
@@ -39,7 +39,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateApplicationRequest_Type", propOrder = {
|
||||
"dokAnforderungenVermittler",
|
||||
"dokumentenAnforderungenVermittler",
|
||||
"dateianhaenge",
|
||||
"dokumente"
|
||||
})
|
||||
@@ -52,25 +52,25 @@ public abstract class CreateApplicationRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "DokAnfordVermittler")
|
||||
protected List<ProzessDokRequestType> dokAnforderungenVermittler;
|
||||
protected List<ProzessDokRequestType> dokumentenAnforderungenVermittler;
|
||||
@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>Die Dokumente, welche der Vermittler für den Response anfordert.</p>Gets the value of the dokumentenAnforderungenVermittler 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.
|
||||
* This is why there is not a <CODE>set</CODE> method for the dokumentenAnforderungenVermittler property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDokAnforderungenVermittler().add(newItem);
|
||||
* getDokumentenAnforderungenVermittler().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
@@ -80,11 +80,11 @@ public abstract class CreateApplicationRequestType
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ProzessDokRequestType> getDokAnforderungenVermittler() {
|
||||
if (dokAnforderungenVermittler == null) {
|
||||
dokAnforderungenVermittler = new ArrayList<ProzessDokRequestType>();
|
||||
public List<ProzessDokRequestType> getDokumentenAnforderungenVermittler() {
|
||||
if (dokumentenAnforderungenVermittler == null) {
|
||||
dokumentenAnforderungenVermittler = new ArrayList<ProzessDokRequestType>();
|
||||
}
|
||||
return this.dokAnforderungenVermittler;
|
||||
return this.dokumentenAnforderungenVermittler;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -35,7 +35,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateOfferRequest_Type", propOrder = {
|
||||
"dokAnforderungenVermittler"
|
||||
"dokumentenAnforderungenVermittler"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
CreateOfferKfzRequestType.class,
|
||||
@@ -46,21 +46,21 @@ public abstract class CreateOfferRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "DokAnfordVermittler")
|
||||
protected List<ProzessDokRequestType> dokAnforderungenVermittler;
|
||||
protected List<ProzessDokRequestType> dokumentenAnforderungenVermittler;
|
||||
|
||||
/**
|
||||
* <p>Die Dokumente, welche der Vermittler anfordert.</p>Gets the value of the dokAnforderungenVermittler property.
|
||||
* <p>Die Dokumente, welche der Vermittler für den Response anfordert.</p>Gets the value of the dokumentenAnforderungenVermittler 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.
|
||||
* This is why there is not a <CODE>set</CODE> method for the dokumentenAnforderungenVermittler property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDokAnforderungenVermittler().add(newItem);
|
||||
* getDokumentenAnforderungenVermittler().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
@@ -70,11 +70,11 @@ public abstract class CreateOfferRequestType
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ProzessDokRequestType> getDokAnforderungenVermittler() {
|
||||
if (dokAnforderungenVermittler == null) {
|
||||
dokAnforderungenVermittler = new ArrayList<ProzessDokRequestType>();
|
||||
public List<ProzessDokRequestType> getDokumentenAnforderungenVermittler() {
|
||||
if (dokumentenAnforderungenVermittler == null) {
|
||||
dokumentenAnforderungenVermittler = new ArrayList<ProzessDokRequestType>();
|
||||
}
|
||||
return this.dokAnforderungenVermittler;
|
||||
return this.dokumentenAnforderungenVermittler;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
|
||||
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.CommonResponseType;
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.common.VerkaufsproduktType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessType;
|
||||
@@ -21,7 +23,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||
* <sequence>
|
||||
* <element name="Verkaufsprodukt" type="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"/>
|
||||
* <element name="Verkaufsprodukt" type="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
@@ -39,30 +41,35 @@ public class ProductProposalResponseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||
protected VerkaufsproduktType verkaufsprodukt;
|
||||
protected List<VerkaufsproduktType> verkaufsprodukt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||
* Gets the value of the verkaufsprodukt property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* <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 verkaufsprodukt property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getVerkaufsprodukt().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link VerkaufsproduktType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public VerkaufsproduktType getVerkaufsprodukt() {
|
||||
return verkaufsprodukt;
|
||||
public List<VerkaufsproduktType> getVerkaufsprodukt() {
|
||||
if (verkaufsprodukt == null) {
|
||||
verkaufsprodukt = new ArrayList<VerkaufsproduktType>();
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link VerkaufsproduktType }
|
||||
*
|
||||
*/
|
||||
public void setVerkaufsprodukt(VerkaufsproduktType value) {
|
||||
this.verkaufsprodukt = value;
|
||||
return this.verkaufsprodukt;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@ import at.vvo.omds.types.omds3Types.r1_11_0.common.ElementarproduktType;
|
||||
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;
|
||||
|
||||
@@ -48,7 +49,8 @@ public abstract class ElementarproduktKfzType
|
||||
{
|
||||
|
||||
@XmlElement(name = "FahrzeugRefLfdNr")
|
||||
protected String fahrzeugRefLfdNr;
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer fahrzeugRefLfdNr;
|
||||
@XmlElement(name = "LeasingVerbundUnternehmen")
|
||||
protected Boolean leasingVerbundUnternehmen;
|
||||
|
||||
@@ -57,10 +59,10 @@ public abstract class ElementarproduktKfzType
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public String getFahrzeugRefLfdNr() {
|
||||
public Integer getFahrzeugRefLfdNr() {
|
||||
return fahrzeugRefLfdNr;
|
||||
}
|
||||
|
||||
@@ -69,10 +71,10 @@ public abstract class ElementarproduktKfzType
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setFahrzeugRefLfdNr(String value) {
|
||||
public void setFahrzeugRefLfdNr(Integer value) {
|
||||
this.fahrzeugRefLfdNr = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -394,16 +394,16 @@ public class ObjectFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}
|
||||
*
|
||||
* @param value
|
||||
* Java instance representing xml element's value.
|
||||
* @return
|
||||
* the new instance of {@link JAXBElement }{@code <}{@link String }{@code >}
|
||||
* the new instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "FahrzeugRefLfdNr")
|
||||
public JAXBElement<String> createFahrzeugRefLfdNr(String value) {
|
||||
return new JAXBElement<String>(_FahrzeugRefLfdNr_QNAME, String.class, null, value);
|
||||
public JAXBElement<Integer> createFahrzeugRefLfdNr(Integer value) {
|
||||
return new JAXBElement<Integer>(_FahrzeugRefLfdNr_QNAME, Integer.class, null, value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@ import at.vvo.omds.types.omds3Types.r1_11_0.common.ProduktType;
|
||||
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;
|
||||
|
||||
@@ -42,17 +43,18 @@ public abstract class ZusatzproduktKfzType
|
||||
{
|
||||
|
||||
@XmlElement(name = "FahrzeugRefLfdNr")
|
||||
protected String fahrzeugRefLfdNr;
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer fahrzeugRefLfdNr;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public String getFahrzeugRefLfdNr() {
|
||||
public Integer getFahrzeugRefLfdNr() {
|
||||
return fahrzeugRefLfdNr;
|
||||
}
|
||||
|
||||
@@ -61,10 +63,10 @@ public abstract class ZusatzproduktKfzType
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setFahrzeugRefLfdNr(String value) {
|
||||
public void setFahrzeugRefLfdNr(Integer value) {
|
||||
this.fahrzeugRefLfdNr = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -48,8 +48,8 @@ public class ZusatzversicherungUnfallinvaliditaetType
|
||||
* <p>
|
||||
* 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 1620 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd
|
||||
* Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd
|
||||
* Zeile 1620 von file:/C:/Users/jensb/git/omdsservicedefinitions_develop/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:
|
||||
|
||||
@@ -48,8 +48,8 @@ public class ZusatzversicherungUnfalltodType
|
||||
* <p>
|
||||
* 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 1620 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd
|
||||
* Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd
|
||||
* Zeile 1620 von file:/C:/Users/jensb/git/omdsservicedefinitions_develop/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,12 +10,12 @@ import jakarta.xml.ws.Service;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 4.0.3
|
||||
* 2024-04-24T12:48:35.622+02:00
|
||||
* 2024-05-01T13:46:27.655+02:00
|
||||
* Generated source version: 4.0.3
|
||||
*
|
||||
*/
|
||||
@WebServiceClient(name = "omdsService",
|
||||
wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl",
|
||||
wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl",
|
||||
targetNamespace = "urn:omds3Services-1-4-0")
|
||||
public class OmdsService extends Service {
|
||||
|
||||
@@ -26,11 +26,11 @@ public class OmdsService extends Service {
|
||||
static {
|
||||
URL url = null;
|
||||
try {
|
||||
url = new URL("file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl");
|
||||
url = new URL("file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl");
|
||||
} catch (MalformedURLException e) {
|
||||
java.util.logging.Logger.getLogger(OmdsService.class.getName())
|
||||
.log(java.util.logging.Level.INFO,
|
||||
"Can not initialize the default wsdl from {0}", "file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl");
|
||||
"Can not initialize the default wsdl from {0}", "file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl");
|
||||
}
|
||||
WSDL_LOCATION = url;
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ import jakarta.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 4.0.3
|
||||
* 2024-04-24T12:48:35.479+02:00
|
||||
* 2024-05-01T13:46:27.603+02:00
|
||||
* Generated source version: 4.0.3
|
||||
*
|
||||
*/
|
||||
@@ -25,7 +25,7 @@ import jakarta.xml.bind.annotation.XmlSeeAlso;
|
||||
serviceName = "omdsService",
|
||||
portName = "omdsServicePort",
|
||||
targetNamespace = "urn:omds3Services-1-4-0",
|
||||
wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl",
|
||||
wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions_develop/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3Services.wsdl",
|
||||
endpointInterface = "at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType")
|
||||
|
||||
public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
@@ -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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CalculateLebenResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AddDocToBusinessCaseResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CalculateRechtsschutzResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CalculateRechtsschutzResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateApplicationKfzResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitReceiptResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateOfferKfzResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.SubmitApplicationLebenResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CreateOfferRechtsschutzResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CreateOfferRechtsschutzResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SearchClaimResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetStateChangesResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.SubmitClaimResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ProductProposalResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ProductProposalResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUnfallResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CalculateKrankenResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageInfosResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageListResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CreateApplicationRechtsschutzResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.UserDataResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckCoverageResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.SubmitApplicationKrankenResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetNumberOfDocumentsResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionProposalResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfObjectResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CalculateKfzResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateOfferKrankenResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.ConversionScopeResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.GetClaimResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.ArcImageResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.AddInformationToClaimResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on1basis.AcknowledgeDocumentsResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateOfferLebenResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.SubmitApplicationKfzResponseType _return = null;
|
||||
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 = new at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType();
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _return = null;
|
||||
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-24T12:48:35.608+02:00
|
||||
* 2024-05-01T13:46:27.645+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-24T12:48:35.436+02:00
|
||||
* 2024-05-01T13:46:27.571+02:00
|
||||
* Generated source version: 4.0.3
|
||||
*/
|
||||
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Beispiel eines Requests für Product Proposal: Die Angaben der Kontextinfo werden
|
||||
in einen oder mehrere Produktvorschläge umgewandelt.
|
||||
|
||||
* Kontextinfo wird VU-spezifisch definiert
|
||||
|
||||
-->
|
||||
|
||||
|
||||
<ac:ProductProposalRequest
|
||||
xmlns="urn:omds3CommonServiceTypes-1-1-0"
|
||||
xmlns:cst="urn:omds3CommonServiceTypes-1-1-0"
|
||||
xmlns:kv="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common"
|
||||
xmlns:vu="http://boa.example.com/kranken"
|
||||
xmlns:omds="urn:omds20"
|
||||
xsi:schemaLocation="
|
||||
urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken ../../omds3_ON2_Antrag_Kranken.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/kranken KrankenExtension.xsd
|
||||
">
|
||||
<VUNr>23</VUNr>
|
||||
<ClientId>Testclient</ClientId>
|
||||
<KorrelationsId>100432340010011</KorrelationsId>
|
||||
<ac:Sparte>KV</ac:Sparte>
|
||||
<ac:Kontextinfo xsi:type="vu:KrankenProposalContext_Type" >
|
||||
<vu:Geburtsdatum>2001-10-26</vu:Geburtsdatum>
|
||||
<vu:Beruf>Zimmermann</vu:Beruf>
|
||||
<vu:Sozialversicherung>ÖGK</vu:Sozialversicherung>
|
||||
<vu:Bundesland>Burgenland</vu:Bundesland>
|
||||
<vu:TarifArt>Sonderklasse</vu:TarifArt>
|
||||
</ac:Kontextinfo>
|
||||
</ac:ProductProposalRequest>
|
||||
@@ -0,0 +1,174 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
Beispiel eines Responses für Product Proposal:
|
||||
|
||||
* Kontextinfo wird VU-spezifisch definiert
|
||||
|
||||
-->
|
||||
|
||||
|
||||
<ac:ProductProposalResponse
|
||||
xmlns="urn:omds3CommonServiceTypes-1-1-0"
|
||||
xmlns:cst="urn:omds3CommonServiceTypes-1-1-0"
|
||||
xmlns:kv="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common"
|
||||
xmlns:vu="http://boa.example.com/kranken"
|
||||
xmlns:omds="urn:omds20"
|
||||
xsi:schemaLocation="
|
||||
urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken ../../omds3_ON2_Antrag_Kranken.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/kranken KrankenExtension.xsd
|
||||
">
|
||||
<cst:Status>
|
||||
<KorrelationsId>100432340010011</KorrelationsId>
|
||||
<Ergebnis>OK</Ergebnis>
|
||||
</cst:Status>
|
||||
|
||||
<!--
|
||||
Es folgt der Vorschlag für den Kunden. Der Vorschlag muss als Calculate-Request gültig sein.
|
||||
Er kann Prämien enthalten.
|
||||
-->
|
||||
<ac:Verkaufsprodukt xsi:type="kv:VerkaufsproduktKranken_Type">
|
||||
<TarifId xsi:type="vu:TarifIdVerkaufsprodukt" vu:text="001"/>
|
||||
<Bezeichnung>Gesund in Wien (Produktbezeichnung)</Bezeichnung>
|
||||
<VtgBeg>2024-05-01</VtgBeg>
|
||||
<Zahlweg>02</Zahlweg><!-- Lastschrift -->
|
||||
<Zahlrhythmus>1</Zahlrhythmus><!-- jährlich -->
|
||||
<Hauptfaelligkeit>--05-01</Hauptfaelligkeit>
|
||||
<Vermittlernr>3424324324</Vermittlernr>
|
||||
<omds:EL-Rahmenvereinbarung RahmenVebnr="234324324"/>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
|
||||
<!-- Deckung Person 1 -->
|
||||
<kv:Krankenprodukte xsi:type="kv:ProduktKranken_Type">
|
||||
<TarifId xsi:type="vu:TarifIdVersichertePerson" vu:text="stationaer"/>
|
||||
<Bezeichnung>Deckungen für Person 1</Bezeichnung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<VersPersonenRefLfnr>1</VersPersonenRefLfnr><!-- Bezug zum Risikoobjekt unten -->
|
||||
<kv:Elementarprodukte xsi:type="kv:ElementarproduktKranken_Type">
|
||||
<TarifId xsi:type="vu:TarifIdElementarprodukt" vu:text="SonderkWien2024" />
|
||||
<Bezeichnung>Sonderklasse</Bezeichnung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>false</EinschlussAenderbar><!-- wenn Sonderklasse fixer Baustein wäre -->
|
||||
</kv:Elementarprodukte>
|
||||
<kv:Elementarprodukte xsi:type="kv:ElementarproduktKranken_Type">
|
||||
<TarifId xsi:type="vu:TarifIdElementarprodukt" vu:text="WahlarztWien2024" />
|
||||
<Bezeichnung>Wahlarzt</Bezeichnung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>true</EinschlussAenderbar><!-- wenn z.B. der Baustein Wahlarzt in dem Tarif ausschließbar wäre -->
|
||||
</kv:Elementarprodukte>
|
||||
<kv:Elementarprodukte xsi:type="kv:ElementarproduktKranken_Type">
|
||||
<Id>2839438624329856325832</Id>
|
||||
<TarifId xsi:type="vu:TarifIdElementarprodukt" vu:text="MuUndKind" />
|
||||
<Bezeichnung>Mutter und Kind</Bezeichnung>
|
||||
<Eingeschlossen>false</Eingeschlossen><!-- Baustein wird optional angeboten -->
|
||||
<EinschlussAenderbar>true</EinschlussAenderbar>
|
||||
</kv:Elementarprodukte>
|
||||
</kv:Krankenprodukte>
|
||||
|
||||
|
||||
<!-- Deckung Person 2 -->
|
||||
<kv:Krankenprodukte xsi:type="kv:ProduktKranken_Type">
|
||||
<TarifId xsi:type="vu:TarifIdVersichertePerson" vu:text="stationaer"/>
|
||||
<Bezeichnung>Deckungen für Person 2</Bezeichnung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<VersPersonenRefLfnr>1</VersPersonenRefLfnr><!-- Bezug zum Risikoobjekt unten -->
|
||||
|
||||
<kv:Elementarprodukte xsi:type="kv:ElementarproduktKranken_Type">
|
||||
<Id>52748327403274326432</Id><!-- optional individuelle Id dieses Bausteins, in Phase Calculate wahrscheinlich nie, vielleicht aber im Angebot -->
|
||||
<TarifId xsi:type="vu:TarifIdElementarprodukt" vu:text="SonderkWien2024" />
|
||||
<Bezeichnung>Sonderklasse</Bezeichnung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>false</EinschlussAenderbar><!-- wenn Sonderklasse fixer Baustein wäre -->
|
||||
</kv:Elementarprodukte>
|
||||
<kv:Elementarprodukte xsi:type="kv:ElementarproduktKranken_Type">
|
||||
<Id>232783264328649832</Id>
|
||||
<TarifId xsi:type="vu:TarifIdElementarprodukt" vu:text="WahlarztWien2024" />
|
||||
<Bezeichnung>Wahlarzt</Bezeichnung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>true</EinschlussAenderbar><!-- wenn z.B. der Baustein Wahlarzt in dem Tarif ausschließbar wäre -->
|
||||
</kv:Elementarprodukte>
|
||||
<kv:Elementarprodukte xsi:type="kv:ElementarproduktKranken_Type">
|
||||
<Id>2839438624329856325832</Id>
|
||||
<TarifId xsi:type="vu:TarifIdElementarprodukt" vu:text="MuUndKind" />
|
||||
<Bezeichnung>Mutter und Kind</Bezeichnung>
|
||||
<Eingeschlossen>false</Eingeschlossen><!-- Baustein wird optional angeboten -->
|
||||
<EinschlussAenderbar>true</EinschlussAenderbar>
|
||||
</kv:Elementarprodukte>
|
||||
</kv:Krankenprodukte>
|
||||
|
||||
<!-- Es folgen Risikoinformationen zu den versicherten Personen.
|
||||
In Phase Calculate noch nicht mit Personendaten
|
||||
wie Vorname, Nachname, Geburtsdatum verknüpft -->
|
||||
|
||||
<kv:VersichertePersonen cst:Lfnr="1">
|
||||
<RisikoNatPerson>
|
||||
<Gewicht><Value>105</Value></Gewicht>
|
||||
<Groesse><Value>155</Value></Groesse>
|
||||
<Sozialversicherungsanstalt><!-- Beispiel Auswahlliste zur Laufzeit -->
|
||||
<Aenderbar>true</Aenderbar>
|
||||
<Bezeichnung>Sozialversicherungsanstalt</Bezeichnung>
|
||||
<BeschreibungTxt>Die Sozialversicherungsanstalt, bei der die Person versichert ist.</BeschreibungTxt>
|
||||
<Values>
|
||||
<Text>Sozialversicherung der Selbständigen</Text>
|
||||
<Schluessel>SVS</Schluessel>
|
||||
</Values>
|
||||
<Values>
|
||||
<Text>Wiener Gebietskrankenkasse</Text>
|
||||
<Schluessel>WGKK</Schluessel>
|
||||
</Values>
|
||||
<MinAnz>1</MinAnz>
|
||||
</Sozialversicherungsanstalt>
|
||||
<Beruf ><!-- Beispiel String mit Auswahlliste als Wertebereich zur Laufzeit -->
|
||||
<Value>Angestellter</Value><!-- aktueller Wert -->
|
||||
<Default>Angestellter</Default> <!-- Defaultwert -->
|
||||
|
||||
<!-- Auswahlliste moeglicher Berufe -->
|
||||
<Values>Angestellter</Values>
|
||||
<Values>Arzt</Values>
|
||||
<Values>Apotheker</Values>
|
||||
<Values>Fischer</Values>
|
||||
<Values>Fleischer</Values>
|
||||
<Values>Zimmermann</Values>
|
||||
</Beruf>
|
||||
</RisikoNatPerson>
|
||||
</kv:VersichertePersonen>
|
||||
<kv:VersichertePersonen cst:Lfnr="2">
|
||||
<RisikoNatPerson>
|
||||
<Gewicht><Value>73</Value></Gewicht>
|
||||
<Groesse><Value>190</Value></Groesse>
|
||||
<Sozialversicherungsanstalt><!-- Beispiel Auswahlliste zur Laufzeit -->
|
||||
<Aenderbar>true</Aenderbar>
|
||||
<Bezeichnung>Sozialversicherungsanstalt</Bezeichnung>
|
||||
<BeschreibungTxt>Die Sozialversicherungsanstalt, bei der die Person versichert ist.</BeschreibungTxt>
|
||||
<Values>
|
||||
<Text>Sozialversicherung der Selbständigen</Text>
|
||||
<Schluessel>SVS</Schluessel>
|
||||
</Values>
|
||||
<Values>
|
||||
<Text>Wiener Gebietskrankenkasse</Text>
|
||||
<Schluessel>WGKK</Schluessel>
|
||||
</Values>
|
||||
<MinAnz>1</MinAnz>
|
||||
</Sozialversicherungsanstalt>
|
||||
<Beruf ><!-- Beispiel String mit Auswahlliste als Wertebereich zur Laufzeit -->
|
||||
<Value>Angestellter</Value><!-- aktueller Wert -->
|
||||
<Default>Angestellter</Default> <!-- Defaultwert -->
|
||||
|
||||
<!-- Auswahlliste moeglicher Berufe -->
|
||||
<Values>Angestellter</Values>
|
||||
<Values>Arzt</Values>
|
||||
<Values>Apotheker</Values>
|
||||
<Values>Fischer</Values>
|
||||
<Values>Fleischer</Values>
|
||||
<Values>Zimmermann</Values>
|
||||
</Beruf>
|
||||
</RisikoNatPerson>
|
||||
</kv:VersichertePersonen>
|
||||
<kv:Gruppe>Austria Tabak in Wien</kv:Gruppe>
|
||||
</ac:Verkaufsprodukt>
|
||||
</ac:ProductProposalResponse>
|
||||
@@ -33,7 +33,7 @@
|
||||
">
|
||||
<VUNr>23</VUNr>
|
||||
<KorrelationsId>1000010011</KorrelationsId>
|
||||
<ac:RequestUpselling>false</ac:RequestUpselling>
|
||||
<!-- <ac:RequestUpselling>false</ac:RequestUpselling> nicht mehr verpflichtend -->
|
||||
<ac:Produktmetadaten>false</ac:Produktmetadaten>
|
||||
|
||||
<kv:Berechnungsanfrage>
|
||||
@@ -1,6 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xsd:schema xmlns="http://boa.example.com/kranken" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" targetNamespace="http://boa.example.com/kranken" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.11.0" xsi:schemaLocation="urn:omds3CommonServiceTypes-1-1-0 ../../omds3CommonServiceTypes.xsd">
|
||||
<xsd:schema xmlns="http://boa.example.com/kranken"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns:cst="urn:omds3CommonServiceTypes-1-1-0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common"
|
||||
targetNamespace="http://boa.example.com/kranken"
|
||||
elementFormDefault="qualified" attributeFormDefault="qualified" version="1.11.0"
|
||||
xsi:schemaLocation="
|
||||
urn:omds3CommonServiceTypes-1-1-0 ../../omds3CommonServiceTypes.xsd
|
||||
urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common ../../omds3_ON2_Antrag_Common.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.common" schemaLocation="../../omds3_ON2_Antrag_Common.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
|
||||
@@ -8,34 +19,25 @@
|
||||
-->
|
||||
<xsd:complexType name="TarifIdVerkaufsprodukt">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Einfache Standardimplementierung für Ordnungsbegriffe als String</xsd:documentation>
|
||||
<xsd:documentation>
|
||||
Einfache Standardimplementierung für Ordnungsbegriffe als String ohne Enumeration dahinter.
|
||||
Auf diese Weise kann die TarifId zur Laufzeit auf Gültigkeit geprüft werden, es gibt aber keine .
|
||||
Prüfung zur Design-Zeit der Schnittstelle.
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:TarifId_Type" >
|
||||
<xsd:attribute name="text" type="ListeVerkaufprodukte"/>
|
||||
<xsd:attribute name="text" type="xsd:string"/>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:simpleType name="ListeVerkaufprodukte">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Liste der Verkaufsprodukte</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:enumeration value="001">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Global und Sicher 2023</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<xsd:enumeration value="002">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Global und Sicher 2024</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
|
||||
<xsd:complexType name="TarifIdVersichertePerson">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Einfache Standardimplementierung für Ordnungsbegriffe als String</xsd:documentation>
|
||||
<xsd:documentation>
|
||||
Einfache Standardimplementierung für Ordnungsbegriffe als String mit Enumeration.
|
||||
Die Liste der Werte liegt zur Design-Zeit fest und kann nicht zur Laufzeit geändert werden.
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:TarifId_Type">
|
||||
@@ -97,4 +99,85 @@
|
||||
</xsd:enumeration>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<!-- fuer ProductProposal -->
|
||||
<xsd:complexType name="KrankenProposalContext_Type" >
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Ableitung des Kontext für ProductProposal Krankenversicherung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ac:ProposalContext_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Geburtsdatum" type="xsd:date" />
|
||||
<xsd:element name="Beruf" type="Beruf_Type" />
|
||||
<xsd:element name="Sozialversicherung" type="Sozialversicherung_Type"/>
|
||||
<xsd:element name="Bundesland" type="Bundesland_Type" />
|
||||
<xsd:element name="TarifArt" type="KvTarifArt_Type" />
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:simpleType name="Sozialversicherung_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Liste der Baustein auf Ebene Elementarprodukt</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:enumeration value="ÖGK">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Österreichische Gesundheitskasse (ÖGK)</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<xsd:enumeration value="BVAEB">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Versicherungsanstalt öffentlicher Bediensteter, Eisenbahn und Bergbau (BVAEB)</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<xsd:enumeration value="SVS">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Sozialversicherung der Selbständigen (SVS)</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<xsd:simpleType name="Bundesland_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Liste Bundeslaender</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:enumeration value="Burgenland"/>
|
||||
<xsd:enumeration value="Kärnten"/>
|
||||
<xsd:enumeration value="Wien"/>
|
||||
<xsd:enumeration value="Salzburg"/>
|
||||
<xsd:enumeration value="Oberösterreich"/>
|
||||
<xsd:enumeration value="Niederösterreich"/>
|
||||
<xsd:enumeration value="Tirol"/>
|
||||
<xsd:enumeration value="Vorarlberg"/>
|
||||
<xsd:enumeration value="Steiermark"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<!-- Beispiel für eine zur Design-Zeit festgelegte Berufeliste (nur durch Release der Schnittstelle änderbar) -->
|
||||
<xsd:simpleType name="Beruf_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Liste Berufe</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:enumeration value="Angestellter"/>
|
||||
<xsd:enumeration value="Arzt"/>
|
||||
<xsd:enumeration value="Apotheker"/>
|
||||
<xsd:enumeration value="Bestatter"/>
|
||||
<xsd:enumeration value="Fischer"/>
|
||||
<xsd:enumeration value="Fleischer"/>
|
||||
<xsd:enumeration value="Zimmermann"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<xsd:simpleType name="KvTarifArt_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Liste Tarifarten</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:enumeration value="Sonderklasse"/>
|
||||
<xsd:enumeration value="Privatarzt"/>
|
||||
<xsd:enumeration value="Novum"/>
|
||||
<xsd:enumeration value="MyAssist"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:schema>
|
||||
@@ -256,9 +256,9 @@
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:CommonResponse_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Verkaufsprodukt" type="cst:Verkaufsprodukt_Type">
|
||||
<xsd:element name="Verkaufsprodukt" type="cst:Verkaufsprodukt_Type" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Vorschlag Verkaufsprodukt</xsd:documentation>
|
||||
<xsd:documentation>Vorschlaege Verkaufsprodukt, müssen mit Calculate berechenbar sein, dürfen Prämien enthalten.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
|
||||
Reference in New Issue
Block a user