Hinzufügen elektronische Unterschrift und Basis für Krankenversicherung

This commit is contained in:
2021-01-12 12:17:53 +01:00
parent e9b948dd25
commit 652498ab4e
40 changed files with 1542 additions and 8 deletions

View File

@@ -6,8 +6,10 @@ import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.GetApplicationDocumentResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder.FinderResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponseType;
@@ -39,6 +41,8 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType;
* <sequence>
* <element name="Status" type="{urn:omds3CommonServiceTypes-1-1-0}ResponseStatus_Type"/>
* <element name="TechnischeObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}TechnischesObjekt_Type" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Gestartet" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="Beendet" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -50,7 +54,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CommonResponse_Type", propOrder = {
"status",
"technischeObjekte"
"technischeObjekte",
"gestartet",
"beendet"
})
@XmlSeeAlso({
GetPartnerResponseType.class,
@@ -77,6 +83,12 @@ public abstract class CommonResponseType {
protected ResponseStatusType status;
@XmlElement(name = "TechnischeObjekte")
protected List<TechnischesObjektType> technischeObjekte;
@XmlElement(name = "Gestartet")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar gestartet;
@XmlElement(name = "Beendet")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar beendet;
/**
* Ruft den Wert der status-Eigenschaft ab.
@@ -131,4 +143,52 @@ public abstract class CommonResponseType {
return this.technischeObjekte;
}
/**
* Ruft den Wert der gestartet-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getGestartet() {
return gestartet;
}
/**
* Legt den Wert der gestartet-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setGestartet(XMLGregorianCalendar value) {
this.gestartet = value;
}
/**
* Ruft den Wert der beendet-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getBeendet() {
return beendet;
}
/**
* Legt den Wert der beendet-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setBeendet(XMLGregorianCalendar value) {
this.beendet = value;
}
}

View File

@@ -9,6 +9,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.LeistungsartKrankenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.TarifLebenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.ElementarproduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType;
@@ -52,6 +53,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.LeistungsartUnfallTy
ElementarproduktSachPrivatType.class,
ElementarproduktRechtsschutzType.class,
TarifLebenType.class,
LeistungsartKrankenType.class,
LeistungsartUnfallType.class
})
public abstract class ElementarproduktGenerischType

View File

@@ -9,6 +9,7 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.ProduktKrankenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.ProduktLebenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.ProduktUnfallType;
@@ -42,6 +43,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.ProduktUnfallType;
})
@XmlSeeAlso({
ProduktLebenType.class,
ProduktKrankenType.class,
ProduktUnfallType.class
})
public abstract class ProduktMitVpType

View File

@@ -8,6 +8,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.VerkaufsproduktKrankenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.VerkaufsproduktLebenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.VerkaufsproduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType;
@@ -49,6 +50,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.VerkaufsproduktUnfal
VerkaufsproduktSachPrivatType.class,
VerkaufsproduktRechtsschutzType.class,
VerkaufsproduktLebenType.class,
VerkaufsproduktKrankenType.class,
VerkaufsproduktUnfallType.class
})
public abstract class VerkaufsproduktGenerischType

View File

@@ -6,6 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CalculateKrankenRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CalculateLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType;
@@ -41,6 +42,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CalculateUnfallReque
CalculateSachPrivatRequestType.class,
CalculateLebenRequestType.class,
CalculateUnfallRequestType.class,
CalculateKrankenRequest.class,
CalculateRechtsschutzRequest.class
})
public abstract class CalculateRequestGenType

View File

@@ -5,6 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CalculateKrankenResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CalculateLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType;
@@ -35,6 +36,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CalculateUnfallRespo
CalculateSachPrivatResponseType.class,
CalculateLebenResponseType.class,
CalculateUnfallResponseType.class,
CalculateKrankenResponse.class,
CalculateRechtsschutzResponse.class
})
public abstract class CalculateResponseGenType

View File

@@ -6,6 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateApplicationKrankenRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateApplicationLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType;
@@ -41,6 +42,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnf
CreateApplicationSachPrivatRequestType.class,
CreateApplicationLebenRequestType.class,
CreateApplicationUnfallRequestType.class,
CreateApplicationKrankenRequest.class,
CreateApplicationRechtsschutzRequest.class
})
public abstract class CreateApplicationRequestGenType

View File

@@ -5,6 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateApplicationKrankenResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateApplicationLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType;
@@ -35,6 +36,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnf
CreateApplicationSachPrivatResponseType.class,
CreateApplicationLebenResponseType.class,
CreateApplicationUnfallResponseType.class,
CreateApplicationKrankenResponse.class,
CreateApplicationRechtsschutzResponse.class
})
public abstract class CreateApplicationResponseGenType

View File

@@ -6,6 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateOfferKrankenRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateOfferLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType;
@@ -41,6 +42,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateOfferUnfallReq
CreateOfferSachPrivatRequestType.class,
CreateOfferLebenRequestType.class,
CreateOfferUnfallRequestType.class,
CreateOfferKrankenRequest.class,
CreateOfferRechtsschutzRequest.class
})
public abstract class CreateOfferRequestGenType

View File

@@ -5,6 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateOfferKrankenResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateOfferLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType;
@@ -35,6 +36,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateOfferUnfallRes
CreateOfferSachPrivatResponseType.class,
CreateOfferLebenResponseType.class,
CreateOfferUnfallResponseType.class,
CreateOfferKrankenResponse.class,
CreateOfferRechtsschutzResponse.class
})
public abstract class CreateOfferResponseGenType

View File

@@ -10,6 +10,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.EinwilligungType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.SicherstellungType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SpezAntragKrankenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SpezAntragRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.AntragSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SpezAntragUnfallType;
@@ -45,6 +46,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SpezAntragUnfallType
@XmlSeeAlso({
AntragSachPrivatType.class,
SpezAntragRechtsschutzType.class,
SpezAntragKrankenType.class,
SpezAntragPersonenType.class,
SpezAntragUnfallType.class
})

View File

@@ -10,6 +10,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.BeteiligtePersonVertragType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SpezBerechnungKfzType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SpezBerechnungKrankenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.SpezBerechnungLebenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SpezBerechnungRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.BerechnungSachPrivatType;
@@ -46,6 +47,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SpezBerechnungUnfall
SpezBerechnungRechtsschutzType.class,
SpezBerechnungKfzType.class,
SpezBerechnungLebenType.class,
SpezBerechnungKrankenType.class,
SpezBerechnungUnfallType.class
})
public abstract class SpezBerechnungType {

View File

@@ -12,6 +12,7 @@ import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.BeteiligtePersonVertragType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SpezOffertKfzType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SpezOffertKrankenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.SpezOffertLebenType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SpezOffertRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.OffertSachPrivatType;
@@ -52,6 +53,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SpezOffertUnfallType
SpezOffertRechtsschutzType.class,
SpezOffertKfzType.class,
SpezOffertLebenType.class,
SpezOffertKrankenType.class,
SpezOffertUnfallType.class
})
public abstract class SpezOffertType {

View File

@@ -6,6 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.SubmitApplicationLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType;
@@ -41,6 +42,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnf
SubmitApplicationSachPrivatRequestType.class,
SubmitApplicationLebenRequestType.class,
SubmitApplicationUnfallRequestType.class,
SubmitApplicationKrankenRequest.class,
SubmitApplicationRechtsschutzRequest.class
})
public abstract class SubmitApplicationRequestGenType

View File

@@ -5,6 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.SubmitApplicationLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType;
@@ -35,6 +36,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnf
SubmitApplicationSachPrivatResponseType.class,
SubmitApplicationLebenResponseType.class,
SubmitApplicationUnfallResponseType.class,
SubmitApplicationKrankenResponse.class,
SubmitApplicationRechtsschutzResponse.class
})
public abstract class SubmitApplicationResponseGenType

View File

@@ -0,0 +1,69 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
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;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateRequestGenType;
/**
* Typ des Requestobjekts für eine Berechnung Unfall
*
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"berechnungsanfrage"
})
@XmlRootElement(name = "CalculateKrankenRequest")
public class CalculateKrankenRequest
extends CalculateRequestGenType
{
@XmlElement(name = "Berechnungsanfrage", required = true)
protected SpezBerechnungKrankenType berechnungsanfrage;
/**
* Ruft den Wert der berechnungsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezBerechnungKrankenType }
*
*/
public SpezBerechnungKrankenType getBerechnungsanfrage() {
return berechnungsanfrage;
}
/**
* Legt den Wert der berechnungsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezBerechnungKrankenType }
*
*/
public void setBerechnungsanfrage(SpezBerechnungKrankenType value) {
this.berechnungsanfrage = value;
}
}

View File

@@ -0,0 +1,69 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
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;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateResponseGenType;
/**
* Typ des Responseobjekts für eine Unfall-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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"berechnungsantwort"
})
@XmlRootElement(name = "CalculateKrankenResponse")
public class CalculateKrankenResponse
extends CalculateResponseGenType
{
@XmlElement(name = "Berechnungsantwort", required = true)
protected SpezBerechnungKrankenType berechnungsantwort;
/**
* Ruft den Wert der berechnungsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezBerechnungKrankenType }
*
*/
public SpezBerechnungKrankenType getBerechnungsantwort() {
return berechnungsantwort;
}
/**
* Legt den Wert der berechnungsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezBerechnungKrankenType }
*
*/
public void setBerechnungsantwort(SpezBerechnungKrankenType value) {
this.berechnungsantwort = value;
}
}

View File

@@ -0,0 +1,69 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
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;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationRequestGenType;
/**
* Type des Requestobjekts für die Erstellung eines Unfallantrags
*
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"antragsanfrage"
})
@XmlRootElement(name = "CreateApplicationKrankenRequest")
public class CreateApplicationKrankenRequest
extends CreateApplicationRequestGenType
{
@XmlElement(name = "Antragsanfrage", required = true)
protected SpezAntragKrankenType antragsanfrage;
/**
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragKrankenType }
*
*/
public SpezAntragKrankenType getAntragsanfrage() {
return antragsanfrage;
}
/**
* Legt den Wert der antragsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragKrankenType }
*
*/
public void setAntragsanfrage(SpezAntragKrankenType value) {
this.antragsanfrage = value;
}
}

