Unfall: Zwei neue Elemente in der Risikobeschreibung Person in 1.6,
Unfall: Korrektur SubmitApplicationUnfallRequest: War Response-Objekt referenziert, Generierte Java Klassen Produktfinder ergänzt Dokumentation BOA Allgemein neuer Stand gleich mit Development
This commit is contained in:
Binary file not shown.
@@ -34,6 +34,8 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
|
* <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
|
||||||
* <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
|
* <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
|
||||||
* <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
|
* <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
|
||||||
|
* <element name="BehandelnderArzt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="KontaktRueckfragen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
@@ -58,6 +60,8 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
"personenartKranken",
|
"personenartKranken",
|
||||||
"berufsgruppe",
|
"berufsgruppe",
|
||||||
"manuelleTaetigkeit",
|
"manuelleTaetigkeit",
|
||||||
|
"behandelnderArzt",
|
||||||
|
"kontaktRueckfragen",
|
||||||
"zusaetzlicheRisikodaten"
|
"zusaetzlicheRisikodaten"
|
||||||
})
|
})
|
||||||
public class RisikoNatPersonType {
|
public class RisikoNatPersonType {
|
||||||
@@ -88,6 +92,10 @@ public class RisikoNatPersonType {
|
|||||||
protected AttributEnumType berufsgruppe;
|
protected AttributEnumType berufsgruppe;
|
||||||
@XmlElement(name = "ManuelleTaetigkeit")
|
@XmlElement(name = "ManuelleTaetigkeit")
|
||||||
protected AttributEnumType manuelleTaetigkeit;
|
protected AttributEnumType manuelleTaetigkeit;
|
||||||
|
@XmlElement(name = "BehandelnderArzt")
|
||||||
|
protected String behandelnderArzt;
|
||||||
|
@XmlElement(name = "KontaktRueckfragen")
|
||||||
|
protected String kontaktRueckfragen;
|
||||||
@XmlElement(name = "ZusaetzlicheRisikodaten")
|
@XmlElement(name = "ZusaetzlicheRisikodaten")
|
||||||
protected List<ZusaetzlicheRisikodatenType> zusaetzlicheRisikodaten;
|
protected List<ZusaetzlicheRisikodatenType> zusaetzlicheRisikodaten;
|
||||||
|
|
||||||
@@ -413,6 +421,54 @@ public class RisikoNatPersonType {
|
|||||||
this.manuelleTaetigkeit = value;
|
this.manuelleTaetigkeit = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der behandelnderArzt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBehandelnderArzt() {
|
||||||
|
return behandelnderArzt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der behandelnderArzt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBehandelnderArzt(String value) {
|
||||||
|
this.behandelnderArzt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kontaktRueckfragen-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKontaktRueckfragen() {
|
||||||
|
return kontaktRueckfragen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kontaktRueckfragen-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKontaktRueckfragen(String value) {
|
||||||
|
this.kontaktRueckfragen = value;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the zusaetzlicheRisikodaten property.
|
* Gets the value of the zusaetzlicheRisikodaten property.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -0,0 +1,103 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.AuthorizationFilter;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Basistyp des Requestobjekts
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für FinderRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="FinderRequest_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
|
||||||
|
* <element name="Versicherungsbeginn" type="{http://www.w3.org/2001/XMLSchema}date"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "FinderRequest_Type", propOrder = {
|
||||||
|
"authFilter",
|
||||||
|
"versicherungsbeginn"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
VerkaufsproduktFinderRequestType.class
|
||||||
|
})
|
||||||
|
public class FinderRequestType
|
||||||
|
extends CommonRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "AuthFilter")
|
||||||
|
protected AuthorizationFilter authFilter;
|
||||||
|
@XmlElement(name = "Versicherungsbeginn", required = true)
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar versicherungsbeginn;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der authFilter-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AuthorizationFilter }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AuthorizationFilter getAuthFilter() {
|
||||||
|
return authFilter;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der authFilter-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AuthorizationFilter }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAuthFilter(AuthorizationFilter value) {
|
||||||
|
this.authFilter = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versicherungsbeginn-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getVersicherungsbeginn() {
|
||||||
|
return versicherungsbeginn;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versicherungsbeginn-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersicherungsbeginn(XMLGregorianCalendar value) {
|
||||||
|
this.versicherungsbeginn = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Basistyp des Responseobjekts
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für FinderResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="FinderResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "FinderResponse_Type")
|
||||||
|
@XmlSeeAlso({
|
||||||
|
VerkaufsproduktFinderResponseType.class
|
||||||
|
})
|
||||||
|
public class FinderResponseType
|
||||||
|
extends CommonResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,103 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder;
|
||||||
|
|
||||||
|
import javax.xml.bind.JAXBElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementDecl;
|
||||||
|
import javax.xml.bind.annotation.XmlRegistry;
|
||||||
|
import javax.xml.namespace.QName;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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.produktfinder 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 {
|
||||||
|
|
||||||
|
private final static QName _VerkaufsproduktfinderRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder", "VerkaufsproduktfinderRequest");
|
||||||
|
private final static QName _VerkaufsproduktfinderResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder", "VerkaufsproduktfinderResponse");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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.produktfinder
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjectFactory() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VerkaufsproduktFinderResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerkaufsproduktFinderResponseType createVerkaufsproduktFinderResponseType() {
|
||||||
|
return new VerkaufsproduktFinderResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VerkaufsproduktFinderRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerkaufsproduktFinderRequestType createVerkaufsproduktFinderRequestType() {
|
||||||
|
return new VerkaufsproduktFinderRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link FinderRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FinderRequestType createFinderRequestType() {
|
||||||
|
return new FinderRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link FinderResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FinderResponseType createFinderResponseType() {
|
||||||
|
return new FinderResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ProduktFinderResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ProduktFinderResponseType createProduktFinderResponseType() {
|
||||||
|
return new ProduktFinderResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VerkaufsproduktFinderResponseType.Verkaufsprodukte }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerkaufsproduktFinderResponseType.Verkaufsprodukte createVerkaufsproduktFinderResponseTypeVerkaufsprodukte() {
|
||||||
|
return new VerkaufsproduktFinderResponseType.Verkaufsprodukte();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link VerkaufsproduktFinderRequestType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder", name = "VerkaufsproduktfinderRequest")
|
||||||
|
public JAXBElement<VerkaufsproduktFinderRequestType> createVerkaufsproduktfinderRequest(VerkaufsproduktFinderRequestType value) {
|
||||||
|
return new JAXBElement<VerkaufsproduktFinderRequestType>(_VerkaufsproduktfinderRequest_QNAME, VerkaufsproduktFinderRequestType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link VerkaufsproduktFinderResponseType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder", name = "VerkaufsproduktfinderResponse")
|
||||||
|
public JAXBElement<VerkaufsproduktFinderResponseType> createVerkaufsproduktfinderResponse(VerkaufsproduktFinderResponseType value) {
|
||||||
|
return new JAXBElement<VerkaufsproduktFinderResponseType>(_VerkaufsproduktfinderResponse_QNAME, VerkaufsproduktFinderResponseType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,211 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Informationen zu einem Produkt
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ProduktFinderResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ProduktFinderResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="VerkaufsoffenVon" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||||
|
* <element name="VerkaufsoffenBis" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ProduktFinderResponse_Type", propOrder = {
|
||||||
|
"id",
|
||||||
|
"bezeichnung",
|
||||||
|
"produktgeneration",
|
||||||
|
"bedingungen",
|
||||||
|
"verkaufsoffenVon",
|
||||||
|
"verkaufsoffenBis"
|
||||||
|
})
|
||||||
|
public class ProduktFinderResponseType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Id")
|
||||||
|
protected String id;
|
||||||
|
@XmlElement(name = "Bezeichnung")
|
||||||
|
protected String bezeichnung;
|
||||||
|
@XmlElement(name = "Produktgeneration")
|
||||||
|
protected String produktgeneration;
|
||||||
|
@XmlElement(name = "Bedingungen")
|
||||||
|
protected List<String> bedingungen;
|
||||||
|
@XmlElement(name = "VerkaufsoffenVon", required = true)
|
||||||
|
protected Object verkaufsoffenVon;
|
||||||
|
@XmlElement(name = "VerkaufsoffenBis")
|
||||||
|
protected Object verkaufsoffenBis;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der id-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der id-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setId(String value) {
|
||||||
|
this.id = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBezeichnung() {
|
||||||
|
return bezeichnung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBezeichnung(String value) {
|
||||||
|
this.bezeichnung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der produktgeneration-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getProduktgeneration() {
|
||||||
|
return produktgeneration;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der produktgeneration-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProduktgeneration(String value) {
|
||||||
|
this.produktgeneration = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the bedingungen 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 bedingungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getBedingungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getBedingungen() {
|
||||||
|
if (bedingungen == null) {
|
||||||
|
bedingungen = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.bedingungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsoffenVon-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getVerkaufsoffenVon() {
|
||||||
|
return verkaufsoffenVon;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsoffenVon-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsoffenVon(Object value) {
|
||||||
|
this.verkaufsoffenVon = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsoffenBis-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getVerkaufsoffenBis() {
|
||||||
|
return verkaufsoffenBis;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsoffenBis-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsoffenBis(Object value) {
|
||||||
|
this.verkaufsoffenBis = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ des Requestobjekts für den Verkaufsproduktfinder
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für VerkaufsproduktFinderRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VerkaufsproduktFinderRequest_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder}FinderRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Sparte" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VerkaufsproduktFinderRequest_Type", propOrder = {
|
||||||
|
"sparte"
|
||||||
|
})
|
||||||
|
public class VerkaufsproduktFinderRequestType
|
||||||
|
extends FinderRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Sparte", required = true)
|
||||||
|
protected String sparte;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sparte-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSparte() {
|
||||||
|
return sparte;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sparte-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSparte(String value) {
|
||||||
|
this.sparte = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,350 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ des Responseobjekts für den Verkaufsproduktfinder
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für VerkaufsproduktFinderResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VerkaufsproduktFinderResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder}FinderResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Sparte" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Verkaufsprodukte" maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="VerkaufsoffenVon" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||||
|
* <element name="VerkaufsoffenBis" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
||||||
|
* <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder}ProduktFinderResponse_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VerkaufsproduktFinderResponse_Type", propOrder = {
|
||||||
|
"sparte",
|
||||||
|
"verkaufsprodukte"
|
||||||
|
})
|
||||||
|
public class VerkaufsproduktFinderResponseType
|
||||||
|
extends FinderResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Sparte", required = true)
|
||||||
|
protected String sparte;
|
||||||
|
@XmlElement(name = "Verkaufsprodukte")
|
||||||
|
protected List<VerkaufsproduktFinderResponseType.Verkaufsprodukte> verkaufsprodukte;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sparte-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSparte() {
|
||||||
|
return sparte;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sparte-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSparte(String value) {
|
||||||
|
this.sparte = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the verkaufsprodukte 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 verkaufsprodukte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVerkaufsprodukte().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link VerkaufsproduktFinderResponseType.Verkaufsprodukte }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<VerkaufsproduktFinderResponseType.Verkaufsprodukte> getVerkaufsprodukte() {
|
||||||
|
if (verkaufsprodukte == null) {
|
||||||
|
verkaufsprodukte = new ArrayList<VerkaufsproduktFinderResponseType.Verkaufsprodukte>();
|
||||||
|
}
|
||||||
|
return this.verkaufsprodukte;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="VerkaufsoffenVon" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||||
|
* <element name="VerkaufsoffenBis" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
||||||
|
* <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder}ProduktFinderResponse_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"id",
|
||||||
|
"bezeichnung",
|
||||||
|
"verkaufsproduktgeneration",
|
||||||
|
"bedingungen",
|
||||||
|
"verkaufsoffenVon",
|
||||||
|
"verkaufsoffenBis",
|
||||||
|
"produkte"
|
||||||
|
})
|
||||||
|
public static class Verkaufsprodukte {
|
||||||
|
|
||||||
|
@XmlElement(name = "Id")
|
||||||
|
protected String id;
|
||||||
|
@XmlElement(name = "Bezeichnung")
|
||||||
|
protected String bezeichnung;
|
||||||
|
@XmlElement(name = "Verkaufsproduktgeneration")
|
||||||
|
protected String verkaufsproduktgeneration;
|
||||||
|
@XmlElement(name = "Bedingungen")
|
||||||
|
protected List<String> bedingungen;
|
||||||
|
@XmlElement(name = "VerkaufsoffenVon", required = true)
|
||||||
|
protected Object verkaufsoffenVon;
|
||||||
|
@XmlElement(name = "VerkaufsoffenBis")
|
||||||
|
protected Object verkaufsoffenBis;
|
||||||
|
@XmlElement(name = "Produkte")
|
||||||
|
protected List<ProduktFinderResponseType> produkte;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der id-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der id-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setId(String value) {
|
||||||
|
this.id = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBezeichnung() {
|
||||||
|
return bezeichnung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBezeichnung(String value) {
|
||||||
|
this.bezeichnung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsproduktgeneration-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVerkaufsproduktgeneration() {
|
||||||
|
return verkaufsproduktgeneration;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsproduktgeneration(String value) {
|
||||||
|
this.verkaufsproduktgeneration = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the bedingungen 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 bedingungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getBedingungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getBedingungen() {
|
||||||
|
if (bedingungen == null) {
|
||||||
|
bedingungen = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.bedingungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsoffenVon-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getVerkaufsoffenVon() {
|
||||||
|
return verkaufsoffenVon;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsoffenVon-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsoffenVon(Object value) {
|
||||||
|
this.verkaufsoffenVon = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsoffenBis-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getVerkaufsoffenBis() {
|
||||||
|
return verkaufsoffenBis;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsoffenBis-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsoffenBis(Object value) {
|
||||||
|
this.verkaufsoffenBis = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the produkte 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 produkte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getProdukte().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ProduktFinderResponseType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ProduktFinderResponseType> getProdukte() {
|
||||||
|
if (produkte == null) {
|
||||||
|
produkte = new ArrayList<ProduktFinderResponseType>();
|
||||||
|
}
|
||||||
|
return this.produkte;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder;
|
||||||
@@ -50,15 +50,15 @@ public class GenElementarproduktGebaeudeType
|
|||||||
{
|
{
|
||||||
|
|
||||||
@XmlElementRefs({
|
@XmlElementRefs({
|
||||||
@XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Nebenkosten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
|
@XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Nebenkosten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
|
||||||
@XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
|
|
||||||
})
|
})
|
||||||
protected List<JAXBElement<?>> rest;
|
protected List<JAXBElement<?>> rest;
|
||||||
|
|
||||||
@@ -90,15 +90,15 @@ public class GenElementarproduktGebaeudeType
|
|||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link JAXBElement }{@code <}{@link Long }{@code >}
|
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link String }{@code >}
|
* {@link JAXBElement }{@code <}{@link String }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
|
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link Long }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -50,15 +50,15 @@ public class GenElementarproduktHaushaltType
|
|||||||
{
|
{
|
||||||
|
|
||||||
@XmlElementRefs({
|
@XmlElementRefs({
|
||||||
@XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
|
||||||
@XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
|
||||||
@XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Vorsorge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
|
@XmlElementRef(name = "Unterversicherungsverzicht", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
|
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
|
@XmlElementRef(name = "Hoechsthaftungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
|
@XmlElementRef(name = "Sparte", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "ProzentVersicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Nebenkosten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Nebenkosten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
|
||||||
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false),
|
|
||||||
@XmlElementRef(name = "Pauschalbetrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", type = JAXBElement.class, required = false)
|
|
||||||
})
|
})
|
||||||
protected List<JAXBElement<?>> rest;
|
protected List<JAXBElement<?>> rest;
|
||||||
|
|
||||||
@@ -90,15 +90,15 @@ public class GenElementarproduktHaushaltType
|
|||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link JAXBElement }{@code <}{@link String }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link String }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link Long }{@code >}
|
* {@link JAXBElement }{@code <}{@link Long }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
* {@link JAXBElement }{@code <}{@link KostenFixOderProzentType }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
|
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -88,6 +88,14 @@ public class ObjectFactory {
|
|||||||
return new CreateApplicationUnfallResponseType();
|
return new CreateApplicationUnfallResponseType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SubmitApplicationUnfallRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SubmitApplicationUnfallRequestType createSubmitApplicationUnfallRequestType() {
|
||||||
|
return new SubmitApplicationUnfallRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link SubmitApplicationUnfallResponseType }
|
* Create an instance of {@link SubmitApplicationUnfallResponseType }
|
||||||
*
|
*
|
||||||
@@ -144,14 +152,6 @@ public class ObjectFactory {
|
|||||||
return new SpezAntragUnfallType();
|
return new SpezAntragUnfallType();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create an instance of {@link SubmitApplicationUnfallRequestType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public SubmitApplicationUnfallRequestType createSubmitApplicationUnfallRequestType() {
|
|
||||||
return new SubmitApplicationUnfallRequestType();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >}}
|
||||||
*
|
*
|
||||||
@@ -207,12 +207,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallResponseType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationUnfallRequestType }{@code >}}
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallRequest")
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "SubmitApplicationUnfallRequest")
|
||||||
public JAXBElement<SubmitApplicationUnfallResponseType> createSubmitApplicationUnfallRequest(SubmitApplicationUnfallResponseType value) {
|
public JAXBElement<SubmitApplicationUnfallRequestType> createSubmitApplicationUnfallRequest(SubmitApplicationUnfallRequestType value) {
|
||||||
return new JAXBElement<SubmitApplicationUnfallResponseType>(_SubmitApplicationUnfallRequest_QNAME, SubmitApplicationUnfallResponseType.class, null, value);
|
return new JAXBElement<SubmitApplicationUnfallRequestType>(_SubmitApplicationUnfallRequest_QNAME, SubmitApplicationUnfallRequestType.class, null, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* This class was generated by Apache CXF 3.2.0
|
||||||
* 2020-04-18T12:39:54.196+02:00
|
* 2020-04-21T17:01:56.119+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* This class was generated by Apache CXF 3.2.0
|
||||||
* 2020-04-18T12:39:54.134+02:00
|
* 2020-04-21T17:01:56.061+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@@ -593,9 +593,9 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType parameters) throws ServiceFaultMsg {
|
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallRequestType parameters) throws ServiceFaultMsg {
|
||||||
LOG.info("Executing operation submitApplicationUnfall");
|
LOG.info("Executing operation submitApplicationUnfall");
|
||||||
System.out.println(parameters);
|
System.out.println(parameters);
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* This class was generated by Apache CXF 3.2.0
|
||||||
* 2020-04-18T12:39:54.169+02:00
|
* 2020-04-21T17:01:56.102+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@@ -267,7 +267,7 @@ public interface OmdsServicePortType {
|
|||||||
@WebResult(name = "SubmitApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "parameters")
|
@WebResult(name = "SubmitApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall(
|
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType submitApplicationUnfall(
|
||||||
@WebParam(partName = "parameters", name = "SubmitApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall")
|
@WebParam(partName = "parameters", name = "SubmitApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall")
|
||||||
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType parameters
|
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:getDocumentsOfObject")
|
@WebMethod(action = "urn:getDocumentsOfObject")
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* This class was generated by Apache CXF 3.2.0
|
||||||
* 2020-04-18T12:39:54.067+02:00
|
* 2020-04-21T17:01:55.990+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@@ -470,7 +470,7 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
System.out.println("Invoking submitApplicationUnfall...");
|
System.out.println("Invoking submitApplicationUnfall...");
|
||||||
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _submitApplicationUnfall_parameters = null;
|
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallRequestType _submitApplicationUnfall_parameters = null;
|
||||||
try {
|
try {
|
||||||
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _submitApplicationUnfall__return = port.submitApplicationUnfall(_submitApplicationUnfall_parameters);
|
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _submitApplicationUnfall__return = port.submitApplicationUnfall(_submitApplicationUnfall_parameters);
|
||||||
System.out.println("submitApplicationUnfall.result=" + _submitApplicationUnfall__return);
|
System.out.println("submitApplicationUnfall.result=" + _submitApplicationUnfall__return);
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* This class was generated by Apache CXF 3.2.0
|
||||||
* 2020-04-18T12:39:54.119+02:00
|
* 2020-04-21T17:01:56.052+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -1889,6 +1889,8 @@
|
|||||||
<xsd:element name="PersonenartKranken" type="AttributEnum_Type" minOccurs="0"/>
|
<xsd:element name="PersonenartKranken" type="AttributEnum_Type" minOccurs="0"/>
|
||||||
<xsd:element name="Berufsgruppe" type="AttributEnum_Type" minOccurs="0"/>
|
<xsd:element name="Berufsgruppe" type="AttributEnum_Type" minOccurs="0"/>
|
||||||
<xsd:element name="ManuelleTaetigkeit" type="AttributEnum_Type" minOccurs="0"/>
|
<xsd:element name="ManuelleTaetigkeit" type="AttributEnum_Type" minOccurs="0"/>
|
||||||
|
<xsd:element name="BehandelnderArzt" type="xsd:string" minOccurs="0"/>
|
||||||
|
<xsd:element name="KontaktRueckfragen" type="xsd:string" minOccurs="0"/>
|
||||||
<xsd:element name="ZusaetzlicheRisikodaten" type="ZusaetzlicheRisikodaten_Type" minOccurs="0" maxOccurs="unbounded"/>
|
<xsd:element name="ZusaetzlicheRisikodaten" type="ZusaetzlicheRisikodaten_Type" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
|
|||||||
@@ -238,7 +238,7 @@
|
|||||||
<xsd:documentation>Responseobjekt für die Antragserzeugung Unfall</xsd:documentation>
|
<xsd:documentation>Responseobjekt für die Antragserzeugung Unfall</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="SubmitApplicationUnfallRequest" type="SubmitApplicationUnfallResponse_Type">
|
<xsd:element name="SubmitApplicationUnfallRequest" type="SubmitApplicationUnfallRequest_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Requestobjekt für die Antragsüberleitung Unfall</xsd:documentation>
|
<xsd:documentation>Requestobjekt für die Antragsüberleitung Unfall</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
|
|||||||
@@ -1889,6 +1889,8 @@
|
|||||||
<xsd:element name="PersonenartKranken" type="AttributEnum_Type" minOccurs="0"/>
|
<xsd:element name="PersonenartKranken" type="AttributEnum_Type" minOccurs="0"/>
|
||||||
<xsd:element name="Berufsgruppe" type="AttributEnum_Type" minOccurs="0"/>
|
<xsd:element name="Berufsgruppe" type="AttributEnum_Type" minOccurs="0"/>
|
||||||
<xsd:element name="ManuelleTaetigkeit" type="AttributEnum_Type" minOccurs="0"/>
|
<xsd:element name="ManuelleTaetigkeit" type="AttributEnum_Type" minOccurs="0"/>
|
||||||
|
<xsd:element name="BehandelnderArzt" type="xsd:string" minOccurs="0"/>
|
||||||
|
<xsd:element name="KontaktRueckfragen" type="xsd:string" minOccurs="0"/>
|
||||||
<xsd:element name="ZusaetzlicheRisikodaten" type="ZusaetzlicheRisikodaten_Type" minOccurs="0" maxOccurs="unbounded"/>
|
<xsd:element name="ZusaetzlicheRisikodaten" type="ZusaetzlicheRisikodaten_Type" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
|
|||||||
@@ -238,7 +238,7 @@
|
|||||||
<xsd:documentation>Responseobjekt für die Antragserzeugung Unfall</xsd:documentation>
|
<xsd:documentation>Responseobjekt für die Antragserzeugung Unfall</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="SubmitApplicationUnfallRequest" type="SubmitApplicationUnfallResponse_Type">
|
<xsd:element name="SubmitApplicationUnfallRequest" type="SubmitApplicationUnfallRequest_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Requestobjekt für die Antragsüberleitung Unfall</xsd:documentation>
|
<xsd:documentation>Requestobjekt für die Antragsüberleitung Unfall</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
|
|||||||
Reference in New Issue
Block a user