Hinzufügen elektronische Unterschrift und Basis für Krankenversicherung
This commit is contained in:
Binary file not shown.
@@ -295,6 +295,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
|||||||
<bindingFile>${bindings.location}/omds3_ON2_Antrag_SachPrivat_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_SachPrivat_binding.xml</bindingFile>
|
||||||
<bindingFile>${bindings.location}/omds3_ON2_Antrag_RS_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_RS_binding.xml</bindingFile>
|
||||||
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Unfall_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Unfall_binding.xml</bindingFile>
|
||||||
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Kranken_binding.xml</bindingFile>
|
||||||
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Leben_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Leben_binding.xml</bindingFile>
|
||||||
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Produktfinder_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Produktfinder_binding.xml</bindingFile>
|
||||||
<bindingFile>${bindings.location}/omds3_ON3_Vertrag_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omds3_ON3_Vertrag_binding.xml</bindingFile>
|
||||||
|
|||||||
@@ -6,8 +6,10 @@ import java.util.List;
|
|||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.common.GetApplicationDocumentResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder.FinderResponseType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder.FinderResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponseType;
|
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>
|
* <sequence>
|
||||||
* <element name="Status" type="{urn:omds3CommonServiceTypes-1-1-0}ResponseStatus_Type"/>
|
* <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="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>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
@@ -50,7 +54,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType;
|
|||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "CommonResponse_Type", propOrder = {
|
@XmlType(name = "CommonResponse_Type", propOrder = {
|
||||||
"status",
|
"status",
|
||||||
"technischeObjekte"
|
"technischeObjekte",
|
||||||
|
"gestartet",
|
||||||
|
"beendet"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
GetPartnerResponseType.class,
|
GetPartnerResponseType.class,
|
||||||
@@ -77,6 +83,12 @@ public abstract class CommonResponseType {
|
|||||||
protected ResponseStatusType status;
|
protected ResponseStatusType status;
|
||||||
@XmlElement(name = "TechnischeObjekte")
|
@XmlElement(name = "TechnischeObjekte")
|
||||||
protected List<TechnischesObjektType> 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.
|
* Ruft den Wert der status-Eigenschaft ab.
|
||||||
@@ -131,4 +143,52 @@ public abstract class CommonResponseType {
|
|||||||
return this.technischeObjekte;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.TarifLebenType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.ElementarproduktRechtsschutzType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.ElementarproduktRechtsschutzType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType;
|
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,
|
ElementarproduktSachPrivatType.class,
|
||||||
ElementarproduktRechtsschutzType.class,
|
ElementarproduktRechtsschutzType.class,
|
||||||
TarifLebenType.class,
|
TarifLebenType.class,
|
||||||
|
LeistungsartKrankenType.class,
|
||||||
LeistungsartUnfallType.class
|
LeistungsartUnfallType.class
|
||||||
})
|
})
|
||||||
public abstract class ElementarproduktGenerischType
|
public abstract class ElementarproduktGenerischType
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import javax.xml.bind.annotation.XmlElement;
|
|||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.ProduktLebenType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.ProduktUnfallType;
|
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({
|
@XmlSeeAlso({
|
||||||
ProduktLebenType.class,
|
ProduktLebenType.class,
|
||||||
|
ProduktKrankenType.class,
|
||||||
ProduktUnfallType.class
|
ProduktUnfallType.class
|
||||||
})
|
})
|
||||||
public abstract class ProduktMitVpType
|
public abstract class ProduktMitVpType
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.VerkaufsproduktLebenType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.VerkaufsproduktRechtsschutzType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.VerkaufsproduktRechtsschutzType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType;
|
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,
|
VerkaufsproduktSachPrivatType.class,
|
||||||
VerkaufsproduktRechtsschutzType.class,
|
VerkaufsproduktRechtsschutzType.class,
|
||||||
VerkaufsproduktLebenType.class,
|
VerkaufsproduktLebenType.class,
|
||||||
|
VerkaufsproduktKrankenType.class,
|
||||||
VerkaufsproduktUnfallType.class
|
VerkaufsproduktUnfallType.class
|
||||||
})
|
})
|
||||||
public abstract class VerkaufsproduktGenerischType
|
public abstract class VerkaufsproduktGenerischType
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.CalculateLebenRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequest;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequest;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType;
|
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,
|
CalculateSachPrivatRequestType.class,
|
||||||
CalculateLebenRequestType.class,
|
CalculateLebenRequestType.class,
|
||||||
CalculateUnfallRequestType.class,
|
CalculateUnfallRequestType.class,
|
||||||
|
CalculateKrankenRequest.class,
|
||||||
CalculateRechtsschutzRequest.class
|
CalculateRechtsschutzRequest.class
|
||||||
})
|
})
|
||||||
public abstract class CalculateRequestGenType
|
public abstract class CalculateRequestGenType
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.CalculateLebenResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponse;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponse;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType;
|
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,
|
CalculateSachPrivatResponseType.class,
|
||||||
CalculateLebenResponseType.class,
|
CalculateLebenResponseType.class,
|
||||||
CalculateUnfallResponseType.class,
|
CalculateUnfallResponseType.class,
|
||||||
|
CalculateKrankenResponse.class,
|
||||||
CalculateRechtsschutzResponse.class
|
CalculateRechtsschutzResponse.class
|
||||||
})
|
})
|
||||||
public abstract class CalculateResponseGenType
|
public abstract class CalculateResponseGenType
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.CreateApplicationLebenRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequest;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequest;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType;
|
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,
|
CreateApplicationSachPrivatRequestType.class,
|
||||||
CreateApplicationLebenRequestType.class,
|
CreateApplicationLebenRequestType.class,
|
||||||
CreateApplicationUnfallRequestType.class,
|
CreateApplicationUnfallRequestType.class,
|
||||||
|
CreateApplicationKrankenRequest.class,
|
||||||
CreateApplicationRechtsschutzRequest.class
|
CreateApplicationRechtsschutzRequest.class
|
||||||
})
|
})
|
||||||
public abstract class CreateApplicationRequestGenType
|
public abstract class CreateApplicationRequestGenType
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.CreateApplicationLebenResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponse;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponse;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType;
|
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,
|
CreateApplicationSachPrivatResponseType.class,
|
||||||
CreateApplicationLebenResponseType.class,
|
CreateApplicationLebenResponseType.class,
|
||||||
CreateApplicationUnfallResponseType.class,
|
CreateApplicationUnfallResponseType.class,
|
||||||
|
CreateApplicationKrankenResponse.class,
|
||||||
CreateApplicationRechtsschutzResponse.class
|
CreateApplicationRechtsschutzResponse.class
|
||||||
})
|
})
|
||||||
public abstract class CreateApplicationResponseGenType
|
public abstract class CreateApplicationResponseGenType
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.CreateOfferLebenRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequest;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequest;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType;
|
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,
|
CreateOfferSachPrivatRequestType.class,
|
||||||
CreateOfferLebenRequestType.class,
|
CreateOfferLebenRequestType.class,
|
||||||
CreateOfferUnfallRequestType.class,
|
CreateOfferUnfallRequestType.class,
|
||||||
|
CreateOfferKrankenRequest.class,
|
||||||
CreateOfferRechtsschutzRequest.class
|
CreateOfferRechtsschutzRequest.class
|
||||||
})
|
})
|
||||||
public abstract class CreateOfferRequestGenType
|
public abstract class CreateOfferRequestGenType
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.CreateOfferLebenResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponse;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponse;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType;
|
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,
|
CreateOfferSachPrivatResponseType.class,
|
||||||
CreateOfferLebenResponseType.class,
|
CreateOfferLebenResponseType.class,
|
||||||
CreateOfferUnfallResponseType.class,
|
CreateOfferUnfallResponseType.class,
|
||||||
|
CreateOfferKrankenResponse.class,
|
||||||
CreateOfferRechtsschutzResponse.class
|
CreateOfferRechtsschutzResponse.class
|
||||||
})
|
})
|
||||||
public abstract class CreateOfferResponseGenType
|
public abstract class CreateOfferResponseGenType
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
|||||||
import javax.xml.bind.annotation.XmlType;
|
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.EinwilligungType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.SicherstellungType;
|
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.rs.SpezAntragRechtsschutzType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.AntragSachPrivatType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.AntragSachPrivatType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SpezAntragUnfallType;
|
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({
|
@XmlSeeAlso({
|
||||||
AntragSachPrivatType.class,
|
AntragSachPrivatType.class,
|
||||||
SpezAntragRechtsschutzType.class,
|
SpezAntragRechtsschutzType.class,
|
||||||
|
SpezAntragKrankenType.class,
|
||||||
SpezAntragPersonenType.class,
|
SpezAntragPersonenType.class,
|
||||||
SpezAntragUnfallType.class
|
SpezAntragUnfallType.class
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
|||||||
import javax.xml.bind.annotation.XmlType;
|
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.BeteiligtePersonVertragType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SpezBerechnungKfzType;
|
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.leben.SpezBerechnungLebenType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SpezBerechnungRechtsschutzType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SpezBerechnungRechtsschutzType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.BerechnungSachPrivatType;
|
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,
|
SpezBerechnungRechtsschutzType.class,
|
||||||
SpezBerechnungKfzType.class,
|
SpezBerechnungKfzType.class,
|
||||||
SpezBerechnungLebenType.class,
|
SpezBerechnungLebenType.class,
|
||||||
|
SpezBerechnungKrankenType.class,
|
||||||
SpezBerechnungUnfallType.class
|
SpezBerechnungUnfallType.class
|
||||||
})
|
})
|
||||||
public abstract class SpezBerechnungType {
|
public abstract class SpezBerechnungType {
|
||||||
|
|||||||
@@ -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.BeteiligtePersonVertragType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
|
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.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.leben.SpezOffertLebenType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SpezOffertRechtsschutzType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SpezOffertRechtsschutzType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.OffertSachPrivatType;
|
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,
|
SpezOffertRechtsschutzType.class,
|
||||||
SpezOffertKfzType.class,
|
SpezOffertKfzType.class,
|
||||||
SpezOffertLebenType.class,
|
SpezOffertLebenType.class,
|
||||||
|
SpezOffertKrankenType.class,
|
||||||
SpezOffertUnfallType.class
|
SpezOffertUnfallType.class
|
||||||
})
|
})
|
||||||
public abstract class SpezOffertType {
|
public abstract class SpezOffertType {
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.SubmitApplicationLebenRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType;
|
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,
|
SubmitApplicationSachPrivatRequestType.class,
|
||||||
SubmitApplicationLebenRequestType.class,
|
SubmitApplicationLebenRequestType.class,
|
||||||
SubmitApplicationUnfallRequestType.class,
|
SubmitApplicationUnfallRequestType.class,
|
||||||
|
SubmitApplicationKrankenRequest.class,
|
||||||
SubmitApplicationRechtsschutzRequest.class
|
SubmitApplicationRechtsschutzRequest.class
|
||||||
})
|
})
|
||||||
public abstract class SubmitApplicationRequestGenType
|
public abstract class SubmitApplicationRequestGenType
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
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.leben.SubmitApplicationLebenResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType;
|
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,
|
SubmitApplicationSachPrivatResponseType.class,
|
||||||
SubmitApplicationLebenResponseType.class,
|
SubmitApplicationLebenResponseType.class,
|
||||||
SubmitApplicationUnfallResponseType.class,
|
SubmitApplicationUnfallResponseType.class,
|
||||||
|
SubmitApplicationKrankenResponse.class,
|
||||||
SubmitApplicationRechtsschutzResponse.class
|
SubmitApplicationRechtsschutzResponse.class
|
||||||
})
|
})
|
||||||
public abstract class SubmitApplicationResponseGenType
|
public abstract class SubmitApplicationResponseGenType
|
||||||
|
|||||||
@@ -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>
|
||||||
|
* <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-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <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-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <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-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <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-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <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-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <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-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <complexType name="LeistungsartKranken_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
|
||||||
|
* <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <complexType name="ProduktKranken_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}LeistungsartKranken_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <complexType name="SpezAntragKranken_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <complexType name="SpezBerechnungKranken_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <complexType name="SpezOffertKranken_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <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-6-0.on2antrag.kranken}SpezAntragKranken_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <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-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
* <complexType name="VerkaufsproduktKranken_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Unfallprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type" maxOccurs="unbounded"/>
|
||||||
|
* <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
|
||||||
|
* <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -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;
|
||||||
@@ -49,7 +49,7 @@ public class ZusatzversicherungUnfallinvaliditaetType
|
|||||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||||
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
* 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 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>
|
* <p>
|
||||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
* 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:
|
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||||
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
* 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 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>
|
* <p>
|
||||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||||
|
|||||||
@@ -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>Java-Klasse für anonymous complex type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
|||||||
@@ -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>
|
||||||
@@ -356,7 +356,7 @@
|
|||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="Geschaeftsfallnummer" type="ObjektId_Type" minOccurs="0">
|
<xsd:element name="Geschaeftsfallnummer" type="ObjektId_Type" minOccurs="0">
|
||||||
<xsd:annotation>
|
<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:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
|
|||||||
@@ -186,4 +186,62 @@
|
|||||||
<xsd:element name="Zeitraum" type="cst:Zeitraum_Type"/>
|
<xsd:element name="Zeitraum" type="cst:Zeitraum_Type"/>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</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>
|
</xsd:schema>
|
||||||
|
|||||||
@@ -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: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: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: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: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:v="urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag"
|
||||||
xmlns:p="urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner"
|
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.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.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-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-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-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"/>
|
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag" schemaLocation="omds3_ON3_Vertrag.xsd"/>
|
||||||
@@ -265,6 +267,32 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|||||||
<part name="parameters" element="boaU:SubmitApplicationUnfallResponse"/>
|
<part name="parameters" element="boaU:SubmitApplicationUnfallResponse"/>
|
||||||
</message>
|
</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 -->
|
<!-- Leben -->
|
||||||
<message name="CalculateLebenRequestMsg">
|
<message name="CalculateLebenRequestMsg">
|
||||||
<part name="parameters" element="boaL:CalculateLebenRequest"/>
|
<part name="parameters" element="boaL:CalculateLebenRequest"/>
|
||||||
@@ -562,6 +590,27 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|||||||
<fault name="SubmitApplicationUnfallFault" message="os:ServiceFaultMsg"/>
|
<fault name="SubmitApplicationUnfallFault" message="os:ServiceFaultMsg"/>
|
||||||
</operation>
|
</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">
|
<operation name="calculateLeben">
|
||||||
<input name="CalculateLebenRequestPort" message="os:CalculateLebenRequestMsg"/>
|
<input name="CalculateLebenRequestPort" message="os:CalculateLebenRequestMsg"/>
|
||||||
<output name="CalculateLebenResponsePort" message="os:CalculateLebenResponseMsg"/>
|
<output name="CalculateLebenResponsePort" message="os:CalculateLebenResponseMsg"/>
|
||||||
@@ -1098,6 +1147,55 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|||||||
</fault>
|
</fault>
|
||||||
</operation>
|
</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 -->
|
<!-- Leben -->
|
||||||
|
|||||||
Reference in New Issue
Block a user