View File

@@ -0,0 +1,69 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
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;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationResponseGenType;
/**
* Type des Responseobjekts für die Erstellung eines Unfallantrags
*
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"antragsantwort"
})
@XmlRootElement(name = "CreateApplicationKrankenResponse")
public class CreateApplicationKrankenResponse
extends CreateApplicationResponseGenType
{
@XmlElement(name = "Antragsantwort", required = true)
protected SpezAntragKrankenType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragKrankenType }
*
*/
public SpezAntragKrankenType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragKrankenType }
*
*/
public void setAntragsantwort(SpezAntragKrankenType value) {
this.antragsantwort = value;
}
}

View File

@@ -0,0 +1,69 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
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;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferRequestGenType;
/**
* Typ des Requestobjekts für eine Erstellung eines Unfall-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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"offertanfrage"
})
@XmlRootElement(name = "CreateOfferKrankenRequest")
public class CreateOfferKrankenRequest
extends CreateOfferRequestGenType
{
@XmlElement(name = "Offertanfrage", required = true)
protected SpezOffertKrankenType offertanfrage;
/**
* Ruft den Wert der offertanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezOffertKrankenType }
*
*/
public SpezOffertKrankenType getOffertanfrage() {
return offertanfrage;
}
/**
* Legt den Wert der offertanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezOffertKrankenType }
*
*/
public void setOffertanfrage(SpezOffertKrankenType value) {
this.offertanfrage = value;
}
}

