Zentrale BOA Operationen hinzugefügt.
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Requestobjekts für eine Berechnung Kranken
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"berechnungsanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "CalculateRequest")
|
||||
public class CalculateRequest
|
||||
extends CalculateRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Berechnungsanfrage", required = true)
|
||||
protected SpezBerechnungType berechnungsanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der berechnungsanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezBerechnungType }
|
||||
*
|
||||
*/
|
||||
public SpezBerechnungType getBerechnungsanfrage() {
|
||||
return berechnungsanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der berechnungsanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezBerechnungType }
|
||||
*
|
||||
*/
|
||||
public void setBerechnungsanfrage(SpezBerechnungType value) {
|
||||
this.berechnungsanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -43,7 +43,8 @@ import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallRequ
|
||||
CalculateUnfallRequestType.class,
|
||||
CalculateLebenRequestType.class,
|
||||
CalculateKrankenRequest.class,
|
||||
CalculateRechtsschutzRequest.class
|
||||
CalculateRechtsschutzRequest.class,
|
||||
CalculateRequest.class
|
||||
})
|
||||
public abstract class CalculateRequestGenType
|
||||
extends CalculateRequestType
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Responseobjekts für eine Kranken-Berechnung
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"berechnungsantwort"
|
||||
})
|
||||
@XmlRootElement(name = "CalculateResponse")
|
||||
public class CalculateResponse
|
||||
extends CalculateResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Berechnungsantwort", required = true)
|
||||
protected SpezBerechnungType berechnungsantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der berechnungsantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezBerechnungType }
|
||||
*
|
||||
*/
|
||||
public SpezBerechnungType getBerechnungsantwort() {
|
||||
return berechnungsantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der berechnungsantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezBerechnungType }
|
||||
*
|
||||
*/
|
||||
public void setBerechnungsantwort(SpezBerechnungType value) {
|
||||
this.berechnungsantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -37,7 +37,8 @@ import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResp
|
||||
CalculateUnfallResponseType.class,
|
||||
CalculateLebenResponseType.class,
|
||||
CalculateKrankenResponse.class,
|
||||
CalculateRechtsschutzResponse.class
|
||||
CalculateRechtsschutzResponse.class,
|
||||
CalculateResponse.class
|
||||
})
|
||||
public abstract class CalculateResponseGenType
|
||||
extends CalculateResponseType
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Type des Requestobjekts für die Erstellung eines Krankenantrags
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "CreateApplicationRequest")
|
||||
public class CreateApplicationRequest
|
||||
extends CreateApplicationRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsanfrage", required = true)
|
||||
protected SpezAntragType antragsanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragType getAntragsanfrage() {
|
||||
return antragsanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsanfrage(SpezAntragType value) {
|
||||
this.antragsanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -43,7 +43,8 @@ import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUn
|
||||
CreateApplicationUnfallRequestType.class,
|
||||
CreateApplicationLebenRequestType.class,
|
||||
CreateApplicationKrankenRequest.class,
|
||||
CreateApplicationRechtsschutzRequest.class
|
||||
CreateApplicationRechtsschutzRequest.class,
|
||||
CreateApplicationRequest.class
|
||||
})
|
||||
public abstract class CreateApplicationRequestGenType
|
||||
extends CreateApplicationRequestType
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Type des Responseobjekts für die Erstellung eines Krankenantrags
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsantwort"
|
||||
})
|
||||
@XmlRootElement(name = "CreateApplicationResponse")
|
||||
public class CreateApplicationResponse
|
||||
extends CreateApplicationResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsantwort", required = true)
|
||||
protected SpezAntragType antragsantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragType getAntragsantwort() {
|
||||
return antragsantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsantwort(SpezAntragType value) {
|
||||
this.antragsantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -37,7 +37,8 @@ import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateApplicationUn
|
||||
CreateApplicationUnfallResponseType.class,
|
||||
CreateApplicationLebenResponseType.class,
|
||||
CreateApplicationKrankenResponse.class,
|
||||
CreateApplicationRechtsschutzResponse.class
|
||||
CreateApplicationRechtsschutzResponse.class,
|
||||
CreateApplicationResponse.class
|
||||
})
|
||||
public abstract class CreateApplicationResponseGenType
|
||||
extends CreateApplicationResponseType
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Requestobjekts für eine Erstellung eines Kranken-Offerts
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"offertanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "CreateOfferRequest")
|
||||
public class CreateOfferRequest
|
||||
extends CreateOfferRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Offertanfrage", required = true)
|
||||
protected SpezOffertType offertanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offertanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezOffertType }
|
||||
*
|
||||
*/
|
||||
public SpezOffertType getOffertanfrage() {
|
||||
return offertanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offertanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezOffertType }
|
||||
*
|
||||
*/
|
||||
public void setOffertanfrage(SpezOffertType value) {
|
||||
this.offertanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -43,7 +43,8 @@ import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallRe
|
||||
CreateOfferUnfallRequestType.class,
|
||||
CreateOfferLebenRequestType.class,
|
||||
CreateOfferKrankenRequest.class,
|
||||
CreateOfferRechtsschutzRequest.class
|
||||
CreateOfferRechtsschutzRequest.class,
|
||||
CreateOfferRequest.class
|
||||
})
|
||||
public abstract class CreateOfferRequestGenType
|
||||
extends CreateOfferRequestType
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Type des Responseobjekts für eine Erstellung eines Kranken-Offerts
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"offertantwort"
|
||||
})
|
||||
@XmlRootElement(name = "CreateOfferResponse")
|
||||
public class CreateOfferResponse
|
||||
extends CreateOfferResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Offertantwort", required = true)
|
||||
protected SpezOffertType offertantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offertantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezOffertType }
|
||||
*
|
||||
*/
|
||||
public SpezOffertType getOffertantwort() {
|
||||
return offertantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offertantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezOffertType }
|
||||
*
|
||||
*/
|
||||
public void setOffertantwort(SpezOffertType value) {
|
||||
this.offertantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -37,7 +37,8 @@ import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CreateOfferUnfallRe
|
||||
CreateOfferUnfallResponseType.class,
|
||||
CreateOfferLebenResponseType.class,
|
||||
CreateOfferKrankenResponse.class,
|
||||
CreateOfferRechtsschutzResponse.class
|
||||
CreateOfferRechtsschutzResponse.class,
|
||||
CreateOfferResponse.class
|
||||
})
|
||||
public abstract class CreateOfferResponseGenType
|
||||
extends CreateOfferResponseType
|
||||
|
||||
@@ -91,11 +91,11 @@ public class ObjectFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SpezBOASchrittType }
|
||||
* Create an instance of {@link CalculateRequest }
|
||||
*
|
||||
*/
|
||||
public SpezBOASchrittType createSpezBOASchrittType() {
|
||||
return new SpezBOASchrittType();
|
||||
public CalculateRequest createCalculateRequest() {
|
||||
return new CalculateRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -106,6 +106,14 @@ public class ObjectFactory {
|
||||
return new BOAProcessRequestType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CalculateResponse }
|
||||
*
|
||||
*/
|
||||
public CalculateResponse createCalculateResponse() {
|
||||
return new CalculateResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BOAProcessResponseType }
|
||||
*
|
||||
@@ -114,6 +122,62 @@ public class ObjectFactory {
|
||||
return new BOAProcessResponseType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateOfferRequest }
|
||||
*
|
||||
*/
|
||||
public CreateOfferRequest createCreateOfferRequest() {
|
||||
return new CreateOfferRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateOfferResponse }
|
||||
*
|
||||
*/
|
||||
public CreateOfferResponse createCreateOfferResponse() {
|
||||
return new CreateOfferResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateApplicationRequest }
|
||||
*
|
||||
*/
|
||||
public CreateApplicationRequest createCreateApplicationRequest() {
|
||||
return new CreateApplicationRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateApplicationResponse }
|
||||
*
|
||||
*/
|
||||
public CreateApplicationResponse createCreateApplicationResponse() {
|
||||
return new CreateApplicationResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubmitApplicationRequest }
|
||||
*
|
||||
*/
|
||||
public SubmitApplicationRequest createSubmitApplicationRequest() {
|
||||
return new SubmitApplicationRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubmitApplicationResponse }
|
||||
*
|
||||
*/
|
||||
public SubmitApplicationResponse createSubmitApplicationResponse() {
|
||||
return new SubmitApplicationResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SpezBOASchrittType }
|
||||
*
|
||||
*/
|
||||
public SpezBOASchrittType createSpezBOASchrittType() {
|
||||
return new SpezBOASchrittType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >}
|
||||
*
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Type des Requests, um den Antrag einzureichen
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "SubmitApplicationRequest")
|
||||
public class SubmitApplicationRequest
|
||||
extends SubmitApplicationRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsanfrage")
|
||||
protected SpezAntragType antragsanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragType getAntragsanfrage() {
|
||||
return antragsanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsanfrage(SpezAntragType value) {
|
||||
this.antragsanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -43,7 +43,8 @@ import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUn
|
||||
SubmitApplicationUnfallRequestType.class,
|
||||
SubmitApplicationLebenRequestType.class,
|
||||
SubmitApplicationKrankenRequest.class,
|
||||
SubmitApplicationRechtsschutzRequest.class
|
||||
SubmitApplicationRechtsschutzRequest.class,
|
||||
SubmitApplicationRequest.class
|
||||
})
|
||||
public abstract class SubmitApplicationRequestGenType
|
||||
extends SubmitApplicationRequestType
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Type des Response, um den Antrag einzureichen
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsantwort"
|
||||
})
|
||||
@XmlRootElement(name = "SubmitApplicationResponse")
|
||||
public class SubmitApplicationResponse
|
||||
extends SubmitApplicationResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsantwort", required = true)
|
||||
protected SpezAntragType antragsantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragType getAntragsantwort() {
|
||||
return antragsantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsantwort(SpezAntragType value) {
|
||||
this.antragsantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -37,7 +37,8 @@ import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.SubmitApplicationUn
|
||||
SubmitApplicationUnfallResponseType.class,
|
||||
SubmitApplicationLebenResponseType.class,
|
||||
SubmitApplicationKrankenResponse.class,
|
||||
SubmitApplicationRechtsschutzResponse.class
|
||||
SubmitApplicationRechtsschutzResponse.class,
|
||||
SubmitApplicationResponse.class
|
||||
})
|
||||
public abstract class SubmitApplicationResponseGenType
|
||||
extends SubmitApplicationResponseType
|
||||
|
||||
@@ -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_master/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd
|
||||
* Zeile 1617 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd
|
||||
* Zeile 1616 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/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_master/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3_ON2_Antrag_Leben.xsd
|
||||
* Zeile 1617 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_11_0/omds3CommonServiceTypes.xsd
|
||||
* Zeile 1616 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/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 javax.xml.ws.Service;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.6.2
|
||||
* 2024-01-17T14:20:22.904+01:00
|
||||
* 2024-01-19T10:26:12.584+01:00
|
||||
* Generated source version: 3.6.2
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.6.2
|
||||
* 2024-01-17T14:20:22.481+01:00
|
||||
* 2024-01-19T10:26:12.125+01:00
|
||||
* Generated source version: 3.6.2
|
||||
*
|
||||
*/
|
||||
@@ -240,6 +240,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#submitApplication(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationRequest param)*
|
||||
*/
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponse submitApplication(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationRequest param) throws ServiceFaultMsg {
|
||||
LOG.info("Executing operation submitApplication");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponse _return = null;
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
throw new RuntimeException(ex);
|
||||
}
|
||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodRequestType param)*
|
||||
*/
|
||||
@@ -304,6 +320,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#calculate(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateRequest param)*
|
||||
*/
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponse calculate(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateRequest param) throws ServiceFaultMsg {
|
||||
LOG.info("Executing operation calculate");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponse _return = null;
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
throw new RuntimeException(ex);
|
||||
}
|
||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createApplicationLeben(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenRequestType param)*
|
||||
*/
|
||||
@@ -384,6 +416,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createApplication(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationRequest param)*
|
||||
*/
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponse createApplication(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationRequest param) throws ServiceFaultMsg {
|
||||
LOG.info("Executing operation createApplication");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponse _return = null;
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
throw new RuntimeException(ex);
|
||||
}
|
||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param)*
|
||||
*/
|
||||
@@ -544,6 +592,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#createOffer(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferRequest param)*
|
||||
*/
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponse createOffer(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferRequest param) throws ServiceFaultMsg {
|
||||
LOG.info("Executing operation createOffer");
|
||||
System.out.println(param);
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponse _return = null;
|
||||
return _return;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
throw new RuntimeException(ex);
|
||||
}
|
||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see at.vvo.omds.types.omds3Types.r1_11_0.service.OmdsServicePortType#calculateUnfall(at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallRequestType param)*
|
||||
*/
|
||||
|
||||
@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.6.2
|
||||
* 2024-01-17T14:20:22.892+01:00
|
||||
* 2024-01-19T10:26:12.571+01:00
|
||||
* Generated source version: 3.6.2
|
||||
*
|
||||
*/
|
||||
@@ -122,6 +122,14 @@ public interface OmdsServicePortType {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBRequest param
|
||||
) throws ServiceFaultMsg;
|
||||
|
||||
@WebMethod(action = "urn:submitApplication")
|
||||
@WebResult(name = "SubmitApplicationResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param")
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponse submitApplication(
|
||||
|
||||
@WebParam(partName = "param", name = "SubmitApplicationRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationRequest param
|
||||
) throws ServiceFaultMsg;
|
||||
|
||||
@WebMethod(action = "urn:getDocumentsOfPeriod")
|
||||
@WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param")
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(
|
||||
@@ -154,6 +162,14 @@ public interface OmdsServicePortType {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimRequestType param
|
||||
) throws ServiceFaultMsg;
|
||||
|
||||
@WebMethod(action = "urn:calculate")
|
||||
@WebResult(name = "CalculateResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param")
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponse calculate(
|
||||
|
||||
@WebParam(partName = "param", name = "CalculateRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateRequest param
|
||||
) throws ServiceFaultMsg;
|
||||
|
||||
@WebMethod(action = "urn:createApplicationLeben")
|
||||
@WebResult(name = "CreateApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param")
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben(
|
||||
@@ -194,6 +210,14 @@ public interface OmdsServicePortType {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenRequest param
|
||||
) throws ServiceFaultMsg;
|
||||
|
||||
@WebMethod(action = "urn:createApplication")
|
||||
@WebResult(name = "CreateApplicationResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param")
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponse createApplication(
|
||||
|
||||
@WebParam(partName = "param", name = "CreateApplicationRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationRequest param
|
||||
) throws ServiceFaultMsg;
|
||||
|
||||
@WebMethod(action = "urn:calculateSachPrivat")
|
||||
@WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param")
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(
|
||||
@@ -274,6 +298,14 @@ public interface OmdsServicePortType {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageRequest param
|
||||
) throws ServiceFaultMsg;
|
||||
|
||||
@WebMethod(action = "urn:createOffer")
|
||||
@WebResult(name = "CreateOfferResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param")
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponse createOffer(
|
||||
|
||||
@WebParam(partName = "param", name = "CreateOfferRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferRequest param
|
||||
) throws ServiceFaultMsg;
|
||||
|
||||
@WebMethod(action = "urn:calculateUnfall")
|
||||
@WebResult(name = "CalculateUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param")
|
||||
public at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall(
|
||||
|
||||
@@ -19,7 +19,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.6.2
|
||||
* 2024-01-17T14:20:21.910+01:00
|
||||
* 2024-01-19T10:26:11.584+01:00
|
||||
* Generated source version: 3.6.2
|
||||
*
|
||||
*/
|
||||
@@ -211,6 +211,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.CreateVBResponse _createVB__return = port.createVB(_createVB_param);
|
||||
System.out.println("createVB.result=" + _createVB__return);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
System.out.println(e.toString());
|
||||
}
|
||||
|
||||
}
|
||||
{
|
||||
System.out.println("Invoking submitApplication...");
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationRequest _submitApplication_param = null;
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.SubmitApplicationResponse _submitApplication__return = port.submitApplication(_submitApplication_param);
|
||||
System.out.println("submitApplication.result=" + _submitApplication__return);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
System.out.println(e.toString());
|
||||
@@ -263,6 +276,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on7schaden.CheckClaimResponseType _checkClaim__return = port.checkClaim(_checkClaim_param);
|
||||
System.out.println("checkClaim.result=" + _checkClaim__return);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
System.out.println(e.toString());
|
||||
}
|
||||
|
||||
}
|
||||
{
|
||||
System.out.println("Invoking calculate...");
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateRequest _calculate_param = null;
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CalculateResponse _calculate__return = port.calculate(_calculate_param);
|
||||
System.out.println("calculate.result=" + _calculate__return);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
System.out.println(e.toString());
|
||||
@@ -328,6 +354,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kranken.CreateApplicationKrankenResponse _createApplicationKranken__return = port.createApplicationKranken(_createApplicationKranken_param);
|
||||
System.out.println("createApplicationKranken.result=" + _createApplicationKranken__return);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
System.out.println(e.toString());
|
||||
}
|
||||
|
||||
}
|
||||
{
|
||||
System.out.println("Invoking createApplication...");
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationRequest _createApplication_param = null;
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateApplicationResponse _createApplication__return = port.createApplication(_createApplication_param);
|
||||
System.out.println("createApplication.result=" + _createApplication__return);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
System.out.println(e.toString());
|
||||
@@ -458,6 +497,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.servicetypes.OMDSPackageResponse _getOMDSPackage__return = port.getOMDSPackage(_getOMDSPackage_param);
|
||||
System.out.println("getOMDSPackage.result=" + _getOMDSPackage__return);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
System.out.println(e.toString());
|
||||
}
|
||||
|
||||
}
|
||||
{
|
||||
System.out.println("Invoking createOffer...");
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferRequest _createOffer_param = null;
|
||||
try {
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.common.CreateOfferResponse _createOffer__return = port.createOffer(_createOffer_param);
|
||||
System.out.println("createOffer.result=" + _createOffer__return);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
System.out.println(e.toString());
|
||||
|
||||
@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.6.2
|
||||
* 2024-01-17T14:20:22.476+01:00
|
||||
* 2024-01-19T10:26:12.117+01:00
|
||||
* Generated source version: 3.6.2
|
||||
*/
|
||||
|
||||
|
||||
@@ -9,6 +9,17 @@ Was ist neu oder anders in Version 1.11.0 im Vergleich zur Version 1.10.0?
|
||||
genutzt werden (ab. Version 1.7.0).
|
||||
2. ZusatzproduktKfz_Type bekommt eine optionale FahrzeugRefLfdNr
|
||||
3. ZusaetzlicheKfzDaten als deprecated markiert
|
||||
4. Die verwendete OMDS 2 Version 2.16 schreibt jetzt ein Pattern im Format omds:Datum-Zeit vor.
|
||||
Dieses Pattern ist neu und sieht 1-3 Millisekunden vor.
|
||||
Betroffen sind:
|
||||
* Service zur OMDS 2 Abholung (OMDSPackageInfoType)
|
||||
* Schaden: Ereigniszeitpunkt, Meldedatum
|
||||
* Geschäftsfall-Log / GetStateChanges: Ereigniszeitpunkt
|
||||
* BOA-Services u. weitere: GueltigAb in ObjektId_Type.
|
||||
ObjektId wird an vielen Stellen in BOA verwendet, oftmals wahrscheinlich ohne GueltigAb.
|
||||
* Dokumententypen das Filedatum (DokumentData_Type, DokumentInfo_Type, DokumentenReferenz_Type)
|
||||
|
||||
|
||||
|
||||
==============
|
||||
Version 1.10.0
|
||||
|
||||
@@ -0,0 +1,191 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ac:CalculateRequest
|
||||
xmlns="urn:omds3CommonServiceTypes-1-1-0"
|
||||
xmlns:sp="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common"
|
||||
xsi:schemaLocation="
|
||||
urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat ../../omds3_ON2_Antrag_SachPrivat.xsd
|
||||
urn:omds3CommonServiceTypes-1-1-0 ../../omds3CommonServiceTypes.xsd
|
||||
urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common ../../omds3_ON2_Antrag_Common.xsd">
|
||||
<VUNr>23</VUNr>
|
||||
<KorrelationsId>1000010011</KorrelationsId>
|
||||
<!-- Uebermittlung des Konvertierungsumfangs -->
|
||||
<ac:Ersatzpolizzen xsi:type="KonvertierungsumfangVertrag_Type">
|
||||
<Polizzennr>100-100-1</Polizzennr>
|
||||
<!-- <VertragsID>100-100-1</VertragsID>-->
|
||||
<Bezeichnung>Privat Bündel</Bezeichnung><!-- nicht relevant -->
|
||||
<Baustein>
|
||||
<ErsetztId>1</ErsetztId>
|
||||
<AntragsId>1</AntragsId>
|
||||
<Bezeichnung>Haushalt</Bezeichnung>
|
||||
<GewaehlteAktion xsi:type="KonvertierungsaktionUebernehmen_Type">
|
||||
<Baustein>
|
||||
<ErsetztId>1</ErsetztId><!-- Id des alten Bausteins im Vertrag -->
|
||||
<AntragsId>1</AntragsId><!-- Id des neuen Bausteins im Antrag -->
|
||||
<Bezeichnung>Feuer</Bezeichnung>
|
||||
<GewaehlteAktion xsi:type="KonvertierungsaktionUebernehmen_Type"/>
|
||||
</Baustein>
|
||||
<Baustein>
|
||||
<ErsetztId>2</ErsetztId>
|
||||
<AntragsId>2</AntragsId>
|
||||
<Bezeichnung>Sturm</Bezeichnung>
|
||||
<GewaehlteAktion xsi:type="KonvertierungsaktionUebernehmen_Type"/>
|
||||
</Baustein>
|
||||
<Baustein>
|
||||
<ErsetztId>3</ErsetztId>
|
||||
<AntragsId>3</AntragsId>
|
||||
<Bezeichnung>Leitungswasser</Bezeichnung>
|
||||
<GewaehlteAktion xsi:type="KonvertierungsaktionUebernehmen_Type"/>
|
||||
</Baustein>
|
||||
<Baustein>
|
||||
<ErsetztId>4</ErsetztId>
|
||||
<AntragsId>4</AntragsId>
|
||||
<Bezeichnung>Einbruchdiebstahl</Bezeichnung>
|
||||
<GewaehlteAktion xsi:type="KonvertierungsaktionUebernehmen_Type"/>
|
||||
</Baustein>
|
||||
<Baustein>
|
||||
<ErsetztId>5</ErsetztId>
|
||||
<AntragsId>5</AntragsId>
|
||||
<Bezeichnung>Haftpflicht</Bezeichnung>
|
||||
<GewaehlteAktion xsi:type="KonvertierungsaktionUebernehmen_Type"/>
|
||||
</Baustein>
|
||||
<Baustein>
|
||||
<ErsetztId>6</ErsetztId>
|
||||
<AntragsId>6</AntragsId>
|
||||
<Bezeichnung>Glasbruch</Bezeichnung>
|
||||
<GewaehlteAktion xsi:type="KonvertierungsaktionUebernehmen_Type"/>
|
||||
</Baustein>
|
||||
<!-- Drohnenversicherung keine Herkunftsangabe, da im ursprünglichen Vertrag nicht enthalten-->
|
||||
<!-- Cyberversicherung keine Herkunftsangabe, da im ursprünglichen Vertrag nicht enthalten-->
|
||||
</GewaehlteAktion>
|
||||
</Baustein>
|
||||
<Baustein>
|
||||
<ErsetztId>2</ErsetztId>
|
||||
<AntragsId>2</AntragsId>
|
||||
<Bezeichnung>Eigenheim</Bezeichnung>
|
||||
<GewaehlteAktion xsi:type="KonvertierungsaktionBelassen_Type"/>
|
||||
<!-- tritt oben im Antrag nicht auf, muss und kann auch nicht weiter für untergeordnete Bausteine spezifiziert werden -->
|
||||
</Baustein>
|
||||
<Baustein>
|
||||
<ErsetztId>3</ErsetztId>
|
||||
<AntragsId>3</AntragsId>
|
||||
<Bezeichnung>Assistance</Bezeichnung>
|
||||
<GewaehlteAktion xsi:type="KonvertierungsaktionStorno_Type"/>
|
||||
<!-- tritt oben im Antrag nicht auf, muss und kann auch nicht weiter für untergeordnete Bausteine spezifiziert werden -->
|
||||
</Baustein>
|
||||
</ac:Ersatzpolizzen>
|
||||
<!-- Die Rechtsschutz soll unverändert bleiben (müsste hier eigentlich gar nicht mehr angeführt werden). -->
|
||||
<ac:Ersatzpolizzen xsi:type="KonvertierungsumfangVertrag_Type">
|
||||
<Polizzennr>100-100-2</Polizzennr>
|
||||
<Bezeichnung>Rechtsschutz</Bezeichnung>
|
||||
<Baustein>
|
||||
<ErsetztId>1</ErsetztId>
|
||||
<Bezeichnung>Privat Rechtsschutz</Bezeichnung>
|
||||
<GewaehlteAktion xsi:type="KonvertierungsaktionBelassen_Type"/>
|
||||
</Baustein>
|
||||
</ac:Ersatzpolizzen>
|
||||
<ac:RequestUpselling>false</ac:RequestUpselling>
|
||||
<ac:Produktmetadaten>false</ac:Produktmetadaten>
|
||||
|
||||
<ac:Berechnungsanfrage xsi:type="sp:BerechnungSachPrivat_Type">
|
||||
<sp:Verkaufsprodukt xsi:type="sp:VerkaufsproduktSachPrivat_Type">
|
||||
<Id>100-200-1</Id>
|
||||
<Bezeichnung>Privat Bündel</Bezeichnung>
|
||||
<Konvertierung>
|
||||
<ErsetztId>100-100-1</ErsetztId>
|
||||
</Konvertierung>
|
||||
<VtgBeg>2022-05-01</VtgBeg>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>false</EinschlussAenderbar>
|
||||
|
||||
<sp:Produkte xsi:type="sp:ProduktHaushaltsversicherung_Type">
|
||||
<Id>1</Id>
|
||||
<Bezeichnung>Haushalt</Bezeichnung>
|
||||
<Konvertierung>
|
||||
<ErsetztId>1</ErsetztId>
|
||||
</Konvertierung>
|
||||
<Hauptfaelligkeit>--05-01</Hauptfaelligkeit>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<sp:VersObjekteRefLfnr>1</sp:VersObjekteRefLfnr>
|
||||
<sp:Deckungen xsi:type="sp:ElementarproduktHaushalt_Type">
|
||||
<Id>1</Id>
|
||||
<Bezeichnung>Feuer</Bezeichnung>
|
||||
<Konvertierung>
|
||||
<ErsetztId>1</ErsetztId>
|
||||
</Konvertierung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>false</EinschlussAenderbar>
|
||||
</sp:Deckungen>
|
||||
<sp:Deckungen xsi:type="sp:ElementarproduktHaushalt_Type">
|
||||
<Id>2</Id>
|
||||
<Bezeichnung>Sturm</Bezeichnung>
|
||||
<Konvertierung>
|
||||
<ErsetztId>2</ErsetztId>
|
||||
</Konvertierung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>false</EinschlussAenderbar>
|
||||
</sp:Deckungen>
|
||||
<sp:Deckungen xsi:type="sp:ElementarproduktHaushalt_Type">
|
||||
<Id>3</Id>
|
||||
<Bezeichnung>Leitungswasser</Bezeichnung>
|
||||
<Konvertierung>
|
||||
<ErsetztId>3</ErsetztId>
|
||||
</Konvertierung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>false</EinschlussAenderbar>
|
||||
</sp:Deckungen>
|
||||
<sp:Deckungen xsi:type="sp:ElementarproduktHaushalt_Type">
|
||||
<Id>4</Id>
|
||||
<Bezeichnung>Einbruchdiebstahl</Bezeichnung>
|
||||
<Konvertierung>
|
||||
<ErsetztId>4</ErsetztId>
|
||||
</Konvertierung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>false</EinschlussAenderbar>
|
||||
</sp:Deckungen>
|
||||
<sp:Deckungen xsi:type="sp:ElementarproduktHaushalt_Type">
|
||||
<Id>5</Id>
|
||||
<Bezeichnung>Haftpflicht</Bezeichnung>
|
||||
<Konvertierung>
|
||||
<ErsetztId>5</ErsetztId>
|
||||
</Konvertierung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>true</EinschlussAenderbar>
|
||||
</sp:Deckungen>
|
||||
<sp:Deckungen xsi:type="sp:ElementarproduktHaushalt_Type">
|
||||
<Id>6</Id>
|
||||
<Bezeichnung>Glasbruch</Bezeichnung>
|
||||
<Konvertierung>
|
||||
<ErsetztId>6</ErsetztId>
|
||||
</Konvertierung>
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>true</EinschlussAenderbar>
|
||||
</sp:Deckungen>
|
||||
<!-- hier ein neues Element: Drohnen-Versicherung, diese Deckung gab es nicht im ursprünglichen Vertrag, daher unten auch keine Herkunft spezifiziert -->
|
||||
<sp:Deckungen xsi:type="sp:ElementarproduktHaushalt_Type">
|
||||
<Id>7</Id>
|
||||
<Bezeichnung>Drohnenversicherung</Bezeichnung>
|
||||
<!-- neues Element hat kein Konvertierungs-Element -->
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>true</EinschlussAenderbar>
|
||||
</sp:Deckungen>
|
||||
<!-- hier ein neues Element: Cyber-Versicherung, diese Deckung gab es nicht im ursprünglichen Vertrag, daher unten auch keine Herkunft spezifiziert -->
|
||||
<sp:Deckungen xsi:type="sp:ElementarproduktHaushalt_Type">
|
||||
<Id>8</Id>
|
||||
<Bezeichnung>Cyber</Bezeichnung>
|
||||
<!-- neues Element hat kein Konvertierungs-Element -->
|
||||
<Eingeschlossen>true</Eingeschlossen>
|
||||
<EinschlussAenderbar>true</EinschlussAenderbar>
|
||||
</sp:Deckungen>
|
||||
</sp:Produkte>
|
||||
<!-- kein Eigenheim-Produkt beantragt, es wird "belassen" -->
|
||||
<!-- keine Assistance beantragt, sie soll storniert werden -->
|
||||
<sp:VersicherteObjekte xsi:type="sp:RisikoHaushalt_Type" Lfnr="1">
|
||||
<ErsetztId>234</ErsetztId><!-- alte Nr im Vertrag -->
|
||||
<sp:Wohnflaeche>100</sp:Wohnflaeche>
|
||||
<sp:AusstattungCd>Z</sp:AusstattungCd>
|
||||
</sp:VersicherteObjekte>
|
||||
</sp:Verkaufsprodukt>
|
||||
</ac:Berechnungsanfrage>
|
||||
</ac:CalculateRequest>
|
||||
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Beispiel für eine Berechnungsanfrage Kfz WKZ über unified BOA Service -->
|
||||
<ac:CalculateRequest
|
||||
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: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 ../../omds215-00.xsd
|
||||
">
|
||||
<VUNr>23</VUNr>
|
||||
<KorrelationsId>1000010011</KorrelationsId>
|
||||
|
||||
<ac:RequestUpselling>false</ac:RequestUpselling>
|
||||
|
||||
<ac:Berechnungsanfrage xsi:type="kfz:SpezBerechnungKfz_Type">
|
||||
<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">
|
||||
<Konvertierung>
|
||||
<ErsetztId>1</ErsetztId>
|
||||
</Konvertierung>
|
||||
<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:FzgArtCd="ANH">
|
||||
<ErsetztId>234</ErsetztId><!-- alte Nr im Vertrag -->
|
||||
</kfz:VersicherteFahrzeuge>
|
||||
<kfz:VersicherteFahrzeuge cst:Lfnr="2" cst:Marke="VW">
|
||||
<ErsetztId>34</ErsetztId><!-- alte Nr im Vertrag -->
|
||||
</kfz:VersicherteFahrzeuge>
|
||||
</kfz:Verkaufsprodukt>
|
||||
</ac:Berechnungsanfrage>
|
||||
</ac:CalculateRequest>
|
||||
@@ -15,8 +15,7 @@
|
||||
<xsd:sequence>
|
||||
<xsd:element name="errorType">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Fehlertyp ( 1 = Fehler, 2 = Warnung, 3 = Hinweis)
|
||||
</xsd:documentation>
|
||||
<xsd:documentation>Fehlertyp ( 1 = Fehler, 2 = Warnung, 3 = Hinweis)</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:simpleType>
|
||||
<xsd:restriction base="xsd:integer">
|
||||
|
||||
@@ -355,6 +355,32 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<part name="param" element="boaL:SubmitApplicationLebenResponse"/>
|
||||
</message>
|
||||
|
||||
<!-- Zentrales BOA -->
|
||||
<message name="CalculateRequestMsg">
|
||||
<part name="param" element="boa:CalculateRequest"/>
|
||||
</message>
|
||||
<message name="CalculateResponseMsg">
|
||||
<part name="param" element="boa:CalculateResponse"/>
|
||||
</message>
|
||||
<message name="CreateOfferRequestMsg">
|
||||
<part name="param" element="boa:CreateOfferRequest"/>
|
||||
</message>
|
||||
<message name="CreateOfferResponseMsg">
|
||||
<part name="param" element="boa:CreateOfferResponse"/>
|
||||
</message>
|
||||
<message name="CreateApplicationRequestMsg">
|
||||
<part name="param" element="boa:CreateApplicationRequest"/>
|
||||
</message>
|
||||
<message name="CreateApplicationResponseMsg">
|
||||
<part name="param" element="boa:CreateApplicationResponse"/>
|
||||
</message>
|
||||
<message name="SubmitApplicationRequestMsg">
|
||||
<part name="param" element="boa:SubmitApplicationRequest"/>
|
||||
</message>
|
||||
<message name="SubmitApplicationResponseMsg">
|
||||
<part name="param" element="boa:SubmitApplicationResponse"/>
|
||||
</message>
|
||||
|
||||
<!-- Konvertierungshilfe -->
|
||||
<message name="ConversionScopeRequestMsg">
|
||||
<part name="param" element="boa:ConversionScopeRequest"/>
|
||||
@@ -637,6 +663,27 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<output name="SubmitApplicationLebenResponsePort" message="os:SubmitApplicationLebenResponseMsg"/>
|
||||
<fault name="SubmitApplicationLebenFault" message="os:ServiceFaultMsg"/>
|
||||
</operation>
|
||||
|
||||
<operation name="calculate">
|
||||
<input name="CalculateRequestPort" message="os:CalculateRequestMsg"/>
|
||||
<output name="CalculateResponsePort" message="os:CalculateResponseMsg"/>
|
||||
<fault name="CalculateFault" message="os:ServiceFaultMsg"/>
|
||||
</operation>
|
||||
<operation name="createOffer">
|
||||
<input name="CreateOfferRequestPort" message="os:CreateOfferRequestMsg"/>
|
||||
<output name="CreateOfferResponsePort" message="os:CreateOfferResponseMsg"/>
|
||||
<fault name="CreateOfferFault" message="os:ServiceFaultMsg"/>
|
||||
</operation>
|
||||
<operation name="createApplication">
|
||||
<input name="CreateApplicationRequestPort" message="os:CreateApplicationRequestMsg"/>
|
||||
<output name="CreateApplicationResponsePort" message="os:CreateApplicationResponseMsg"/>
|
||||
<fault name="CreateApplicationFault" message="os:ServiceFaultMsg"/>
|
||||
</operation>
|
||||
<operation name="submitApplication">
|
||||
<input name="SubmitApplicationRequestPort" message="os:SubmitApplicationRequestMsg"/>
|
||||
<output name="SubmitApplicationResponsePort" message="os:SubmitApplicationResponseMsg"/>
|
||||
<fault name="SubmitApplicationFault" message="os:ServiceFaultMsg"/>
|
||||
</operation>
|
||||
<operation name="conversionScope">
|
||||
<input name="ConversionScopeRequestPort" message="os:ConversionScopeRequestMsg"/>
|
||||
<output name="ConversionScopeResponsePort" message="os:ConversionScopeResponseMsg"/>
|
||||
@@ -1281,6 +1328,58 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
</fault>
|
||||
</operation>
|
||||
|
||||
|
||||
<!-- Zentrale BOA Operations -->
|
||||
<operation name="calculate">
|
||||
<soap:operation soapAction="urn:calculate" style="document"/>
|
||||
<input name="CalculateRequestPort">
|
||||
<soap:body use="literal"/>
|
||||
</input>
|
||||
<output name="CalculateResponsePort">
|
||||
<soap:body use="literal"/>
|
||||
</output>
|
||||
<fault name="CalculateFault">
|
||||
<soap:fault name="CalculateFault" use="literal"/>
|
||||
</fault>
|
||||
</operation>
|
||||
<operation name="createOffer">
|
||||
<soap:operation soapAction="urn:createOffer" style="document"/>
|
||||
<input name="CreateOfferRequestPort">
|
||||
<soap:body use="literal"/>
|
||||
</input>
|
||||
<output name="CreateOfferResponsePort">
|
||||
<soap:body use="literal"/>
|
||||
</output>
|
||||
<fault name="CreateOfferFault">
|
||||
<soap:fault name="CreateOfferFault" use="literal"/>
|
||||
</fault>
|
||||
</operation>
|
||||
<operation name="createApplication">
|
||||
<soap:operation soapAction="urn:createApplication" style="document"/>
|
||||
<input name="CreateApplicationRequestPort">
|
||||
<soap:body use="literal"/>
|
||||
</input>
|
||||
<output name="CreateApplicationResponsePort">
|
||||
<soap:body use="literal"/>
|
||||
</output>
|
||||
<fault name="CreateApplicationFault">
|
||||
<soap:fault name="CreateApplicationFault" use="literal"/>
|
||||
</fault>
|
||||
</operation>
|
||||
<operation name="submitApplication">
|
||||
<soap:operation soapAction="urn:submitApplication" style="document"/>
|
||||
<input name="SubmitApplicationRequestPort">
|
||||
<soap:body use="literal"/>
|
||||
</input>
|
||||
<output name="SubmitApplicationResponsePort">
|
||||
<soap:body use="literal"/>
|
||||
</output>
|
||||
<fault name="SubmitApplicationFault">
|
||||
<soap:fault name="SubmitApplicationFault" use="literal"/>
|
||||
</fault>
|
||||
</operation>
|
||||
|
||||
|
||||
<!-- Konvertierungshilfe -->
|
||||
<operation name="conversionScope">
|
||||
<soap:operation soapAction="urn:conversionScope" style="document"/>
|
||||
|
||||
@@ -615,4 +615,140 @@
|
||||
<xsd:element name="Vertrag" type="cst:KonvertierungsumfangVertrag_Type" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:element name="CalculateRequest">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Requestobjekt für die Berechnung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Typ des Requestobjekts für eine Berechnung Kranken</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="CalculateRequestGen_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Berechnungsanfrage" type="SpezBerechnung_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="CalculateResponse">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Responseobjekt für die Berechnung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Typ des Responseobjekts für eine Kranken-Berechnung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="CalculateResponseGen_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Berechnungsantwort" type="SpezBerechnung_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="CreateOfferRequest">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Requestobjekt für die Offerterstellung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Typ des Requestobjekts für eine Erstellung eines Kranken-Offerts</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="CreateOfferRequestGen_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Offertanfrage" type="SpezOffert_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="CreateOfferResponse">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Responseobjekt für die Offerterstellung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type des Responseobjekts für eine Erstellung eines Kranken-Offerts</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="CreateOfferResponseGen_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Offertantwort" type="SpezOffert_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="CreateApplicationRequest">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Requestobjekt für die Antragserzeugung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type des Requestobjekts für die Erstellung eines Krankenantrags</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="CreateApplicationRequestGen_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Antragsanfrage" type="SpezAntrag_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="CreateApplicationResponse">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Responseobjekt für die Antragserzeugung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type des Responseobjekts für die Erstellung eines Krankenantrags</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="CreateApplicationResponseGen_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Antragsantwort" type="SpezAntrag_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="SubmitApplicationRequest">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Requestobjekt für die Antragsüberleitung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type des Requests, um den Antrag einzureichen</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="SubmitApplicationRequestGen_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Antragsanfrage" type="SpezAntrag_Type" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="SubmitApplicationResponse">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Responseobjekt für die Antragsüberleitung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type des Response, um den Antrag einzureichen</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="SubmitApplicationResponseGen_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Antragsantwort" type="SpezAntrag_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
|
||||
Reference in New Issue
Block a user