View File

@@ -0,0 +1,69 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
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;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferResponseGenType;
/**
* Type des Responseobjekts für eine Erstellung eines Unfall-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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"offertantwort"
})
@XmlRootElement(name = "CreateOfferKrankenResponse")
public class CreateOfferKrankenResponse
extends CreateOfferResponseGenType
{
@XmlElement(name = "Offertantwort", required = true)
protected SpezOffertKrankenType offertantwort;
/**
* Ruft den Wert der offertantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezOffertKrankenType }
*
*/
public SpezOffertKrankenType getOffertantwort() {
return offertantwort;
}
/**
* Legt den Wert der offertantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezOffertKrankenType }
*
*/
public void setOffertantwort(SpezOffertKrankenType value) {
this.offertantwort = value;
}
}

View File

@@ -0,0 +1,105 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ElementarproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType;
/**
* Typ für ein Elementarprodukt in der Sparte Kranken. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet.
*
* <p>Java-Klasse für LeistungsartKranken_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="LeistungsartKranken_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&gt;
* &lt;element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LeistungsartKranken_Type", propOrder = {
"selbstbehalt",
"versPersonenRefLfnr"
})
public class LeistungsartKrankenType
extends ElementarproduktGenerischType
{
@XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt;
@XmlElement(name = "VersPersonenRefLfnr", type = Integer.class)
@XmlSchemaType(name = "unsignedShort")
protected List<Integer> versPersonenRefLfnr;
/**
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
*
* @return
* possible object is
* {@link SelbstbehaltType }
*
*/
public SelbstbehaltType getSelbstbehalt() {
return selbstbehalt;
}
/**
* Legt den Wert der selbstbehalt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SelbstbehaltType }
*
*/
public void setSelbstbehalt(SelbstbehaltType value) {
this.selbstbehalt = value;
}
/**
* Gets the value of the versPersonenRefLfnr property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the versPersonenRefLfnr property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getVersPersonenRefLfnr().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Integer }
*
*
*/
public List<Integer> getVersPersonenRefLfnr() {
if (versPersonenRefLfnr == null) {
versPersonenRefLfnr = new ArrayList<Integer>();
}
return this.versPersonenRefLfnr;
}
}

View File

@@ -0,0 +1,144 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import javax.xml.bind.annotation.XmlRegistry;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken package.
* <p>An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link CalculateKrankenRequest }
*
*/
public CalculateKrankenRequest createCalculateKrankenRequest() {
return new CalculateKrankenRequest();
}
/**
* Create an instance of {@link SpezBerechnungKrankenType }
*
*/
public SpezBerechnungKrankenType createSpezBerechnungKrankenType() {
return new SpezBerechnungKrankenType();
}
/**
* Create an instance of {@link CalculateKrankenResponse }
*
*/
public CalculateKrankenResponse createCalculateKrankenResponse() {
return new CalculateKrankenResponse();
}
/**
* Create an instance of {@link CreateOfferKrankenRequest }
*
*/
public CreateOfferKrankenRequest createCreateOfferKrankenRequest() {
return new CreateOfferKrankenRequest();
}
/**
* Create an instance of {@link SpezOffertKrankenType }
*
*/
public SpezOffertKrankenType createSpezOffertKrankenType() {
return new SpezOffertKrankenType();
}
/**
* Create an instance of {@link CreateOfferKrankenResponse }
*
*/
public CreateOfferKrankenResponse createCreateOfferKrankenResponse() {
return new CreateOfferKrankenResponse();
}
/**
* Create an instance of {@link CreateApplicationKrankenRequest }
*
*/
public CreateApplicationKrankenRequest createCreateApplicationKrankenRequest() {
return new CreateApplicationKrankenRequest();
}
/**
* Create an instance of {@link SpezAntragKrankenType }
*
*/
public SpezAntragKrankenType createSpezAntragKrankenType() {
return new SpezAntragKrankenType();
}
/**
* Create an instance of {@link CreateApplicationKrankenResponse }
*
*/
public CreateApplicationKrankenResponse createCreateApplicationKrankenResponse() {
return new CreateApplicationKrankenResponse();
}
/**
* Create an instance of {@link SubmitApplicationKrankenRequest }
*
*/
public SubmitApplicationKrankenRequest createSubmitApplicationKrankenRequest() {
return new SubmitApplicationKrankenRequest();
}
/**
* Create an instance of {@link SubmitApplicationKrankenResponse }
*
*/
public SubmitApplicationKrankenResponse createSubmitApplicationKrankenResponse() {
return new SubmitApplicationKrankenResponse();
}
/**
* Create an instance of {@link VerkaufsproduktKrankenType }
*
*/
public VerkaufsproduktKrankenType createVerkaufsproduktKrankenType() {
return new VerkaufsproduktKrankenType();
}
/**
* Create an instance of {@link ProduktKrankenType }
*
*/
public ProduktKrankenType createProduktKrankenType() {
return new ProduktKrankenType();
}
/**
* Create an instance of {@link LeistungsartKrankenType }
*
*/
public LeistungsartKrankenType createLeistungsartKrankenType() {
return new LeistungsartKrankenType();
}
}

View File

@@ -0,0 +1,103 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktMitVpType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType;
/**
* Typ für ein Produkt in der Sparte Kranken. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten.
*
* <p>Java-Klasse für ProduktKranken_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ProduktKranken_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}LeistungsartKranken_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktKranken_Type", propOrder = {
"leistungsarten",
"selbstbehalt"
})
public class ProduktKrankenType
extends ProduktMitVpType
{
@XmlElement(name = "Leistungsarten")
protected List<LeistungsartKrankenType> leistungsarten;
@XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt;
/**
* Gets the value of the leistungsarten property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the leistungsarten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getLeistungsarten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link LeistungsartKrankenType }
*
*
*/
public List<LeistungsartKrankenType> getLeistungsarten() {
if (leistungsarten == null) {
leistungsarten = new ArrayList<LeistungsartKrankenType>();
}
return this.leistungsarten;
}
/**
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
*
* @return
* possible object is
* {@link SelbstbehaltType }
*
*/
public SelbstbehaltType getSelbstbehalt() {
return selbstbehalt;
}
/**
* Legt den Wert der selbstbehalt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SelbstbehaltType }
*
*/
public void setSelbstbehalt(SelbstbehaltType value) {
this.selbstbehalt = value;
}
}

View File

@@ -0,0 +1,67 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SpezAntragType;
/**
* Typ für den Schritt Antrags-Erzeugung
*
* <p>Java-Klasse für SpezAntragKranken_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezAntragKranken_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezAntragKranken_Type", propOrder = {
"verkaufsprodukt"
})
public class SpezAntragKrankenType
extends SpezAntragType
{
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktKrankenType verkaufsprodukt;
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktKrankenType }
*
*/
public VerkaufsproduktKrankenType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktKrankenType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -0,0 +1,67 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SpezBerechnungType;
/**
* Typ für den Schritt Berechnung
*
* <p>Java-Klasse für SpezBerechnungKranken_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezBerechnungKranken_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezBerechnungKranken_Type", propOrder = {
"verkaufsprodukt"
})
public class SpezBerechnungKrankenType
extends SpezBerechnungType
{
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktKrankenType verkaufsprodukt;
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktKrankenType }
*
*/
public VerkaufsproduktKrankenType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktKrankenType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -0,0 +1,67 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SpezOffertType;
/**
* Typ für den Schritt Offert-Erzeugung
*
* <p>Java-Klasse für SpezOffertKranken_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezOffertKranken_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezOffertKranken_Type", propOrder = {
"verkaufsprodukt"
})
public class SpezOffertKrankenType
extends SpezOffertType
{
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktKrankenType verkaufsprodukt;
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktKrankenType }
*
*/
public VerkaufsproduktKrankenType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktKrankenType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -0,0 +1,69 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
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;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationRequestGenType;
/**
* 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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"antragsanfrage"
})
@XmlRootElement(name = "SubmitApplicationKrankenRequest")
public class SubmitApplicationKrankenRequest
extends SubmitApplicationRequestGenType
{
@XmlElement(name = "Antragsanfrage")
protected SpezAntragKrankenType antragsanfrage;
/**
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragKrankenType }
*
*/
public SpezAntragKrankenType getAntragsanfrage() {
return antragsanfrage;
}
/**
* Legt den Wert der antragsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragKrankenType }
*
*/
public void setAntragsanfrage(SpezAntragKrankenType value) {
this.antragsanfrage = value;
}
}

View File

@@ -0,0 +1,69 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
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;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationResponseGenType;
/**
* 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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"antragsantwort"
})
@XmlRootElement(name = "SubmitApplicationKrankenResponse")
public class SubmitApplicationKrankenResponse
extends SubmitApplicationResponseGenType
{
@XmlElement(name = "Antragsantwort", required = true)
protected SpezAntragKrankenType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragKrankenType }
*
*/
public SpezAntragKrankenType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragKrankenType }
*
*/
public void setAntragsantwort(SpezAntragKrankenType value) {
this.antragsantwort = value;
}
}

View File

@@ -0,0 +1,172 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.VerkaufsproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.VersichertePersonType;
/**
* Typ für ein Verkaufsprodukt in der Sparte Krankenversicherung
*
* <p>Java-Klasse für VerkaufsproduktKranken_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="VerkaufsproduktKranken_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Unfallprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VerkaufsproduktKranken_Type", propOrder = {
"unfallprodukte",
"zusatzprodukte",
"versichertePersonen",
"refSicherstellungLfnr"
})
public class VerkaufsproduktKrankenType
extends VerkaufsproduktGenerischType
{
@XmlElement(name = "Unfallprodukte", required = true)
protected List<ProduktKrankenType> unfallprodukte;
@XmlElement(name = "Zusatzprodukte")
protected List<ProduktGenerischType> zusatzprodukte;
@XmlElement(name = "VersichertePersonen", required = true)
protected List<VersichertePersonType> versichertePersonen;
@XmlElement(name = "RefSicherstellungLfnr")
@XmlSchemaType(name = "unsignedShort")
protected Integer refSicherstellungLfnr;
/**
* Gets the value of the unfallprodukte property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the unfallprodukte property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getUnfallprodukte().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ProduktKrankenType }
*
*
*/
public List<ProduktKrankenType> getUnfallprodukte() {
if (unfallprodukte == null) {
unfallprodukte = new ArrayList<ProduktKrankenType>();
}
return this.unfallprodukte;
}
/**
* Gets the value of the zusatzprodukte property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the zusatzprodukte property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusatzprodukte().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ProduktGenerischType }
*
*
*/
public List<ProduktGenerischType> getZusatzprodukte() {
if (zusatzprodukte == null) {
zusatzprodukte = new ArrayList<ProduktGenerischType>();
}
return this.zusatzprodukte;
}
/**
* Gets the value of the versichertePersonen property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the versichertePersonen property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getVersichertePersonen().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link VersichertePersonType }
*
*
*/
public List<VersichertePersonType> getVersichertePersonen() {
if (versichertePersonen == null) {
versichertePersonen = new ArrayList<VersichertePersonType>();
}
return this.versichertePersonen;
}
/**
* Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRefSicherstellungLfnr() {
return refSicherstellungLfnr;
}
/**
* Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRefSicherstellungLfnr(Integer value) {
this.refSicherstellungLfnr = value;
}
}

View File

@@ -0,0 +1,2 @@
@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;

View File

@@ -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 137 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 991 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3CommonServiceTypes.xsd
* Zeile 1001 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_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:

View File

@@ -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 125 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 991 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3CommonServiceTypes.xsd
* Zeile 1001 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_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:

View File

@@ -10,8 +10,6 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationReq
/**
* 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.

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<jaxb:bindings
xmlns:xs="http://www.w3.org/2001/XMLSchema"
schemaLocation="../../def/r1_6_0/omds3_ON2_Antrag_Kranken.xsd"
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
version="1.0"
>
<!-- Namespace urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken -->
<jaxb:schemaBindings>
<jaxb:package name="at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken"/>
</jaxb:schemaBindings>
</jaxb:bindings>

View File

@@ -356,7 +356,7 @@
<xsd:sequence>
<xsd:element name="Geschaeftsfallnummer" type="ObjektId_Type" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Optional eine Geschaeftsfallnummer, die mehrere Request-Responses einem Geschaeftsfall zuordnet</xsd:documentation>
<xsd:documentation>Optional eine Geschaeftsfallnummer, die mehrere Request-Response-Paare einem Geschaeftsfall zuordnet</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>

View File

@@ -186,4 +186,62 @@
<xsd:element name="Zeitraum" type="cst:Zeitraum_Type"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CollectSignaturesRequest">
<xsd:annotation>
<xsd:documentation>Request zur Einholung von Autorisierungen für einen Prozessschritt</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="cst:CommonRequest_Type">
<xsd:sequence>
<xsd:element name="Geschaeftsfallnummer" type="cst:ObjektId_Type">
<xsd:annotation>
<xsd:documentation>Die Nummer des Geschaeftsfalls, zu dem die Unterschriften eingeholt werden sollen.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Personen" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="ObjektId" type="cst:ObjektId_Type">
<xsd:annotation>
<xsd:documentation>Die Person im Versicherungssystem</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Kontaktinformation" type="Kontaktinformation_Type" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Eine oder mehrere Kontaktinformationen über die eine Autorisierung eingeholt werden soll</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CollectSignaturesResponse">
<xsd:annotation>
<xsd:documentation>Response bei der Einholung von Unterschriften</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="cst:CommonResponse_Type">
<xsd:sequence>
<xsd:element name="Geschaeftsfallnummer" type="cst:ObjektId_Type">
<xsd:annotation>
<xsd:documentation>Die Nummer des Geschaeftsfalls, zu dem die Unterschriften eingeholt werden sollen.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="Kontaktinformation_Type" abstract="true">
<xsd:annotation>
<xsd:documentation>Ein abstraktes Element für Kontaktdaten, an welche die Aufforderung gesendet wird, einen Prozessschritt mittels Unterschrift zu autorisieren</xsd:documentation>
</xsd:annotation>
</xsd:complexType>
<xsd:element name="KontaktinformationEMail" type="Kontaktinformation_Type">
<xsd:annotation>
<xsd:documentation>Eine E-Mail-Adresse zur Autorisierung eines Prozessschrittes</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:schema>

View File

@@ -10,6 +10,7 @@ xmlns:boaSp="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat"
xmlns:boaRs="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs"
xmlns:boaU="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall"
xmlns:boaL="urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben"
xmlns:boaKr="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken"
xmlns:boaPf="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder"
xmlns:v="urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag"
xmlns:p="urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner"
@@ -30,6 +31,7 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat" schemaLocation="omds3_ON2_Antrag_SachPrivat.xsd"/>
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs" schemaLocation="omds3_ON2_Antrag_Rechtsschutz.xsd"/>
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall" schemaLocation="omds3_ON2_Antrag_Unfall.xsd"/>
<import namespace="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken" schemaLocation="omds3_ON2_Antrag_Kranken.xsd"/>
<import namespace="urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben" schemaLocation="omds3_ON2_Antrag_Leben.xsd"/>
<import namespace="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder" schemaLocation="omds3_ON2_Antrag_Produktfinder.xsd"/>
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag" schemaLocation="omds3_ON3_Vertrag.xsd"/>
@@ -264,6 +266,32 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<message name="SubmitApplicationUnfallResponseMsg">
<part name="parameters" element="boaU:SubmitApplicationUnfallResponse"/>
</message>
<!-- Kranken -->
<message name="CalculateKrankenRequestMsg">
<part name="parameters" element="boaKr:CalculateKrankenRequest"/>
</message>
<message name="CalculateKrankenResponseMsg">
<part name="parameters" element="boaKr:CalculateKrankenResponse"/>
</message>
<message name="CreateOfferKrankenRequestMsg">
<part name="parameters" element="boaKr:CreateOfferKrankenRequest"/>
</message>
<message name="CreateOfferKrankenResponseMsg">
<part name="parameters" element="boaKr:CreateOfferKrankenResponse"/>
</message>
<message name="CreateApplicationKrankenRequestMsg">
<part name="parameters" element="boaKr:CreateApplicationKrankenRequest"/>
</message>
<message name="CreateApplicationKrankenResponseMsg">
<part name="parameters" element="boaKr:CreateApplicationKrankenResponse"/>
</message>
<message name="SubmitApplicationKrankenRequestMsg">
<part name="parameters" element="boaKr:SubmitApplicationKrankenRequest"/>
</message>
<message name="SubmitApplicationKrankenResponseMsg">
<part name="parameters" element="boaKr:SubmitApplicationKrankenResponse"/>
</message>
<!-- Leben -->
<message name="CalculateLebenRequestMsg">
@@ -561,7 +589,28 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<output name="SubmitApplicationUnfallResponsePort" message="os:SubmitApplicationUnfallResponseMsg"/>
<fault name="SubmitApplicationUnfallFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="calculateKranken">
<input name="CalculateKrankenRequestPort" message="os:CalculateKrankenRequestMsg"/>
<output name="CalculateKrankenResponsePort" message="os:CalculateKrankenResponseMsg"/>
<fault name="CalculateKrankenFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="createOfferKranken">
<input name="CreateOfferKrankenRequestPort" message="os:CreateOfferKrankenRequestMsg"/>
<output name="CreateOfferKrankenResponsePort" message="os:CreateOfferKrankenResponseMsg"/>
<fault name="CreateOfferKrankenFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="createApplicationKranken">
<input name="CreateApplicationKrankenRequestPort" message="os:CreateApplicationKrankenRequestMsg"/>
<output name="CreateApplicationKrankenResponsePort" message="os:CreateApplicationKrankenResponseMsg"/>
<fault name="CreateApplicationKrankenFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="submitApplicationKranken">
<input name="SubmitApplicationKrankenRequestPort" message="os:SubmitApplicationKrankenRequestMsg"/>
<output name="SubmitApplicationKrankenResponsePort" message="os:SubmitApplicationKrankenResponseMsg"/>
<fault name="SubmitApplicationKrankenFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="calculateLeben">
<input name="CalculateLebenRequestPort" message="os:CalculateLebenRequestMsg"/>
<output name="CalculateLebenResponsePort" message="os:CalculateLebenResponseMsg"/>
@@ -1097,7 +1146,56 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:fault name="SubmitApplicationUnfallFault" use="literal"/>
</fault>
</operation>
<!-- Kranken -->
<operation name="calculateKranken">
<soap:operation soapAction="urn:calculateKranken" style="document"/>
<input name="CalculateKrankenRequestPort">
<soap:body use="literal"/>
</input>
<output name="CalculateKrankenResponsePort">
<soap:body use="literal"/>
</output>
<fault name="CalculateKrankenFault">
<soap:fault name="CalculateKrankenFault" use="literal"/>
</fault>
</operation>
<operation name="createOfferKranken">
<soap:operation soapAction="urn:createOfferKranken" style="document"/>
<input name="CreateOfferKrankenRequestPort">
<soap:body use="literal"/>
</input>
<output name="CreateOfferKrankenResponsePort">
<soap:body use="literal"/>
</output>
<fault name="CreateOfferKrankenFault">
<soap:fault name="CreateOfferKrankenFault" use="literal"/>
</fault>
</operation>
<operation name="createApplicationKranken">
<soap:operation soapAction="urn:createApplicationKranken" style="document"/>
<input name="CreateApplicationKrankenRequestPort">
<soap:body use="literal"/>
</input>
<output name="CreateApplicationKrankenResponsePort">
<soap:body use="literal"/>
</output>
<fault name="CreateApplicationKrankenFault">
<soap:fault name="CreateApplicationKrankenFault" use="literal"/>
</fault>
</operation>
<operation name="submitApplicationKranken">
<soap:operation soapAction="urn:submitApplicationKranken" style="document"/>
<input name="SubmitApplicationKrankenRequestPort">
<soap:body use="literal"/>
</input>
<output name="SubmitApplicationKrankenResponsePort">
<soap:body use="literal"/>
</output>
<fault name="SubmitApplicationKrankenFault">
<soap:fault name="SubmitApplicationKrankenFault" use="literal"/>
</fault>
</operation>
<!-- Leben -->