This commit is contained in:
2019-08-29 07:33:58 +02:00
85 changed files with 1125 additions and 4638 deletions

2
.gitignore vendored
View File

@@ -2,5 +2,3 @@ OMDSServiceDefinition/.settings/
OMDSServiceDefinition/doc/WSDL-XSD-Dokumentation/
OMDSServiceDefinition/.project
.project
OMDSServiceDefinition/.idea/
OMDSServiceDefinition/OMDSServiceDefinition.iml

View File

@@ -1,35 +1,24 @@
=================
R E A D M E
=================
Maven Goals
===========
Mit Maven Goal "clean package" kann ein Release als ZIP-File mit XSDs und WSDLs sowie der Dokumentation gebaut werden.
Mit Maven Goal "clean deploy" wird der Release in das OMDS Repository geladen.
Mit Maven Goal "clean deploy" wird der Release in das Kap Dion OMDS Repository geladen.
Codegenerierung
===============
Mit Maven Goal "clean package" und Profil
- "genJavaFromWsdl_r1_4_0_VU" wird der zugehörige Java-Code für Versicherungsunternehmen generiert.
- "genJavaFromWsdl_r1_4_0_Broker" wird der zugehörige Java-Code für Services der Broker generiert.
Mit Maven Goal "clean package" und Profil "genJavaFromWsdl" wird der zugehörige Java-Code generiert.
Anpassung für MTOM
==================
MTOM wird in der Codegenerierung nicht berücksichtigt, muss daher danach von Hand eingefügt werden.
ODMS MTOM in Java classes after code generation
Server (Class: OmdsServicePortImpl)
Hinzufügen des Imports:
Add import:
import javax.xml.ws.soap.MTOM;
Hinzufügen der folgenden Annotation für die Klasse (oberhalb des Klassennamens):
Add a class annotation (above the class name):
@MTOM(enabled = true, threshold = 1024)
Client (Class: OmdsServicePortType_OmdsServicePort_Client)
Hinzufügen des Imports:
Add import:
import javax.xml.ws.soap.MTOMFeature;
Überschreiben der OMDSService-Creation:
Rewrite the OMDSService creation like following:
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024));

View File

@@ -242,7 +242,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>genJavaFromWsdl_r1_4_0_VU</name>
<name>codeGen</name>
</property>
</activation>
<properties>

View File

@@ -1,162 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
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 javax.xml.datatype.XMLGregorianCalendar;
/**
* Typ mit Metadaten für xsd:date-Attribute
*
* <p>Java-Klasse für AttributMetadatenDatum_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributMetadatenDatum_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/&gt;
* &lt;element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}WertAuswahllisteDatum_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Min" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/&gt;
* &lt;element name="Max" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributMetadatenDatum_Type", propOrder = {
"_default",
"values",
"min",
"max"
})
public class AttributMetadatenDatumType
extends AttributMetadatenType
{
@XmlElement(name = "Default")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar _default;
@XmlElement(name = "Values")
protected List<WertAuswahllisteDatumType> values;
@XmlElement(name = "Min")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar min;
@XmlElement(name = "Max")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar max;
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDefault(XMLGregorianCalendar value) {
this._default = value;
}
/**
* Gets the value of the values 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 values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WertAuswahllisteDatumType }
*
*
*/
public List<WertAuswahllisteDatumType> getValues() {
if (values == null) {
values = new ArrayList<WertAuswahllisteDatumType>();
}
return this.values;
}
/**
* Ruft den Wert der min-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMin() {
return min;
}
/**
* Legt den Wert der min-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMin(XMLGregorianCalendar value) {
this.min = value;
}
/**
* Ruft den Wert der max-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMax() {
return max;
}
/**
* Legt den Wert der max-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMax(XMLGregorianCalendar value) {
this.max = value;
}
}

View File

@@ -1,158 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
import java.math.BigDecimal;
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 mit Metadaten für omds:decimal-Attribute
*
* <p>Java-Klasse für AttributMetadatenDezimal_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributMetadatenDezimal_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Default" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}WertAuswahllisteDezimal_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Min" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;element name="Max" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributMetadatenDezimal_Type", propOrder = {
"_default",
"values",
"min",
"max"
})
public class AttributMetadatenDezimalType
extends AttributMetadatenType
{
@XmlElement(name = "Default")
protected BigDecimal _default;
@XmlElement(name = "Values")
protected List<WertAuswahllisteDezimalType> values;
@XmlElement(name = "Min")
protected BigDecimal min;
@XmlElement(name = "Max")
protected BigDecimal max;
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setDefault(BigDecimal value) {
this._default = value;
}
/**
* Gets the value of the values 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 values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WertAuswahllisteDezimalType }
*
*
*/
public List<WertAuswahllisteDezimalType> getValues() {
if (values == null) {
values = new ArrayList<WertAuswahllisteDezimalType>();
}
return this.values;
}
/**
* Ruft den Wert der min-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMin() {
return min;
}
/**
* Legt den Wert der min-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMin(BigDecimal value) {
this.min = value;
}
/**
* Ruft den Wert der max-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMax() {
return max;
}
/**
* Legt den Wert der max-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMax(BigDecimal value) {
this.max = value;
}
}

View File

@@ -1,157 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
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 mit Metadaten für xsd:int-Attribute
*
* <p>Java-Klasse für AttributMetadatenInt_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributMetadatenInt_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}WertAuswahllisteInt_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Min" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;element name="Max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributMetadatenInt_Type", propOrder = {
"_default",
"values",
"min",
"max"
})
public class AttributMetadatenIntType
extends AttributMetadatenType
{
@XmlElement(name = "Default")
protected Integer _default;
@XmlElement(name = "Values")
protected List<WertAuswahllisteIntType> values;
@XmlElement(name = "Min")
protected Integer min;
@XmlElement(name = "Max")
protected Integer max;
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDefault(Integer value) {
this._default = value;
}
/**
* Gets the value of the values 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 values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WertAuswahllisteIntType }
*
*
*/
public List<WertAuswahllisteIntType> getValues() {
if (values == null) {
values = new ArrayList<WertAuswahllisteIntType>();
}
return this.values;
}
/**
* Ruft den Wert der min-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMin() {
return min;
}
/**
* Legt den Wert der min-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMin(Integer value) {
this.min = value;
}
/**
* Ruft den Wert der max-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMax() {
return max;
}
/**
* Legt den Wert der max-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMax(Integer value) {
this.max = value;
}
}

View File

@@ -1,158 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
import java.math.BigDecimal;
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 mit Metadaten für omds:decimal-Attribute mit Prozent-Bedeutung
*
* <p>Java-Klasse für AttributMetadatenProzent_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributMetadatenProzent_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Default" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}WertAuswahllisteInt_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Min" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;element name="Max" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributMetadatenProzent_Type", propOrder = {
"_default",
"values",
"min",
"max"
})
public class AttributMetadatenProzentType
extends AttributMetadatenType
{
@XmlElement(name = "Default")
protected BigDecimal _default;
@XmlElement(name = "Values")
protected List<WertAuswahllisteIntType> values;
@XmlElement(name = "Min")
protected BigDecimal min;
@XmlElement(name = "Max")
protected BigDecimal max;
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setDefault(BigDecimal value) {
this._default = value;
}
/**
* Gets the value of the values 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 values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WertAuswahllisteIntType }
*
*
*/
public List<WertAuswahllisteIntType> getValues() {
if (values == null) {
values = new ArrayList<WertAuswahllisteIntType>();
}
return this.values;
}
/**
* Ruft den Wert der min-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMin() {
return min;
}
/**
* Legt den Wert der min-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMin(BigDecimal value) {
this.min = value;
}
/**
* Ruft den Wert der max-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMax() {
return max;
}
/**
* Legt den Wert der max-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMax(BigDecimal value) {
this.max = value;
}
}

View File

@@ -1,188 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
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;
/**
* Typ mit Metadaten für xsd:string-Attribute
*
* <p>Java-Klasse für AttributMetadatenString_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributMetadatenString_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}WertAuswahllisteString_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/&gt;
* &lt;element name="Regex" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributMetadatenString_Type", propOrder = {
"_default",
"values",
"minLaenge",
"maxLaenge",
"regex"
})
public class AttributMetadatenStringType
extends AttributMetadatenType
{
@XmlElement(name = "Default")
protected String _default;
@XmlElement(name = "Values")
protected List<WertAuswahllisteStringType> values;
@XmlElement(name = "MinLaenge")
@XmlSchemaType(name = "unsignedInt")
protected Long minLaenge;
@XmlElement(name = "MaxLaenge")
@XmlSchemaType(name = "unsignedInt")
protected Long maxLaenge;
@XmlElement(name = "Regex")
protected String regex;
/**
* Ruft den Wert der default-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDefault() {
return _default;
}
/**
* Legt den Wert der default-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDefault(String value) {
this._default = value;
}
/**
* Gets the value of the values 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 values property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getValues().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WertAuswahllisteStringType }
*
*
*/
public List<WertAuswahllisteStringType> getValues() {
if (values == null) {
values = new ArrayList<WertAuswahllisteStringType>();
}
return this.values;
}
/**
* Ruft den Wert der minLaenge-Eigenschaft ab.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getMinLaenge() {
return minLaenge;
}
/**
* Legt den Wert der minLaenge-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setMinLaenge(Long value) {
this.minLaenge = value;
}
/**
* Ruft den Wert der maxLaenge-Eigenschaft ab.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getMaxLaenge() {
return maxLaenge;
}
/**
* Legt den Wert der maxLaenge-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setMaxLaenge(Long value) {
this.maxLaenge = value;
}
/**
* Ruft den Wert der regex-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegex() {
return regex;
}
/**
* Legt den Wert der regex-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRegex(String value) {
this.regex = value;
}
}

View File

@@ -1,92 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Abstrakter Basistyp für Metadaten von Attributen
*
* <p>Java-Klasse für AttributMetadaten_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributMetadaten_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Attribut" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
* &lt;element name="Aenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributMetadaten_Type", propOrder = {
"attribut",
"aenderbar"
})
@XmlSeeAlso({
AttributMetadatenStringType.class,
AttributMetadatenIntType.class,
AttributMetadatenDezimalType.class,
AttributMetadatenProzentType.class,
AttributMetadatenDatumType.class
})
public abstract class AttributMetadatenType {
@XmlElement(name = "Attribut", required = true)
protected Object attribut;
@XmlElement(name = "Aenderbar")
protected boolean aenderbar;
/**
* Ruft den Wert der attribut-Eigenschaft ab.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getAttribut() {
return attribut;
}
/**
* Legt den Wert der attribut-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setAttribut(Object value) {
this.attribut = value;
}
/**
* Ruft den Wert der aenderbar-Eigenschaft ab.
*
*/
public boolean isAenderbar() {
return aenderbar;
}
/**
* Legt den Wert der aenderbar-Eigenschaft fest.
*
*/
public void setAenderbar(boolean value) {
this.aenderbar = value;
}
}

View File

@@ -1,82 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.ElementarproduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.ElementarproduktUnfallType;
/**
* Basistyp für ein Elementarprodukt, 2. Generation
*
* <p>Java-Klasse für ElementarproduktGenerisch_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ElementarproduktGenerisch_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozessGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = {
"zusaetzlicheElementarproduktdaten"
})
@XmlSeeAlso({
ElementarproduktRechtsschutzType.class,
ElementarproduktSachPrivatType.class,
ElementarproduktUnfallType.class
})
public abstract class ElementarproduktGenerischType
extends ProduktbausteinAntragsprozessGenerischType
{
@XmlElement(name = "ZusaetzlicheElementarproduktdaten")
protected List<ZusaetzlicheElementarproduktdatenType> zusaetzlicheElementarproduktdaten;
/**
* Gets the value of the zusaetzlicheElementarproduktdaten 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 zusaetzlicheElementarproduktdaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusaetzlicheElementarproduktdaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ZusaetzlicheElementarproduktdatenType }
*
*
*/
public List<ZusaetzlicheElementarproduktdatenType> getZusaetzlicheElementarproduktdaten() {
if (zusaetzlicheElementarproduktdaten == null) {
zusaetzlicheElementarproduktdaten = new ArrayList<ZusaetzlicheElementarproduktdatenType>();
}
return this.zusaetzlicheElementarproduktdaten;
}
}

View File

@@ -10,6 +10,9 @@ import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ElementarproduktKfzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.ElementarproduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.ElementarproduktUnfallType;
/**
@@ -39,7 +42,10 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VerkehrsrechtsschutzKfz
})
@XmlSeeAlso({
ElementarproduktKfzType.class,
VerkehrsrechtsschutzKfzType.class
VerkehrsrechtsschutzKfzType.class,
ElementarproduktRechtsschutzType.class,
ElementarproduktSachPrivatType.class,
ElementarproduktUnfallType.class
})
public abstract class ElementarproduktType
extends ProduktbausteinAntragsprozessType

View File

@@ -398,86 +398,6 @@ public class ObjectFactory {
return new SchadenObjektSpezifikationType();
}
/**
* Create an instance of {@link AttributMetadatenStringType }
*
*/
public AttributMetadatenStringType createAttributMetadatenStringType() {
return new AttributMetadatenStringType();
}
/**
* Create an instance of {@link AttributMetadatenIntType }
*
*/
public AttributMetadatenIntType createAttributMetadatenIntType() {
return new AttributMetadatenIntType();
}
/**
* Create an instance of {@link AttributMetadatenDezimalType }
*
*/
public AttributMetadatenDezimalType createAttributMetadatenDezimalType() {
return new AttributMetadatenDezimalType();
}
/**
* Create an instance of {@link AttributMetadatenProzentType }
*
*/
public AttributMetadatenProzentType createAttributMetadatenProzentType() {
return new AttributMetadatenProzentType();
}
/**
* Create an instance of {@link AttributMetadatenDatumType }
*
*/
public AttributMetadatenDatumType createAttributMetadatenDatumType() {
return new AttributMetadatenDatumType();
}
/**
* Create an instance of {@link WertAuswahllisteStringType }
*
*/
public WertAuswahllisteStringType createWertAuswahllisteStringType() {
return new WertAuswahllisteStringType();
}
/**
* Create an instance of {@link WertAuswahllisteIntType }
*
*/
public WertAuswahllisteIntType createWertAuswahllisteIntType() {
return new WertAuswahllisteIntType();
}
/**
* Create an instance of {@link WertAuswahllisteDezimalType }
*
*/
public WertAuswahllisteDezimalType createWertAuswahllisteDezimalType() {
return new WertAuswahllisteDezimalType();
}
/**
* Create an instance of {@link WertAuswahllisteProzentType }
*
*/
public WertAuswahllisteProzentType createWertAuswahllisteProzentType() {
return new WertAuswahllisteProzentType();
}
/**
* Create an instance of {@link WertAuswahllisteDatumType }
*
*/
public WertAuswahllisteDatumType createWertAuswahllisteDatumType() {
return new WertAuswahllisteDatumType();
}
/**
* Create an instance of {@link ZahlwegType.Kundenkonto }
*

View File

@@ -1,197 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.ProduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.ProduktSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.ProduktUnfallType;
/**
* Basistyp für ein Produkt, 2. Generation
*
* <p>Java-Klasse für ProduktGenerisch_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ProduktGenerisch_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozessGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/&gt;
* &lt;element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/&gt;
* &lt;element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type"/&gt;
* &lt;element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktGenerisch_Type", propOrder = {
"produktgeneration",
"zahlweg",
"zahlrhythmus",
"hauptfaelligkeit",
"zusaetzlicheProduktdaten"
})
@XmlSeeAlso({
ProduktRechtsschutzType.class,
ProduktSachPrivatType.class,
ProduktUnfallType.class
})
public abstract class ProduktGenerischType
extends ProduktbausteinAntragsprozessGenerischType
{
@XmlElement(name = "Produktgeneration", required = true)
protected String produktgeneration;
@XmlElement(name = "Zahlweg")
protected String zahlweg;
@XmlElement(name = "Zahlrhythmus")
protected String zahlrhythmus;
@XmlElement(name = "Hauptfaelligkeit", required = true)
@XmlSchemaType(name = "gMonthDay")
protected XMLGregorianCalendar hauptfaelligkeit;
@XmlElement(name = "ZusaetzlicheProduktdaten")
protected List<ZusaetzlicheProduktdatenType> zusaetzlicheProduktdaten;
/**
* 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;
}
/**
* Ruft den Wert der zahlweg-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZahlweg() {
return zahlweg;
}
/**
* Legt den Wert der zahlweg-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZahlweg(String value) {
this.zahlweg = value;
}
/**
* Ruft den Wert der zahlrhythmus-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZahlrhythmus() {
return zahlrhythmus;
}
/**
* Legt den Wert der zahlrhythmus-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZahlrhythmus(String value) {
this.zahlrhythmus = value;
}
/**
* Ruft den Wert der hauptfaelligkeit-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getHauptfaelligkeit() {
return hauptfaelligkeit;
}
/**
* Legt den Wert der hauptfaelligkeit-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setHauptfaelligkeit(XMLGregorianCalendar value) {
this.hauptfaelligkeit = value;
}
/**
* Gets the value of the zusaetzlicheProduktdaten 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 zusaetzlicheProduktdaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusaetzlicheProduktdaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ZusaetzlicheProduktdatenType }
*
*
*/
public List<ZusaetzlicheProduktdatenType> getZusaetzlicheProduktdaten() {
if (zusaetzlicheProduktdaten == null) {
zusaetzlicheProduktdaten = new ArrayList<ZusaetzlicheProduktdatenType>();
}
return this.zusaetzlicheProduktdaten;
}
}

View File

@@ -12,6 +12,9 @@ import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ProduktKfzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ZusatzproduktKfzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.ProduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.ProduktSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.ProduktUnfallType;
/**
@@ -49,7 +52,10 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ZusatzproduktKfzType;
})
@XmlSeeAlso({
ProduktKfzType.class,
ZusatzproduktKfzType.class
ZusatzproduktKfzType.class,
ProduktRechtsschutzType.class,
ProduktSachPrivatType.class,
ProduktUnfallType.class
})
public abstract class ProduktType
extends ProduktbausteinAntragsprozessType

View File

@@ -1,91 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Abstrakter Typ für Produktbausteine der Ebene 2 und 3 bei generischen Produkten
*
* <p>Java-Klasse für ProduktbausteinAntragsprozessGenerisch_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ProduktbausteinAntragsprozessGenerisch_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozess_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Eingeschlossen" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;element name="EinschlussAenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktbausteinAntragsprozessGenerisch_Type", propOrder = {
"eingeschlossen",
"einschlussAenderbar"
})
@XmlSeeAlso({
ProduktGenerischType.class,
ElementarproduktGenerischType.class
})
public abstract class ProduktbausteinAntragsprozessGenerischType
extends ProduktbausteinAntragsprozessType
{
@XmlElement(name = "Eingeschlossen")
protected boolean eingeschlossen;
@XmlElement(name = "EinschlussAenderbar")
protected Boolean einschlussAenderbar;
/**
* Ruft den Wert der eingeschlossen-Eigenschaft ab.
*
*/
public boolean isEingeschlossen() {
return eingeschlossen;
}
/**
* Legt den Wert der eingeschlossen-Eigenschaft fest.
*
*/
public void setEingeschlossen(boolean value) {
this.eingeschlossen = value;
}
/**
* Ruft den Wert der einschlussAenderbar-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEinschlussAenderbar() {
return einschlussAenderbar;
}
/**
* Legt den Wert der einschlussAenderbar-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEinschlussAenderbar(Boolean value) {
this.einschlussAenderbar = value;
}
}

View File

@@ -28,7 +28,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
* &lt;element name="VtgBeg" type="{urn:omds20}Datum-Zeit"/&gt;
* &lt;element name="VtgEnde" type="{urn:omds20}Datum-Zeit" minOccurs="0"/&gt;
* &lt;element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;element name="JahrespraemieNto" type="{urn:omds20}decimal"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -45,10 +45,9 @@ import javax.xml.datatype.XMLGregorianCalendar;
"jahrespraemieNto"
})
@XmlSeeAlso({
ProduktType.class,
ElementarproduktType.class,
VerkaufsproduktType.class,
ProduktbausteinAntragsprozessGenerischType.class
ProduktType.class,
ElementarproduktType.class
})
public abstract class ProduktbausteinAntragsprozessType
extends ProduktbausteinType
@@ -62,7 +61,7 @@ public abstract class ProduktbausteinAntragsprozessType
protected XMLGregorianCalendar vtgEnde;
@XmlElement(name = "Praemie")
protected List<PraemieType> praemie;
@XmlElement(name = "JahrespraemieNto")
@XmlElement(name = "JahrespraemieNto", required = true)
protected BigDecimal jahrespraemieNto;
/**

View File

@@ -26,7 +26,6 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
@@ -40,8 +39,7 @@ import javax.xml.bind.annotation.XmlType;
"id",
"bezeichnung",
"bedingungen",
"meldungen",
"attributMetadaten"
"meldungen"
})
@XmlSeeAlso({
ProduktbausteinAuskunftType.class,
@@ -57,8 +55,6 @@ public abstract class ProduktbausteinType {
protected List<String> bedingungen;
@XmlElement(name = "Meldungen")
protected List<ServiceFault> meldungen;
@XmlElement(name = "AttributMetadaten")
protected List<AttributMetadatenType> attributMetadaten;
/**
* Ruft den Wert der id-Eigenschaft ab.
@@ -166,33 +162,4 @@ public abstract class ProduktbausteinType {
return this.meldungen;
}
/**
* Gets the value of the attributMetadaten 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 attributMetadaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getAttributMetadaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link AttributMetadatenType }
*
*
*/
public List<AttributMetadatenType> getAttributMetadaten() {
if (attributMetadaten == null) {
attributMetadaten = new ArrayList<AttributMetadatenType>();
}
return this.attributMetadaten;
}
}

View File

@@ -1,95 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
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 javax.xml.datatype.XMLGregorianCalendar;
/**
* Auswahlliste mit Date-Values
*
* <p>Java-Klasse für WertAuswahllisteDatum_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="WertAuswahllisteDatum_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Wert" type="{http://www.w3.org/2001/XMLSchema}date"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WertAuswahllisteDatum_Type", propOrder = {
"text",
"wert"
})
public class WertAuswahllisteDatumType {
@XmlElement(name = "Text", required = true)
protected String text;
@XmlElement(name = "Wert", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar wert;
/**
* Ruft den Wert der text-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Legt den Wert der text-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
/**
* Ruft den Wert der wert-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getWert() {
return wert;
}
/**
* Legt den Wert der wert-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setWert(XMLGregorianCalendar value) {
this.wert = value;
}
}

View File

@@ -1,93 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auswahlliste mit omds:decimal Values
*
* <p>Java-Klasse für WertAuswahllisteDezimal_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="WertAuswahllisteDezimal_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Wert" type="{urn:omds20}decimal"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WertAuswahllisteDezimal_Type", propOrder = {
"text",
"wert"
})
public class WertAuswahllisteDezimalType {
@XmlElement(name = "Text", required = true)
protected String text;
@XmlElement(name = "Wert", required = true)
protected BigDecimal wert;
/**
* Ruft den Wert der text-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Legt den Wert der text-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
/**
* Ruft den Wert der wert-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Legt den Wert der wert-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
}

View File

@@ -1,84 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auswahlliste mit Int-Values
*
* <p>Java-Klasse für WertAuswahllisteInt_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="WertAuswahllisteInt_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Wert" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WertAuswahllisteInt_Type", propOrder = {
"text",
"wert"
})
public class WertAuswahllisteIntType {
@XmlElement(name = "Text", required = true)
protected String text;
@XmlElement(name = "Wert")
protected int wert;
/**
* Ruft den Wert der text-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Legt den Wert der text-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
/**
* Ruft den Wert der wert-Eigenschaft ab.
*
*/
public int getWert() {
return wert;
}
/**
* Legt den Wert der wert-Eigenschaft fest.
*
*/
public void setWert(int value) {
this.wert = value;
}
}

View File

@@ -1,93 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auswahlliste mit omds:decimal Values
*
* <p>Java-Klasse für WertAuswahllisteProzent_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="WertAuswahllisteProzent_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Wert" type="{urn:omds20}decimal"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WertAuswahllisteProzent_Type", propOrder = {
"text",
"wert"
})
public class WertAuswahllisteProzentType {
@XmlElement(name = "Text", required = true)
protected String text;
@XmlElement(name = "Wert", required = true)
protected BigDecimal wert;
/**
* Ruft den Wert der text-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Legt den Wert der text-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
/**
* Ruft den Wert der wert-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Legt den Wert der wert-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
}

View File

@@ -1,92 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auswahlliste mit String-Values
*
* <p>Java-Klasse für WertAuswahllisteString_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="WertAuswahllisteString_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Wert" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WertAuswahllisteString_Type", propOrder = {
"text",
"wert"
})
public class WertAuswahllisteStringType {
@XmlElement(name = "Text", required = true)
protected String text;
@XmlElement(name = "Wert", required = true)
protected String wert;
/**
* Ruft den Wert der text-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Legt den Wert der text-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
/**
* Ruft den Wert der wert-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWert() {
return wert;
}
/**
* Legt den Wert der wert-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWert(String value) {
this.wert = value;
}
}

View File

@@ -1,66 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Typ um einen allgemeinen Berechungsrequest durchzuführen
*
* <p>Java-Klasse für CalculateCommonRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CalculateCommonRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnungCommon_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateCommonRequest_Type", propOrder = {
"berechnungsanfrage"
})
public class CalculateCommonRequestType
extends CalculateRequestType
{
@XmlElement(name = "Berechnungsanfrage", required = true)
protected SpezBerechnungCommonType berechnungsanfrage;
/**
* Ruft den Wert der berechnungsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezBerechnungCommonType }
*
*/
public SpezBerechnungCommonType getBerechnungsanfrage() {
return berechnungsanfrage;
}
/**
* Legt den Wert der berechnungsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezBerechnungCommonType }
*
*/
public void setBerechnungsanfrage(SpezBerechnungCommonType value) {
this.berechnungsanfrage = value;
}
}

View File

@@ -1,101 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
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 für einen allgemeinen Berechnungs-Response
*
* <p>Java-Klasse für CalculateCommonResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CalculateCommonResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnungCommon_Type" minOccurs="0"/&gt;
* &lt;element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}UpsellingResponseCommon_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateCommonResponse_Type", propOrder = {
"berechnungsantwort",
"responseUpselling"
})
public class CalculateCommonResponseType
extends CalculateResponseType
{
@XmlElement(name = "Berechnungsantwort")
protected SpezBerechnungCommonType berechnungsantwort;
@XmlElement(name = "ResponseUpselling")
protected List<UpsellingResponseCommonType> responseUpselling;
/**
* Ruft den Wert der berechnungsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezBerechnungCommonType }
*
*/
public SpezBerechnungCommonType getBerechnungsantwort() {
return berechnungsantwort;
}
/**
* Legt den Wert der berechnungsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezBerechnungCommonType }
*
*/
public void setBerechnungsantwort(SpezBerechnungCommonType value) {
this.berechnungsantwort = value;
}
/**
* Gets the value of the responseUpselling 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 responseUpselling property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getResponseUpselling().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link UpsellingResponseCommonType }
*
*
*/
public List<UpsellingResponseCommonType> getResponseUpselling() {
if (responseUpselling == null) {
responseUpselling = new ArrayList<UpsellingResponseCommonType>();
}
return this.responseUpselling;
}
}

View File

@@ -40,7 +40,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CalculateUnfallReque
})
@XmlSeeAlso({
CalculateKfzRequestType.class,
CalculateCommonRequestType.class,
CalculateRechtsschutzRequestType.class,
CalculateSachPrivatRequestType.class,
CalculateUnfallRequestType.class

View File

@@ -34,7 +34,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CalculateUnfallRespo
@XmlType(name = "CalculateResponse_Type")
@XmlSeeAlso({
CalculateKfzResponseType.class,
CalculateCommonResponseType.class,
CalculateRechtsschutzResponseType.class,
CalculateSachPrivatResponseType.class,
CalculateUnfallResponseType.class

View File

@@ -1,66 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Typ um einen allgemeinen Antragserzeugungs-Request durchzuführen
*
* <p>Java-Klasse für CreateApplicationCommonRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateApplicationCommonRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragCommon_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationCommonRequest_Type", propOrder = {
"antragsanfrage"
})
public class CreateApplicationCommonRequestType
extends CreateApplicationRequestType
{
@XmlElement(name = "Antragsanfrage", required = true)
protected SpezAntragCommonType antragsanfrage;
/**
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragCommonType }
*
*/
public SpezAntragCommonType getAntragsanfrage() {
return antragsanfrage;
}
/**
* Legt den Wert der antragsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragCommonType }
*
*/
public void setAntragsanfrage(SpezAntragCommonType value) {
this.antragsanfrage = value;
}
}

View File

@@ -1,66 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Typ für einen allgemeinen Antragserzeugungs-Response
*
* <p>Java-Klasse für CreateApplicationCommonResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateApplicationCommonResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragCommon_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationCommonResponse_Type", propOrder = {
"antragsantwort"
})
public class CreateApplicationCommonResponseType
extends CreateApplicationResponseType
{
@XmlElement(name = "Antragsantwort")
protected SpezAntragCommonType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragCommonType }
*
*/
public SpezAntragCommonType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragCommonType }
*
*/
public void setAntragsantwort(SpezAntragCommonType value) {
this.antragsantwort = value;
}
}

View File

@@ -43,7 +43,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateApplicationUnf
})
@XmlSeeAlso({
CreateApplicationKfzRequestType.class,
CreateApplicationCommonRequestType.class,
CreateApplicationRechtsschutzRequestType.class,
CreateApplicationSachPrivatRequestType.class,
CreateApplicationUnfallRequestType.class

View File

@@ -48,7 +48,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateApplicationUnf
})
@XmlSeeAlso({
CreateApplicationKfzResponseType.class,
CreateApplicationCommonResponseType.class,
CreateApplicationRechtsschutzResponseType.class,
CreateApplicationSachPrivatResponseType.class,
CreateApplicationUnfallResponseType.class

View File

@@ -1,66 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Typ um einen allgemeinen Offerterzeugungs-Request durchzuführen
*
* <p>Java-Klasse für CreateOfferCommonRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateOfferCommonRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffertCommon_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferCommonRequest_Type", propOrder = {
"offertanfrage"
})
public class CreateOfferCommonRequestType
extends CreateOfferRequestType
{
@XmlElement(name = "Offertanfrage", required = true)
protected SpezOffertCommonType offertanfrage;
/**
* Ruft den Wert der offertanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezOffertCommonType }
*
*/
public SpezOffertCommonType getOffertanfrage() {
return offertanfrage;
}
/**
* Legt den Wert der offertanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezOffertCommonType }
*
*/
public void setOffertanfrage(SpezOffertCommonType value) {
this.offertanfrage = value;
}
}

View File

@@ -1,66 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Typ für einen allgemeinen Offerterzeugungs-Response
*
* <p>Java-Klasse für CreateOfferCommonResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateOfferCommonResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffertCommon_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferCommonResponse_Type", propOrder = {
"offertantwort"
})
public class CreateOfferCommonResponseType
extends CreateOfferResponseType
{
@XmlElement(name = "Offertantwort")
protected SpezOffertCommonType offertantwort;
/**
* Ruft den Wert der offertantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezOffertCommonType }
*
*/
public SpezOffertCommonType getOffertantwort() {
return offertantwort;
}
/**
* Legt den Wert der offertantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezOffertCommonType }
*
*/
public void setOffertantwort(SpezOffertCommonType value) {
this.offertantwort = value;
}
}

View File

@@ -34,7 +34,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateOfferUnfallReq
@XmlType(name = "CreateOfferRequest_Type")
@XmlSeeAlso({
CreateOfferKfzRequestType.class,
CreateOfferCommonRequestType.class,
CreateOfferRechtsschutzRequestType.class,
CreateOfferSachPrivatRequestType.class,
CreateOfferUnfallRequestType.class

View File

@@ -43,7 +43,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateOfferUnfallRes
})
@XmlSeeAlso({
CreateOfferKfzResponseType.class,
CreateOfferCommonResponseType.class,
CreateOfferRechtsschutzResponseType.class,
CreateOfferSachPrivatResponseType.class,
CreateOfferUnfallResponseType.class

View File

@@ -26,14 +26,6 @@ public class ObjectFactory {
private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest");
private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse");
private final static QName _CalculateCommonRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CalculateCommonRequest");
private final static QName _CalculateCommonResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CalculateCommonResponse");
private final static QName _CreateOfferCommonRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CreateOfferCommonRequest");
private final static QName _CreateOfferCommonResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CreateOfferCommonResponse");
private final static QName _CreateApplicationCommonRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CreateApplicationCommonRequest");
private final static QName _CreateApplicationCommonResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CreateApplicationCommonResponse");
private final static QName _SubmitApplicationCommonRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "SubmitApplicationCommonRequest");
private final static QName _SubmitApplicationCommonResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "SubmitApplicationCommonResponse");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common
@@ -58,94 +50,6 @@ public class ObjectFactory {
return new GetApplicationDocumentResponseType();
}
/**
* Create an instance of {@link CalculateCommonRequestType }
*
*/
public CalculateCommonRequestType createCalculateCommonRequestType() {
return new CalculateCommonRequestType();
}
/**
* Create an instance of {@link CalculateCommonResponseType }
*
*/
public CalculateCommonResponseType createCalculateCommonResponseType() {
return new CalculateCommonResponseType();
}
/**
* Create an instance of {@link CreateOfferCommonRequestType }
*
*/
public CreateOfferCommonRequestType createCreateOfferCommonRequestType() {
return new CreateOfferCommonRequestType();
}
/**
* Create an instance of {@link CreateOfferCommonResponseType }
*
*/
public CreateOfferCommonResponseType createCreateOfferCommonResponseType() {
return new CreateOfferCommonResponseType();
}
/**
* Create an instance of {@link CreateApplicationCommonRequestType }
*
*/
public CreateApplicationCommonRequestType createCreateApplicationCommonRequestType() {
return new CreateApplicationCommonRequestType();
}
/**
* Create an instance of {@link CreateApplicationCommonResponseType }
*
*/
public CreateApplicationCommonResponseType createCreateApplicationCommonResponseType() {
return new CreateApplicationCommonResponseType();
}
/**
* Create an instance of {@link SubmitApplicationCommonRequestType }
*
*/
public SubmitApplicationCommonRequestType createSubmitApplicationCommonRequestType() {
return new SubmitApplicationCommonRequestType();
}
/**
* Create an instance of {@link SubmitApplicationCommonResponseType }
*
*/
public SubmitApplicationCommonResponseType createSubmitApplicationCommonResponseType() {
return new SubmitApplicationCommonResponseType();
}
/**
* Create an instance of {@link SpezBerechnungCommonType }
*
*/
public SpezBerechnungCommonType createSpezBerechnungCommonType() {
return new SpezBerechnungCommonType();
}
/**
* Create an instance of {@link SpezOffertCommonType }
*
*/
public SpezOffertCommonType createSpezOffertCommonType() {
return new SpezOffertCommonType();
}
/**
* Create an instance of {@link SpezAntragCommonType }
*
*/
public SpezAntragCommonType createSpezAntragCommonType() {
return new SpezAntragCommonType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >}}
*
@@ -164,76 +68,4 @@ public class ObjectFactory {
return new JAXBElement<GetApplicationDocumentResponseType>(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateCommonRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CalculateCommonRequest")
public JAXBElement<CalculateCommonRequestType> createCalculateCommonRequest(CalculateCommonRequestType value) {
return new JAXBElement<CalculateCommonRequestType>(_CalculateCommonRequest_QNAME, CalculateCommonRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateCommonResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CalculateCommonResponse")
public JAXBElement<CalculateCommonResponseType> createCalculateCommonResponse(CalculateCommonResponseType value) {
return new JAXBElement<CalculateCommonResponseType>(_CalculateCommonResponse_QNAME, CalculateCommonResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferCommonRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CreateOfferCommonRequest")
public JAXBElement<CreateOfferCommonRequestType> createCreateOfferCommonRequest(CreateOfferCommonRequestType value) {
return new JAXBElement<CreateOfferCommonRequestType>(_CreateOfferCommonRequest_QNAME, CreateOfferCommonRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferCommonResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CreateOfferCommonResponse")
public JAXBElement<CreateOfferCommonResponseType> createCreateOfferCommonResponse(CreateOfferCommonResponseType value) {
return new JAXBElement<CreateOfferCommonResponseType>(_CreateOfferCommonResponse_QNAME, CreateOfferCommonResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationCommonRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CreateApplicationCommonRequest")
public JAXBElement<CreateApplicationCommonRequestType> createCreateApplicationCommonRequest(CreateApplicationCommonRequestType value) {
return new JAXBElement<CreateApplicationCommonRequestType>(_CreateApplicationCommonRequest_QNAME, CreateApplicationCommonRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationCommonResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CreateApplicationCommonResponse")
public JAXBElement<CreateApplicationCommonResponseType> createCreateApplicationCommonResponse(CreateApplicationCommonResponseType value) {
return new JAXBElement<CreateApplicationCommonResponseType>(_CreateApplicationCommonResponse_QNAME, CreateApplicationCommonResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationCommonRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "SubmitApplicationCommonRequest")
public JAXBElement<SubmitApplicationCommonRequestType> createSubmitApplicationCommonRequest(SubmitApplicationCommonRequestType value) {
return new JAXBElement<SubmitApplicationCommonRequestType>(_SubmitApplicationCommonRequest_QNAME, SubmitApplicationCommonRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationCommonResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "SubmitApplicationCommonResponse")
public JAXBElement<SubmitApplicationCommonResponseType> createSubmitApplicationCommonResponse(SubmitApplicationCommonResponseType value) {
return new JAXBElement<SubmitApplicationCommonResponseType>(_SubmitApplicationCommonResponse_QNAME, SubmitApplicationCommonResponseType.class, null, value);
}
}

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktType;
/**
* Daten Antrag die bei Request und Response gleich sind
*
* <p>Java-Klasse für SpezAntragCommon_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezAntragCommon_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezAntragCommon_Type", propOrder = {
"verkaufsprodukt"
})
public class SpezAntragCommonType
extends SpezAntragType
{
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktType verkaufsprodukt;
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktType }
*
*/
public VerkaufsproduktType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -74,7 +74,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SpezAntragUnfallType
})
@XmlSeeAlso({
SpezAntragKfzType.class,
SpezAntragCommonType.class,
SpezAntragRechtsschutzType.class,
AntragSachPrivatType.class,
SpezAntragUnfallType.class

View File

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

View File

@@ -33,7 +33,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SpezBerechnungUnfall
@XmlType(name = "SpezBerechnung_Type")
@XmlSeeAlso({
SpezBerechnungKfzType.class,
SpezBerechnungCommonType.class,
SpezBerechnungRechtsschutzType.class,
BerechnungSachPrivatType.class,
SpezBerechnungUnfallType.class

View File

@@ -1,67 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktType;
/**
* Daten Offerterstellung die bei Request und Response gleich sind
*
* <p>Java-Klasse für SpezOffertCommon_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezOffertCommon_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Verkaufsprodukt" type="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezOffertCommon_Type", propOrder = {
"verkaufsprodukt"
})
public class SpezOffertCommonType
extends SpezOffertType
{
@XmlElement(name = "Verkaufsprodukt", required = true)
protected VerkaufsproduktType verkaufsprodukt;
/**
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
*
* @return
* possible object is
* {@link VerkaufsproduktType }
*
*/
public VerkaufsproduktType getVerkaufsprodukt() {
return verkaufsprodukt;
}
/**
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VerkaufsproduktType }
*
*/
public void setVerkaufsprodukt(VerkaufsproduktType value) {
this.verkaufsprodukt = value;
}
}

View File

@@ -48,7 +48,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SpezOffertUnfallType
})
@XmlSeeAlso({
SpezOffertKfzType.class,
SpezOffertCommonType.class,
SpezOffertRechtsschutzType.class,
OffertSachPrivatType.class,
SpezOffertUnfallType.class

View File

@@ -1,66 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Typ um eine allgemeine Antragsüberleitung durchzuführen
*
* <p>Java-Klasse für SubmitApplicationCommonRequest_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SubmitApplicationCommonRequest_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragCommon_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationCommonRequest_Type", propOrder = {
"antragsanfrage"
})
public class SubmitApplicationCommonRequestType
extends SubmitApplicationRequestType
{
@XmlElement(name = "Antragsanfrage")
protected SpezAntragCommonType antragsanfrage;
/**
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragCommonType }
*
*/
public SpezAntragCommonType getAntragsanfrage() {
return antragsanfrage;
}
/**
* Legt den Wert der antragsanfrage-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragCommonType }
*
*/
public void setAntragsanfrage(SpezAntragCommonType value) {
this.antragsanfrage = value;
}
}

View File

@@ -1,66 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Typ für einen allgemeinen Antragsüberleitungs-Response
*
* <p>Java-Klasse für SubmitApplicationCommonResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SubmitApplicationCommonResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragCommon_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationCommonResponse_Type", propOrder = {
"antragsantwort"
})
public class SubmitApplicationCommonResponseType
extends SubmitApplicationResponseType
{
@XmlElement(name = "Antragsantwort")
protected SpezAntragCommonType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragCommonType }
*
*/
public SpezAntragCommonType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragCommonType }
*
*/
public void setAntragsantwort(SpezAntragCommonType value) {
this.antragsantwort = value;
}
}

View File

@@ -1,15 +1,12 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.DateianhangType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.SubmitApplicationRechtsschutzRequestType;
@@ -29,7 +26,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnf
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -41,12 +37,10 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnf
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationRequest_Type", propOrder = {
"dateianhaenge",
"antragsnummer"
})
@XmlSeeAlso({
SubmitApplicationKfzRequestType.class,
SubmitApplicationCommonRequestType.class,
SubmitApplicationRechtsschutzRequestType.class,
SubmitApplicationSachPrivatRequestType.class,
SubmitApplicationUnfallRequestType.class
@@ -55,40 +49,9 @@ public abstract class SubmitApplicationRequestType
extends CommonProcessRequestType
{
@XmlElement(name = "Dateianhaenge")
protected List<DateianhangType> dateianhaenge;
@XmlElement(name = "Antragsnummer")
protected ObjektIdType antragsnummer;
/**
* Gets the value of the dateianhaenge 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 dateianhaenge property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getDateianhaenge().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link DateianhangType }
*
*
*/
public List<DateianhangType> getDateianhaenge() {
if (dateianhaenge == null) {
dateianhaenge = new ArrayList<DateianhangType>();
}
return this.dateianhaenge;
}
/**
* Ruft den Wert der antragsnummer-Eigenschaft ab.
*

View File

@@ -48,7 +48,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnf
})
@XmlSeeAlso({
SubmitApplicationKfzResponseType.class,
SubmitApplicationCommonResponseType.class,
SubmitApplicationRechtsschutzResponseType.class,
SubmitApplicationSachPrivatResponseType.class,
SubmitApplicationUnfallResponseType.class

View File

@@ -1,72 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
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_4_0.common.VerkaufsproduktType;
/**
* Response Upselling Alternativen
*
* <p>Java-Klasse für UpsellingResponseCommon_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="UpsellingResponseCommon_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="UpsellingVerkaufsprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UpsellingResponseCommon_Type", propOrder = {
"upsellingVerkaufsprodukte"
})
public abstract class UpsellingResponseCommonType {
@XmlElement(name = "UpsellingVerkaufsprodukte")
protected List<VerkaufsproduktType> upsellingVerkaufsprodukte;
/**
* Gets the value of the upsellingVerkaufsprodukte 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 upsellingVerkaufsprodukte property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getUpsellingVerkaufsprodukte().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link VerkaufsproduktType }
*
*
*/
public List<VerkaufsproduktType> getUpsellingVerkaufsprodukte() {
if (upsellingVerkaufsprodukte == null) {
upsellingVerkaufsprodukte = new ArrayList<VerkaufsproduktType>();
}
return this.upsellingVerkaufsprodukte;
}
}

View File

@@ -20,8 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseTyp
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type" minOccurs="0"/&gt;
* &lt;element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}UpsellingRechtsschutzResponse_Type" minOccurs="0"/&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -32,17 +31,14 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseTyp
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateRechtsschutzResponse_Type", propOrder = {
"berechnungsantwort",
"responseUpselling"
"berechnungsantwort"
})
public class CalculateRechtsschutzResponseType
extends CalculateResponseType
{
@XmlElement(name = "Berechnungsantwort")
@XmlElement(name = "Berechnungsantwort", required = true)
protected SpezBerechnungRechtsschutzType berechnungsantwort;
@XmlElement(name = "ResponseUpselling")
protected UpsellingRechtsschutzResponseType responseUpselling;
/**
* Ruft den Wert der berechnungsantwort-Eigenschaft ab.
@@ -68,28 +64,4 @@ public class CalculateRechtsschutzResponseType
this.berechnungsantwort = value;
}
/**
* Ruft den Wert der responseUpselling-Eigenschaft ab.
*
* @return
* possible object is
* {@link UpsellingRechtsschutzResponseType }
*
*/
public UpsellingRechtsschutzResponseType getResponseUpselling() {
return responseUpselling;
}
/**
* Legt den Wert der responseUpselling-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link UpsellingRechtsschutzResponseType }
*
*/
public void setResponseUpselling(UpsellingRechtsschutzResponseType value) {
this.responseUpselling = value;
}
}

View File

@@ -20,7 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRes
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type" minOccurs="0"/&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -37,7 +37,7 @@ public class CreateApplicationRechtsschutzResponseType
extends CreateApplicationResponseType
{
@XmlElement(name = "Antragsantwort")
@XmlElement(name = "Antragsantwort", required = true)
protected SpezAntragRechtsschutzType antragsantwort;
/**

View File

@@ -20,7 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseT
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type" minOccurs="0"/&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -37,7 +37,7 @@ public class CreateOfferRechtsschutzResponseType
extends CreateOfferResponseType
{
@XmlElement(name = "Offertantwort")
@XmlElement(name = "Offertantwort", required = true)
protected SpezOffertRechtsschutzType offertantwort;
/**

View File

@@ -6,13 +6,13 @@ import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktType;
/**
* Typ für ein Elementarprodukt in der Sparte Rechtsschutz. Von diesem Typ können künftig etwaige Standard-Deckungen abgeleitet werden. Von diesem Typ können einzelne VUs aber auch ihre eigenen Elementarprodukte ableiten.
* Typ für ein Elementarprodukt in der Sparte Rechtsschutz. Von diesem Typ werden etwaige Standard-Deckungen abgeleitet, siehe Vertragsrechtsschutz_Type. Von diesem Typ können einzelne VUs aber auch ihre eigenen Elementarprodukte ableiten, wenn sie möchten.
*
* <p>Java-Klasse für ElementarproduktRechtsschutz_Type complex type.
*
@@ -21,9 +21,9 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktGenerischType;
* <pre>
* &lt;complexType name="ElementarproduktRechtsschutz_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -36,13 +36,16 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktGenerischType;
@XmlType(name = "ElementarproduktRechtsschutz_Type", propOrder = {
"versInteressenRefLfNr"
})
@XmlSeeAlso({
ElementarproduktRechtsschutzStdImplType.class,
ElementarproduktVertragsrechtsschutzType.class
})
public class ElementarproduktRechtsschutzType
extends ElementarproduktGenerischType
extends ElementarproduktType
{
@XmlElement(name = "VersInteressenRefLfNr", type = Integer.class)
@XmlSchemaType(name = "unsignedShort")
protected List<Integer> versInteressenRefLfNr;
@XmlElement(name = "VersInteressenRefLfNr")
protected List<String> versInteressenRefLfNr;
/**
* Gets the value of the versInteressenRefLfNr property.
@@ -62,13 +65,13 @@ public class ElementarproduktRechtsschutzType
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Integer }
* {@link String }
*
*
*/
public List<Integer> getVersInteressenRefLfNr() {
public List<String> getVersInteressenRefLfNr() {
if (versInteressenRefLfNr == null) {
versInteressenRefLfNr = new ArrayList<Integer>();
versInteressenRefLfNr = new ArrayList<String>();
}
return this.versInteressenRefLfNr;
}

View File

@@ -24,6 +24,9 @@ import javax.xml.namespace.QName;
@XmlRegistry
public class ObjectFactory {
private final static QName _VerkaufsproduktRechtsschutzStdImpl_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "VerkaufsproduktRechtsschutzStdImpl");
private final static QName _ProduktRechtsschutzStdImpl_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "ProduktRechtsschutzStdImpl");
private final static QName _ElementarproduktRechtsschutzStdImpl_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "ElementarproduktRechtsschutzStdImpl");
private final static QName _CalculateRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CalculateRechtsschutzRequest");
private final static QName _CalculateRechtsschutzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CalculateRechtsschutzResponse");
private final static QName _CreateOfferRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CreateOfferRechtsschutzRequest");
@@ -40,6 +43,38 @@ public class ObjectFactory {
public ObjectFactory() {
}
/**
* Create an instance of {@link ElementarproduktRechtsschutzStdImplType }
*
*/
public ElementarproduktRechtsschutzStdImplType createElementarproduktRechtsschutzStdImplType() {
return new ElementarproduktRechtsschutzStdImplType();
}
/**
* Create an instance of {@link VerkaufsproduktRechtsschutzStdImplType }
*
*/
public VerkaufsproduktRechtsschutzStdImplType createVerkaufsproduktRechtsschutzStdImplType() {
return new VerkaufsproduktRechtsschutzStdImplType();
}
/**
* Create an instance of {@link ProduktRechtsschutzStdImplType }
*
*/
public ProduktRechtsschutzStdImplType createProduktRechtsschutzStdImplType() {
return new ProduktRechtsschutzStdImplType();
}
/**
* Create an instance of {@link ElementarproduktRechtsschutzType }
*
*/
public ElementarproduktRechtsschutzType createElementarproduktRechtsschutzType() {
return new ElementarproduktRechtsschutzType();
}
/**
* Create an instance of {@link CalculateRechtsschutzRequestType }
*
@@ -97,27 +132,11 @@ public class ObjectFactory {
}
/**
* Create an instance of {@link VerkaufsproduktRechtsschutzType }
* Create an instance of {@link ElementarproduktVertragsrechtsschutzType }
*
*/
public VerkaufsproduktRechtsschutzType createVerkaufsproduktRechtsschutzType() {
return new VerkaufsproduktRechtsschutzType();
}
/**
* Create an instance of {@link ProduktRechtsschutzType }
*
*/
public ProduktRechtsschutzType createProduktRechtsschutzType() {
return new ProduktRechtsschutzType();
}
/**
* Create an instance of {@link ElementarproduktRechtsschutzType }
*
*/
public ElementarproduktRechtsschutzType createElementarproduktRechtsschutzType() {
return new ElementarproduktRechtsschutzType();
public ElementarproduktVertragsrechtsschutzType createElementarproduktVertragsrechtsschutzType() {
return new ElementarproduktVertragsrechtsschutzType();
}
/**
@@ -152,6 +171,41 @@ public class ObjectFactory {
return new SubmitApplicationRechtsschutzRequestType();
}
/**
* Create an instance of {@link ElementarproduktRechtsschutzStdImplType.Versicherungssumme }
*
*/
public ElementarproduktRechtsschutzStdImplType.Versicherungssumme createElementarproduktRechtsschutzStdImplTypeVersicherungssumme() {
return new ElementarproduktRechtsschutzStdImplType.Versicherungssumme();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link VerkaufsproduktRechtsschutzStdImplType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "VerkaufsproduktRechtsschutzStdImpl")
public JAXBElement<VerkaufsproduktRechtsschutzStdImplType> createVerkaufsproduktRechtsschutzStdImpl(VerkaufsproduktRechtsschutzStdImplType value) {
return new JAXBElement<VerkaufsproduktRechtsschutzStdImplType>(_VerkaufsproduktRechtsschutzStdImpl_QNAME, VerkaufsproduktRechtsschutzStdImplType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ProduktRechtsschutzStdImplType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "ProduktRechtsschutzStdImpl")
public JAXBElement<ProduktRechtsschutzStdImplType> createProduktRechtsschutzStdImpl(ProduktRechtsschutzStdImplType value) {
return new JAXBElement<ProduktRechtsschutzStdImplType>(_ProduktRechtsschutzStdImpl_QNAME, ProduktRechtsschutzStdImplType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ElementarproduktRechtsschutzType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "ElementarproduktRechtsschutzStdImpl")
public JAXBElement<ElementarproduktRechtsschutzType> createElementarproduktRechtsschutzStdImpl(ElementarproduktRechtsschutzType value) {
return new JAXBElement<ElementarproduktRechtsschutzType>(_ElementarproduktRechtsschutzStdImpl_QNAME, ElementarproduktRechtsschutzType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateRechtsschutzRequestType }{@code >}}
*

View File

@@ -1,14 +1,11 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs;
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType;
/**
@@ -21,10 +18,8 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
* <pre>
* &lt;complexType name="ProduktRechtsschutz_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="ElementarprodukteRechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ElementarproduktRechtsschutz_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -34,76 +29,13 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktRechtsschutz_Type", propOrder = {
"elementarprodukteRechtsschutz",
"versInteressenRefLfNr"
@XmlType(name = "ProduktRechtsschutz_Type")
@XmlSeeAlso({
ProduktRechtsschutzStdImplType.class
})
public class ProduktRechtsschutzType
extends ProduktGenerischType
public abstract class ProduktRechtsschutzType
extends ProduktType
{
@XmlElement(name = "ElementarprodukteRechtsschutz")
protected List<ElementarproduktRechtsschutzType> elementarprodukteRechtsschutz;
@XmlElement(name = "VersInteressenRefLfNr", type = Integer.class)
@XmlSchemaType(name = "unsignedShort")
protected List<Integer> versInteressenRefLfNr;
/**
* Gets the value of the elementarprodukteRechtsschutz 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 elementarprodukteRechtsschutz property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getElementarprodukteRechtsschutz().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ElementarproduktRechtsschutzType }
*
*
*/
public List<ElementarproduktRechtsschutzType> getElementarprodukteRechtsschutz() {
if (elementarprodukteRechtsschutz == null) {
elementarprodukteRechtsschutz = new ArrayList<ElementarproduktRechtsschutzType>();
}
return this.elementarprodukteRechtsschutz;
}
/**
* Gets the value of the versInteressenRefLfNr 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 versInteressenRefLfNr property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getVersInteressenRefLfNr().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Integer }
*
*
*/
public List<Integer> getVersInteressenRefLfNr() {
if (versInteressenRefLfNr == null) {
versInteressenRefLfNr = new ArrayList<Integer>();
}
return this.versInteressenRefLfNr;
}
}

View File

@@ -20,7 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationReq
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type" minOccurs="0"/&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -37,7 +37,7 @@ public class SubmitApplicationRechtsschutzRequestType
extends SubmitApplicationRequestType
{
@XmlElement(name = "Antragsanfrage")
@XmlElement(name = "Antragsanfrage", required = true)
protected SpezAntragRechtsschutzType antragsanfrage;
/**

View File

@@ -20,7 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type" minOccurs="0"/&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -37,7 +37,7 @@ public class SubmitApplicationRechtsschutzResponseType
extends SubmitApplicationResponseType
{
@XmlElement(name = "Antragsantwort")
@XmlElement(name = "Antragsantwort", required = true)
protected SpezAntragRechtsschutzType antragsantwort;
/**

View File

@@ -1,71 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs;
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;
/**
* Response Upselling Alternativen
*
* <p>Java-Klasse für UpsellingRechtsschutzResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="UpsellingRechtsschutzResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UpsellingRechtsschutzResponse_Type", propOrder = {
"upsellingVerkaufsprodukte"
})
public abstract class UpsellingRechtsschutzResponseType {
@XmlElement(name = "UpsellingVerkaufsprodukte")
protected List<VerkaufsproduktRechtsschutzType> upsellingVerkaufsprodukte;
/**
* Gets the value of the upsellingVerkaufsprodukte 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 upsellingVerkaufsprodukte property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getUpsellingVerkaufsprodukte().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link VerkaufsproduktRechtsschutzType }
*
*
*/
public List<VerkaufsproduktRechtsschutzType> getUpsellingVerkaufsprodukte() {
if (upsellingVerkaufsprodukte == null) {
upsellingVerkaufsprodukte = new ArrayList<VerkaufsproduktRechtsschutzType>();
}
return this.upsellingVerkaufsprodukte;
}
}

View File

@@ -6,8 +6,8 @@ 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
@@ -24,8 +24,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Produkte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="VersicherteInteressen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -37,79 +35,18 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VerkaufsproduktRechtsschutz_Type", propOrder = {
"produkte",
"zusatzprodukte",
"versicherteInteressen"
})
public class VerkaufsproduktRechtsschutzType
@XmlSeeAlso({
VerkaufsproduktRechtsschutzStdImplType.class
})
public abstract class VerkaufsproduktRechtsschutzType
extends VerkaufsproduktType
{
@XmlElement(name = "Produkte", required = true)
protected List<ProduktGenerischType> produkte;
@XmlElement(name = "Zusatzprodukte")
protected List<ProduktGenerischType> zusatzprodukte;
@XmlElement(name = "VersicherteInteressen")
protected List<VersichertesInteresseType> versicherteInteressen;
/**
* 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 ProduktGenerischType }
*
*
*/
public List<ProduktGenerischType> getProdukte() {
if (produkte == null) {
produkte = new ArrayList<ProduktGenerischType>();
}
return this.produkte;
}
/**
* 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 versicherteInteressen property.
*

View File

@@ -20,7 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseTyp
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type" minOccurs="0"/&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/&gt;
* &lt;element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}UpsellingSachPrivatResponse_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -39,7 +39,7 @@ public class CalculateSachPrivatResponseType
extends CalculateResponseType
{
@XmlElement(name = "Berechnungsantwort")
@XmlElement(name = "Berechnungsantwort", required = true)
protected BerechnungSachPrivatType berechnungsantwort;
@XmlElement(name = "ResponseUpselling")
protected UpsellingSachPrivatResponseType responseUpselling;

View File

@@ -20,7 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRes
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -37,7 +37,7 @@ public class CreateApplicationSachPrivatResponseType
extends CreateApplicationResponseType
{
@XmlElement(name = "Antragsantwort")
@XmlElement(name = "Antragsantwort", required = true)
protected AntragSachPrivatType antragsantwort;
/**

View File

@@ -20,7 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseT
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type" minOccurs="0"/&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -37,7 +37,7 @@ public class CreateOfferSachPrivatResponseType
extends CreateOfferResponseType
{
@XmlElement(name = "Offertantwort")
@XmlElement(name = "Offertantwort", required = true)
protected OffertSachPrivatType offertantwort;
/**

View File

@@ -8,7 +8,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktType;
/**
@@ -19,7 +19,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktGenerischType;
* <pre>
* &lt;complexType name="ElementarproduktSachPrivat_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="VersInteresseRefLfnr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
@@ -39,7 +39,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktGenerischType;
ElementarproduktHaushaltType.class
})
public abstract class ElementarproduktSachPrivatType
extends ElementarproduktGenerischType
extends ElementarproduktType
{
@XmlElement(name = "VersInteresseRefLfnr")

View File

@@ -4,10 +4,9 @@ package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat;
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 at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType;
/**
@@ -18,9 +17,9 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
* <pre>
* &lt;complexType name="ProduktSachPrivat_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="VersInteresseRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/&gt;
* &lt;element name="VersInteresseRefLfnr" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -38,26 +37,33 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
ProduktHaushaltsversicherungType.class
})
public abstract class ProduktSachPrivatType
extends ProduktGenerischType
extends ProduktType
{
@XmlElement(name = "VersInteresseRefLfnr")
@XmlSchemaType(name = "unsignedShort")
protected int versInteresseRefLfnr;
@XmlElement(name = "VersInteresseRefLfnr", required = true)
protected String versInteresseRefLfnr;
/**
* Ruft den Wert der versInteresseRefLfnr-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public int getVersInteresseRefLfnr() {
public String getVersInteresseRefLfnr() {
return versInteresseRefLfnr;
}
/**
* Legt den Wert der versInteresseRefLfnr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersInteresseRefLfnr(int value) {
public void setVersInteresseRefLfnr(String value) {
this.versInteresseRefLfnr = value;
}

View File

@@ -25,7 +25,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
* &lt;element name="Wohnflaeche" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
* &lt;element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type"/&gt;
* &lt;element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/&gt;
* &lt;element name="ZusaetzlicheHaushaltsDaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheHaushaltsdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="ZusaetzlicheHaushaltDaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -39,7 +39,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
"wohnflaeche",
"ausstattungCd",
"nutzungCd",
"zusaetzlicheHaushaltsDaten"
"zusaetzlicheHaushaltDaten"
})
public class RisikoHaushaltType
extends VersichertesInteresseType
@@ -51,8 +51,8 @@ public class RisikoHaushaltType
protected String ausstattungCd;
@XmlElement(name = "NutzungCd")
protected String nutzungCd;
@XmlElement(name = "ZusaetzlicheHaushaltsDaten")
protected List<ZusaetzlicheHaushaltsdatenType> zusaetzlicheHaushaltsDaten;
@XmlElement(name = "ZusaetzlicheHaushaltDaten")
protected List<ZusaetzlicheGebaeudedatenType> zusaetzlicheHaushaltDaten;
/**
* Ruft den Wert der wohnflaeche-Eigenschaft ab.
@@ -127,32 +127,32 @@ public class RisikoHaushaltType
}
/**
* Gets the value of the zusaetzlicheHaushaltsDaten property.
* Gets the value of the zusaetzlicheHaushaltDaten 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 zusaetzlicheHaushaltsDaten property.
* This is why there is not a <CODE>set</CODE> method for the zusaetzlicheHaushaltDaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusaetzlicheHaushaltsDaten().add(newItem);
* getZusaetzlicheHaushaltDaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ZusaetzlicheHaushaltsdatenType }
* {@link ZusaetzlicheGebaeudedatenType }
*
*
*/
public List<ZusaetzlicheHaushaltsdatenType> getZusaetzlicheHaushaltsDaten() {
if (zusaetzlicheHaushaltsDaten == null) {
zusaetzlicheHaushaltsDaten = new ArrayList<ZusaetzlicheHaushaltsdatenType>();
public List<ZusaetzlicheGebaeudedatenType> getZusaetzlicheHaushaltDaten() {
if (zusaetzlicheHaushaltDaten == null) {
zusaetzlicheHaushaltDaten = new ArrayList<ZusaetzlicheGebaeudedatenType>();
}
return this.zusaetzlicheHaushaltsDaten;
return this.zusaetzlicheHaushaltDaten;
}
}

View File

@@ -20,7 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -37,7 +37,7 @@ public class SubmitApplicationSachPrivatResponseType
extends SubmitApplicationResponseType
{
@XmlElement(name = "Antragsantwort")
@XmlElement(name = "Antragsantwort", required = true)
protected AntragSachPrivatType antragsantwort;
/**

View File

@@ -1,17 +1,12 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat;
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;
/**
* Type Response Upselling: Enthält eines oder mehrere Verkaufsprodukte Sach-Privat
*
* <p>Java-Klasse für UpsellingSachPrivatResponse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
@@ -20,9 +15,6 @@ import javax.xml.bind.annotation.XmlType;
* &lt;complexType name="UpsellingSachPrivatResponse_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
@@ -31,41 +23,8 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UpsellingSachPrivatResponse_Type", propOrder = {
"upsellingVerkaufsprodukte"
})
@XmlType(name = "UpsellingSachPrivatResponse_Type")
public class UpsellingSachPrivatResponseType {
@XmlElement(name = "UpsellingVerkaufsprodukte")
protected List<VerkaufsproduktSachPrivatType> upsellingVerkaufsprodukte;
/**
* Gets the value of the upsellingVerkaufsprodukte 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 upsellingVerkaufsprodukte property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getUpsellingVerkaufsprodukte().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link VerkaufsproduktSachPrivatType }
*
*
*/
public List<VerkaufsproduktSachPrivatType> getUpsellingVerkaufsprodukte() {
if (upsellingVerkaufsprodukte == null) {
upsellingVerkaufsprodukte = new ArrayList<VerkaufsproduktSachPrivatType>();
}
return this.upsellingVerkaufsprodukte;
}
}

View File

@@ -7,7 +7,7 @@ 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_4_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
@@ -24,8 +24,8 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Produkte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Produkte" type="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -46,9 +46,9 @@ public class VerkaufsproduktSachPrivatType
{
@XmlElement(name = "Produkte", required = true)
protected List<ProduktGenerischType> produkte;
protected List<ProduktType> produkte;
@XmlElement(name = "Zusatzprodukte")
protected List<ProduktGenerischType> zusatzprodukte;
protected List<ProduktType> zusatzprodukte;
@XmlElement(name = "VersicherteObjekte", required = true)
protected List<VersichertesInteresseType> versicherteObjekte;
@@ -70,13 +70,13 @@ public class VerkaufsproduktSachPrivatType
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ProduktGenerischType }
* {@link ProduktType }
*
*
*/
public List<ProduktGenerischType> getProdukte() {
public List<ProduktType> getProdukte() {
if (produkte == null) {
produkte = new ArrayList<ProduktGenerischType>();
produkte = new ArrayList<ProduktType>();
}
return this.produkte;
}
@@ -99,13 +99,13 @@ public class VerkaufsproduktSachPrivatType
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ProduktGenerischType }
* {@link ProduktType }
*
*
*/
public List<ProduktGenerischType> getZusatzprodukte() {
public List<ProduktType> getZusatzprodukte() {
if (zusatzprodukte == null) {
zusatzprodukte = new ArrayList<ProduktGenerischType>();
zusatzprodukte = new ArrayList<ProduktType>();
}
return this.zusatzprodukte;
}

View File

@@ -1,17 +1,14 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.AttributMetadatenType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
@@ -25,12 +22,11 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
* <pre>
* &lt;complexType name="ElementarproduktUnfall_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="VersPersonRefLfNr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Versicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="Versicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&gt;
* &lt;element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -41,63 +37,95 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ElementarproduktUnfall_Type", propOrder = {
"rest"
"versPersonRefLfNr",
"versicherungssumme",
"selbstbehalt"
})
@XmlSeeAlso({
GenElementarproduktUnfallType.class
})
public class ElementarproduktUnfallType
extends ElementarproduktGenerischType
public abstract class ElementarproduktUnfallType
extends ElementarproduktType
{
@XmlElementRefs({
@XmlElementRef(name = "AttributMetadaten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
@XmlElementRef(name = "VersPersonRefLfNr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false)
})
protected List<JAXBElement<?>> rest;
@XmlElement(name = "VersPersonRefLfNr")
protected String versPersonRefLfNr;
@XmlElement(name = "Versicherungssumme")
@XmlSchemaType(name = "unsignedLong")
protected BigInteger versicherungssumme;
@XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt;
/**
* Ruft das restliche Contentmodell ab.
*
* <p>
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
* Der Feldname "AttributMetadaten" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
* Zeile 63 von file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3_ON2_Antrag_Unfall.xsd
* Zeile 720 von file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3CommonServiceTypes.xsd
* <p>
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
* Gets the value of the rest 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 rest property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getRest().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link AttributMetadatenType }{@code >}
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link Long }{@code >}
*
* Ruft den Wert der versPersonRefLfNr-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public List<JAXBElement<?>> getRest() {
if (rest == null) {
rest = new ArrayList<JAXBElement<?>>();
}
return this.rest;
public String getVersPersonRefLfNr() {
return versPersonRefLfNr;
}
/**
* Legt den Wert der versPersonRefLfNr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersPersonRefLfNr(String value) {
this.versPersonRefLfNr = value;
}
/**
* Ruft den Wert der versicherungssumme-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getVersicherungssumme() {
return versicherungssumme;
}
/**
* Legt den Wert der versicherungssumme-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setVersicherungssumme(BigInteger value) {
this.versicherungssumme = value;
}
/**
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
*
* @return
* possible object is
* {@link SelbstbehaltType }
*
*/
public SelbstbehaltType getSelbstbehalt() {
return selbstbehalt;
}
/**
* Legt den Wert der selbstbehalt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SelbstbehaltType }
*
*/
public void setSelbstbehalt(SelbstbehaltType value) {
this.selbstbehalt = value;
}
}

View File

@@ -3,6 +3,7 @@ package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
@@ -26,10 +27,38 @@ import javax.xml.bind.annotation.XmlType;
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GenElementarproduktUnfall_Type")
@XmlType(name = "GenElementarproduktUnfall_Type", propOrder = {
"leistungsartCode"
})
public class GenElementarproduktUnfallType
extends ElementarproduktUnfallType
{
@XmlElement(name = "LeistungsartCode", required = true)
protected String leistungsartCode;
/**
* Ruft den Wert der leistungsartCode-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLeistungsartCode() {
return leistungsartCode;
}
/**
* Legt den Wert der leistungsartCode-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLeistungsartCode(String value) {
this.leistungsartCode = value;
}
}

View File

@@ -5,8 +5,6 @@ import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
import at.vvo.omds.types.omds3Types.r1_4_0.common.AttributMetadatenType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
/**
@@ -26,6 +24,10 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
@XmlRegistry
public class ObjectFactory {
private final static QName _VerkaufsproduktUnfall_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "VerkaufsproduktUnfall");
private final static QName _ProduktUnfall_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "ProduktUnfall");
private final static QName _ElementarproduktUnfall_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "ElementarproduktUnfall");
private final static QName _GenElementarproduktUnfall_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "GenElementarproduktUnfall");
private final static QName _CalculateUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallRequest");
private final static QName _CalculateUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CalculateUnfallResponse");
private final static QName _CreateOfferUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallRequest");
@@ -34,10 +36,6 @@ public class ObjectFactory {
private final static QName _CreateApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateApplicationUnfallResponse");
private final static QName _SubmitApplicationUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallRequest");
private final static QName _SubmitApplicationUnfallResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "SubmitApplicationUnfallResponse");
private final static QName _ElementarproduktUnfallTypeVersPersonRefLfNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "VersPersonRefLfNr");
private final static QName _ElementarproduktUnfallTypeVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "Versicherungssumme");
private final static QName _ElementarproduktUnfallTypeSelbstbehalt_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "Selbstbehalt");
private final static QName _ElementarproduktUnfallTypeAttributMetadaten_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "AttributMetadaten");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall
@@ -46,6 +44,22 @@ public class ObjectFactory {
public ObjectFactory() {
}
/**
* Create an instance of {@link VerkaufsproduktUnfallType }
*
*/
public VerkaufsproduktUnfallType createVerkaufsproduktUnfallType() {
return new VerkaufsproduktUnfallType();
}
/**
* Create an instance of {@link GenElementarproduktUnfallType }
*
*/
public GenElementarproduktUnfallType createGenElementarproduktUnfallType() {
return new GenElementarproduktUnfallType();
}
/**
* Create an instance of {@link CalculateUnfallRequestType }
*
@@ -102,30 +116,6 @@ public class ObjectFactory {
return new SubmitApplicationUnfallResponseType();
}
/**
* Create an instance of {@link VerkaufsproduktUnfallType }
*
*/
public VerkaufsproduktUnfallType createVerkaufsproduktUnfallType() {
return new VerkaufsproduktUnfallType();
}
/**
* Create an instance of {@link ElementarproduktUnfallType }
*
*/
public ElementarproduktUnfallType createElementarproduktUnfallType() {
return new ElementarproduktUnfallType();
}
/**
* Create an instance of {@link GenElementarproduktUnfallType }
*
*/
public GenElementarproduktUnfallType createGenElementarproduktUnfallType() {
return new GenElementarproduktUnfallType();
}
/**
* Create an instance of {@link SpezBerechnungUnfallType }
*
@@ -158,6 +148,42 @@ public class ObjectFactory {
return new SubmitApplicationUnfallRequestType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link VerkaufsproduktUnfallType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "VerkaufsproduktUnfall")
public JAXBElement<VerkaufsproduktUnfallType> createVerkaufsproduktUnfall(VerkaufsproduktUnfallType value) {
return new JAXBElement<VerkaufsproduktUnfallType>(_VerkaufsproduktUnfall_QNAME, VerkaufsproduktUnfallType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ProduktUnfallType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "ProduktUnfall")
public JAXBElement<ProduktUnfallType> createProduktUnfall(ProduktUnfallType value) {
return new JAXBElement<ProduktUnfallType>(_ProduktUnfall_QNAME, ProduktUnfallType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ElementarproduktUnfallType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "ElementarproduktUnfall")
public JAXBElement<ElementarproduktUnfallType> createElementarproduktUnfall(ElementarproduktUnfallType value) {
return new JAXBElement<ElementarproduktUnfallType>(_ElementarproduktUnfall_QNAME, ElementarproduktUnfallType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link GenElementarproduktUnfallType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "GenElementarproduktUnfall")
public JAXBElement<GenElementarproduktUnfallType> createGenElementarproduktUnfall(GenElementarproduktUnfallType value) {
return new JAXBElement<GenElementarproduktUnfallType>(_GenElementarproduktUnfall_QNAME, GenElementarproduktUnfallType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >}}
*
@@ -230,40 +256,4 @@ public class ObjectFactory {
return new JAXBElement<SubmitApplicationUnfallResponseType>(_SubmitApplicationUnfallResponse_QNAME, SubmitApplicationUnfallResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "VersPersonRefLfNr", scope = ElementarproduktUnfallType.class)
public JAXBElement<String> createElementarproduktUnfallTypeVersPersonRefLfNr(String value) {
return new JAXBElement<String>(_ElementarproduktUnfallTypeVersPersonRefLfNr_QNAME, String.class, ElementarproduktUnfallType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "Versicherungssumme", scope = ElementarproduktUnfallType.class)
public JAXBElement<Long> createElementarproduktUnfallTypeVersicherungssumme(Long value) {
return new JAXBElement<Long>(_ElementarproduktUnfallTypeVersicherungssumme_QNAME, Long.class, ElementarproduktUnfallType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "Selbstbehalt", scope = ElementarproduktUnfallType.class)
public JAXBElement<SelbstbehaltType> createElementarproduktUnfallTypeSelbstbehalt(SelbstbehaltType value) {
return new JAXBElement<SelbstbehaltType>(_ElementarproduktUnfallTypeSelbstbehalt_QNAME, SelbstbehaltType.class, ElementarproduktUnfallType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link AttributMetadatenType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", name = "AttributMetadaten", scope = ElementarproduktUnfallType.class)
public JAXBElement<AttributMetadatenType> createElementarproduktUnfallTypeAttributMetadaten(AttributMetadatenType value) {
return new JAXBElement<AttributMetadatenType>(_ElementarproduktUnfallTypeAttributMetadaten_QNAME, AttributMetadatenType.class, ElementarproduktUnfallType.class, value);
}
}

View File

@@ -7,7 +7,7 @@ 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_4_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
@@ -21,15 +21,11 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
* <pre>
* &lt;complexType name="ProduktUnfall_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&gt;
* &lt;element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}ElementarproduktUnfall_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/&gt;
* &lt;element name="LeistungsartTod" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}ElementarproduktUnfall_Type" minOccurs="0"/&gt;
* &lt;element name="LeistungartInvaliditaet" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}ElementarproduktUnfall_Type" minOccurs="0"/&gt;
* &lt;element name="LeistungsartUnfallkosten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}ElementarproduktUnfall_Type" minOccurs="0"/&gt;
* &lt;element name="LeistungsartSpitalgeld" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}ElementarproduktUnfall_Type" minOccurs="0"/&gt;
* &lt;element name="Leistungsarten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}GenElementarproduktUnfall_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
@@ -41,31 +37,19 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktUnfall_Type", propOrder = {
"selbstbehalt",
"versPersonenRefLfnr",
"leistungsartTod",
"leistungartInvaliditaet",
"leistungsartUnfallkosten",
"leistungsartSpitalgeld",
"leistungsarten"
"leistungsarten",
"versPersonenRefLfnr"
})
public abstract class ProduktUnfallType
extends ProduktGenerischType
extends ProduktType
{
@XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt;
@XmlElement(name = "Leistungsarten", required = true)
protected List<ElementarproduktUnfallType> leistungsarten;
@XmlElement(name = "VersPersonenRefLfnr", required = true)
protected List<String> versPersonenRefLfnr;
@XmlElement(name = "LeistungsartTod")
protected ElementarproduktUnfallType leistungsartTod;
@XmlElement(name = "LeistungartInvaliditaet")
protected ElementarproduktUnfallType leistungartInvaliditaet;
@XmlElement(name = "LeistungsartUnfallkosten")
protected ElementarproduktUnfallType leistungsartUnfallkosten;
@XmlElement(name = "LeistungsartSpitalgeld")
protected ElementarproduktUnfallType leistungsartSpitalgeld;
@XmlElement(name = "Leistungsarten")
protected List<GenElementarproduktUnfallType> leistungsarten;
/**
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
@@ -91,6 +75,35 @@ public abstract class ProduktUnfallType
this.selbstbehalt = value;
}
/**
* 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 ElementarproduktUnfallType }
*
*
*/
public List<ElementarproduktUnfallType> getLeistungsarten() {
if (leistungsarten == null) {
leistungsarten = new ArrayList<ElementarproduktUnfallType>();
}
return this.leistungsarten;
}
/**
* Gets the value of the versPersonenRefLfnr property.
*
@@ -120,129 +133,4 @@ public abstract class ProduktUnfallType
return this.versPersonenRefLfnr;
}
/**
* Ruft den Wert der leistungsartTod-Eigenschaft ab.
*
* @return
* possible object is
* {@link ElementarproduktUnfallType }
*
*/
public ElementarproduktUnfallType getLeistungsartTod() {
return leistungsartTod;
}
/**
* Legt den Wert der leistungsartTod-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ElementarproduktUnfallType }
*
*/
public void setLeistungsartTod(ElementarproduktUnfallType value) {
this.leistungsartTod = value;
}
/**
* Ruft den Wert der leistungartInvaliditaet-Eigenschaft ab.
*
* @return
* possible object is
* {@link ElementarproduktUnfallType }
*
*/
public ElementarproduktUnfallType getLeistungartInvaliditaet() {
return leistungartInvaliditaet;
}
/**
* Legt den Wert der leistungartInvaliditaet-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ElementarproduktUnfallType }
*
*/
public void setLeistungartInvaliditaet(ElementarproduktUnfallType value) {
this.leistungartInvaliditaet = value;
}
/**
* Ruft den Wert der leistungsartUnfallkosten-Eigenschaft ab.
*
* @return
* possible object is
* {@link ElementarproduktUnfallType }
*
*/
public ElementarproduktUnfallType getLeistungsartUnfallkosten() {
return leistungsartUnfallkosten;
}
/**
* Legt den Wert der leistungsartUnfallkosten-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ElementarproduktUnfallType }
*
*/
public void setLeistungsartUnfallkosten(ElementarproduktUnfallType value) {
this.leistungsartUnfallkosten = value;
}
/**
* Ruft den Wert der leistungsartSpitalgeld-Eigenschaft ab.
*
* @return
* possible object is
* {@link ElementarproduktUnfallType }
*
*/
public ElementarproduktUnfallType getLeistungsartSpitalgeld() {
return leistungsartSpitalgeld;
}
/**
* Legt den Wert der leistungsartSpitalgeld-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ElementarproduktUnfallType }
*
*/
public void setLeistungsartSpitalgeld(ElementarproduktUnfallType value) {
this.leistungsartSpitalgeld = value;
}
/**
* 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 GenElementarproduktUnfallType }
*
*
*/
public List<GenElementarproduktUnfallType> getLeistungsarten() {
if (leistungsarten == null) {
leistungsarten = new ArrayList<GenElementarproduktUnfallType>();
}
return this.leistungsarten;
}
}

View File

@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
/**
* This class was generated by Apache CXF 3.2.0
* 2019-08-21T15:48:46.103+02:00
* 2019-07-12T15:19:45.936+02:00
* Generated source version: 3.2.0
*
*/

View File

@@ -13,11 +13,10 @@ import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.soap.MTOM;
/**
* This class was generated by Apache CXF 3.2.0
* 2019-08-21T15:48:46.008+02:00
* 2019-08-01T18:31:08.954+02:00
* Generated source version: 3.2.0
*
*/
@@ -28,12 +27,27 @@ import javax.xml.ws.soap.MTOM;
targetNamespace = "urn:omds3Services-1-4-0",
wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3Services.wsdl",
endpointInterface = "at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType")
@MTOM(enabled = true, threshold = 1024)
public class OmdsServicePortImpl implements OmdsServicePortType {
private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName());
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getOMDSPackageList");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseRequestType parameters)*
*/
@@ -66,6 +80,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation calculateSachPrivat");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#addCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.AddCommunicationObjectRequestType parameters)*
*/
@@ -98,6 +128,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationRechtsschutz");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters)*
*/
@@ -130,6 +176,38 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkPartner");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkPolicy");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateOfferRechtsschutzRequestType parameters)*
*/
@@ -178,6 +256,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getUserData");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#changePersonData(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangePersonDataRequestType parameters)*
*/
@@ -210,6 +304,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkClaim");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createClaim(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.CreateClaimRequestType parameters)*
*/
@@ -242,310 +352,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkOffer");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#submitApplication(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonResponseType submitApplication(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation submitApplication");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getDocumentsOfPeriod");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getClaimLight(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType getClaimLight(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getClaimLight");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getPoliciesOfPartner(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType getPoliciesOfPartner(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getPoliciesOfPartner");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation deleteCommunicationObject");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getChangedClaimsList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType getChangedClaimsList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getChangedClaimsList");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getPartner(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType getPartner(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getPartner");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#calculate(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonResponseType calculate(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation calculate");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getArcImageInfos");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getLossEventList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType getLossEventList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getLossEventList");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getOMDSPackageList");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplication(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonResponseType createApplication(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation createApplication");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation calculateSachPrivat");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationRechtsschutz");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkPartner");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkPolicy");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getUserData");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkClaim");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#collectionChange(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.CollectionChangeRequestType parameters)*
*/
@@ -595,13 +401,29 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createOffer(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonRequestType parameters)*
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonResponseType createOffer(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation createOffer");
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkOffer");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonResponseType _return = null;
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getDocumentsOfPeriod");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
@@ -626,6 +448,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getClaimLight(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType getClaimLight(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getClaimLight");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType parameters)*
*/
@@ -642,6 +480,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getPoliciesOfPartner(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType getPoliciesOfPartner(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getPoliciesOfPartner");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#changeCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangeCommunicationObjectRequestType parameters)*
*/
@@ -674,6 +528,54 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation deleteCommunicationObject");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getChangedClaimsList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType getChangedClaimsList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getChangedClaimsList");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getPartner(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType getPartner(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getPartner");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters)*
*/
@@ -834,4 +736,36 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getArcImageInfos");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getLossEventList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType getLossEventList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters) throws ServiceFaultMsg {
LOG.info("Executing operation getLossEventList");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
}

View File

@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 3.2.0
* 2019-08-21T15:48:46.074+02:00
* 2019-07-12T15:19:45.905+02:00
* Generated source version: 3.2.0
*
*/
@@ -18,6 +18,13 @@ import javax.xml.bind.annotation.XmlSeeAlso;
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface OmdsServicePortType {
@WebMethod(action = "urn:getOMDSPackageList")
@WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(
@WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:addDocToBusinessCase")
@WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(
@@ -32,6 +39,13 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.CheckAddressRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateSachPrivat")
@WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(
@WebParam(partName = "parameters", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat")
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:addCommunicationObject")
@WebResult(name = "AddCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.AddCommunicationObjectResponseType addCommunicationObject(
@@ -46,6 +60,13 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CalculateRechtsschutzRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationRechtsschutz")
@WebResult(name = "CreateApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(
@WebParam(partName = "parameters", name = "CreateApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationKfz")
@WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(
@@ -60,6 +81,20 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkPartner")
@WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(
@WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkPolicy")
@WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(
@WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createOfferRechtsschutz")
@WebResult(name = "CreateOfferRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateOfferRechtsschutzResponseType createOfferRechtsschutz(
@@ -81,6 +116,13 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getUserData")
@WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse getUserData(
@WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:changePersonData")
@WebResult(name = "ChangePersonDataResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangePersonDataResponseType changePersonData(
@@ -95,6 +137,13 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.InitiateClaimRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkClaim")
@WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(
@WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createClaim")
@WebResult(name = "CreateClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.CreateClaimResponseType createClaim(
@@ -109,139 +158,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SubmitClaimRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkOffer")
@WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(
@WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:submitApplication")
@WebResult(name = "SubmitApplicationCommonResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonResponseType submitApplication(
@WebParam(partName = "parameters", name = "SubmitApplicationCommonRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getDocumentsOfPeriod")
@WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(
@WebParam(partName = "parameters", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen")
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getClaimLight")
@WebResult(name = "GetClaimLightResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType getClaimLight(
@WebParam(partName = "parameters", name = "GetClaimLightRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:changePersonData")
@WebResult(name = "GetPoliciesOfPartnerResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType getPoliciesOfPartner(
@WebParam(partName = "parameters", name = "GetPoliciesOfPartnerRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag")
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deleteCommunicationObject")
@WebResult(name = "DeleteCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(
@WebParam(partName = "parameters", name = "DeleteCommunicationObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getChangedClaimsList")
@WebResult(name = "ChangedClaimsListResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType getChangedClaimsList(
@WebParam(partName = "parameters", name = "ChangedClaimsListRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getPartner")
@WebResult(name = "GetPartnerResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType getPartner(
@WebParam(partName = "parameters", name = "GetPartnerRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculate")
@WebResult(name = "CalculateCommonResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonResponseType calculate(
@WebParam(partName = "parameters", name = "CalculateCommonRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getArcImageInfos")
@WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse getArcImageInfos(
@WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getLossEventList")
@WebResult(name = "LossEventListResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType getLossEventList(
@WebParam(partName = "parameters", name = "LossEventListRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getOMDSPackageList")
@WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(
@WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplication")
@WebResult(name = "CreateApplicationCommonResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonResponseType createApplication(
@WebParam(partName = "parameters", name = "CreateApplicationCommonRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateSachPrivat")
@WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(
@WebParam(partName = "parameters", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat")
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationRechtsschutz")
@WebResult(name = "CreateApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(
@WebParam(partName = "parameters", name = "CreateApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkPartner")
@WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(
@WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkPolicy")
@WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(
@WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getUserData")
@WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse getUserData(
@WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkClaim")
@WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(
@WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:collectionChange")
@WebResult(name = "CollectionChangeResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.CollectionChangeResponseType collectionChange(
@@ -263,11 +179,18 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createOffer")
@WebResult(name = "CreateOfferCommonResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonResponseType createOffer(
@WebParam(partName = "parameters", name = "CreateOfferCommonRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonRequestType parameters
@WebMethod(action = "urn:deepLinkOffer")
@WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(
@WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getDocumentsOfPeriod")
@WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(
@WebParam(partName = "parameters", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen")
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getDocumentsOfObject")
@@ -277,6 +200,13 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getClaimLight")
@WebResult(name = "GetClaimLightResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType getClaimLight(
@WebParam(partName = "parameters", name = "GetClaimLightRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateKfz")
@WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(
@@ -284,6 +214,13 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:changePersonData")
@WebResult(name = "GetPoliciesOfPartnerResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType getPoliciesOfPartner(
@WebParam(partName = "parameters", name = "GetPoliciesOfPartnerRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag")
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:changeCommunicationObject")
@WebResult(name = "ChangeCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangeCommunicationObjectResponse changeCommunicationObject(
@@ -298,6 +235,27 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deleteCommunicationObject")
@WebResult(name = "DeleteCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(
@WebParam(partName = "parameters", name = "DeleteCommunicationObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getChangedClaimsList")
@WebResult(name = "ChangedClaimsListResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType getChangedClaimsList(
@WebParam(partName = "parameters", name = "ChangedClaimsListRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getPartner")
@WebResult(name = "GetPartnerResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType getPartner(
@WebParam(partName = "parameters", name = "GetPartnerRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationSachPrivat")
@WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(
@@ -367,4 +325,18 @@ public interface OmdsServicePortType {
@WebParam(partName = "parameters", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat")
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getArcImageInfos")
@WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse getArcImageInfos(
@WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getLossEventList")
@WebResult(name = "LossEventListResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType getLossEventList(
@WebParam(partName = "parameters", name = "LossEventListRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters
) throws ServiceFaultMsg;
}

View File

@@ -20,7 +20,7 @@ import javax.xml.ws.soap.MTOMFeature;
/**
* This class was generated by Apache CXF 3.2.0
* 2019-08-21T17:59:18.494+02:00
* 2019-07-12T15:19:45.668+02:00
* Generated source version: 3.2.0
*
*/
@@ -46,11 +46,21 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
}
}
// OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
// OmdsServicePortType port = ss.getOmdsServicePort();
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024));
{
System.out.println("Invoking getOMDSPackageList...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters);
System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking addDocToBusinessCase...");
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseRequestType _addDocToBusinessCase_parameters = null;
@@ -70,6 +80,18 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.CheckAddressResponseType _checkAddress__return = port.checkAddress(_checkAddress_parameters);
System.out.println("checkAddress.result=" + _checkAddress__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking calculateSachPrivat...");
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_parameters);
System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -94,6 +116,18 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CalculateRechtsschutzResponseType _calculateRechtsschutz__return = port.calculateRechtsschutz(_calculateRechtsschutz_parameters);
System.out.println("calculateRechtsschutz.result=" + _calculateRechtsschutz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createApplicationRechtsschutz...");
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType _createApplicationRechtsschutz_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _createApplicationRechtsschutz__return = port.createApplicationRechtsschutz(_createApplicationRechtsschutz_parameters);
System.out.println("createApplicationRechtsschutz.result=" + _createApplicationRechtsschutz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -118,6 +152,30 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_parameters);
System.out.println("createOfferKfz.result=" + _createOfferKfz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkPartner...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters);
System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkPolicy...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters);
System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -154,6 +212,18 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType _getStateChanges__return = port.getStateChanges(_getStateChanges_parameters);
System.out.println("getStateChanges.result=" + _getStateChanges__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getUserData...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest _getUserData_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters);
System.out.println("getUserData.result=" + _getUserData__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -178,6 +248,18 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.InitiateClaimResponseType _initiateClaim__return = port.initiateClaim(_initiateClaim_parameters);
System.out.println("initiateClaim.result=" + _initiateClaim__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkClaim...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters);
System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -202,234 +284,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_parameters);
System.out.println("submitClaim.result=" + _submitClaim__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkOffer...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters);
System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking submitApplication...");
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonRequestType _submitApplication_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonResponseType _submitApplication__return = port.submitApplication(_submitApplication_parameters);
System.out.println("submitApplication.result=" + _submitApplication__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getDocumentsOfPeriod...");
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_parameters);
System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getClaimLight...");
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType _getClaimLight_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType _getClaimLight__return = port.getClaimLight(_getClaimLight_parameters);
System.out.println("getClaimLight.result=" + _getClaimLight__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getPoliciesOfPartner...");
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType _getPoliciesOfPartner_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType _getPoliciesOfPartner__return = port.getPoliciesOfPartner(_getPoliciesOfPartner_parameters);
System.out.println("getPoliciesOfPartner.result=" + _getPoliciesOfPartner__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deleteCommunicationObject...");
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType _deleteCommunicationObject_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType _deleteCommunicationObject__return = port.deleteCommunicationObject(_deleteCommunicationObject_parameters);
System.out.println("deleteCommunicationObject.result=" + _deleteCommunicationObject__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getChangedClaimsList...");
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType _getChangedClaimsList_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType _getChangedClaimsList__return = port.getChangedClaimsList(_getChangedClaimsList_parameters);
System.out.println("getChangedClaimsList.result=" + _getChangedClaimsList__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getPartner...");
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType _getPartner_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType _getPartner__return = port.getPartner(_getPartner_parameters);
System.out.println("getPartner.result=" + _getPartner__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking calculate...");
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonRequestType _calculate_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonResponseType _calculate__return = port.calculate(_calculate_parameters);
System.out.println("calculate.result=" + _calculate__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getArcImageInfos...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters);
System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getLossEventList...");
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType _getLossEventList_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType _getLossEventList__return = port.getLossEventList(_getLossEventList_parameters);
System.out.println("getLossEventList.result=" + _getLossEventList__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getOMDSPackageList...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters);
System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createApplication...");
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonRequestType _createApplication_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonResponseType _createApplication__return = port.createApplication(_createApplication_parameters);
System.out.println("createApplication.result=" + _createApplication__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking calculateSachPrivat...");
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_parameters);
System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createApplicationRechtsschutz...");
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType _createApplicationRechtsschutz_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _createApplicationRechtsschutz__return = port.createApplicationRechtsschutz(_createApplicationRechtsschutz_parameters);
System.out.println("createApplicationRechtsschutz.result=" + _createApplicationRechtsschutz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkPartner...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters);
System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkPolicy...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters);
System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getUserData...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest _getUserData_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters);
System.out.println("getUserData.result=" + _getUserData__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkClaim...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters);
System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -472,11 +326,23 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
}
}
{
System.out.println("Invoking createOffer...");
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonRequestType _createOffer_parameters = null;
System.out.println("Invoking deepLinkOffer...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonResponseType _createOffer__return = port.createOffer(_createOffer_parameters);
System.out.println("createOffer.result=" + _createOffer__return);
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters);
System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getDocumentsOfPeriod...");
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_parameters);
System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
@@ -490,6 +356,18 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectResponseType _getDocumentsOfObject__return = port.getDocumentsOfObject(_getDocumentsOfObject_parameters);
System.out.println("getDocumentsOfObject.result=" + _getDocumentsOfObject__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getClaimLight...");
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType _getClaimLight_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType _getClaimLight__return = port.getClaimLight(_getClaimLight_parameters);
System.out.println("getClaimLight.result=" + _getClaimLight__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -502,6 +380,18 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters);
System.out.println("calculateKfz.result=" + _calculateKfz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getPoliciesOfPartner...");
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType _getPoliciesOfPartner_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType _getPoliciesOfPartner__return = port.getPoliciesOfPartner(_getPoliciesOfPartner_parameters);
System.out.println("getPoliciesOfPartner.result=" + _getPoliciesOfPartner__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -526,6 +416,42 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_parameters);
System.out.println("createOfferSachPrivat.result=" + _createOfferSachPrivat__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deleteCommunicationObject...");
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType _deleteCommunicationObject_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType _deleteCommunicationObject__return = port.deleteCommunicationObject(_deleteCommunicationObject_parameters);
System.out.println("deleteCommunicationObject.result=" + _deleteCommunicationObject__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getChangedClaimsList...");
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType _getChangedClaimsList_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType _getChangedClaimsList__return = port.getChangedClaimsList(_getChangedClaimsList_parameters);
System.out.println("getChangedClaimsList.result=" + _getChangedClaimsList__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getPartner...");
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType _getPartner_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType _getPartner__return = port.getPartner(_getPartner_parameters);
System.out.println("getPartner.result=" + _getPartner__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -646,6 +572,30 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _submitApplicationSachPrivat__return = port.submitApplicationSachPrivat(_submitApplicationSachPrivat_parameters);
System.out.println("submitApplicationSachPrivat.result=" + _submitApplicationSachPrivat__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getArcImageInfos...");
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters);
System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getLossEventList...");
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType _getLossEventList_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType _getLossEventList__return = port.getLossEventList(_getLossEventList_parameters);
System.out.println("getLossEventList.result=" + _getLossEventList__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());

View File

@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
/**
* This class was generated by Apache CXF 3.2.0
* 2019-08-21T15:48:45.994+02:00
* 2019-07-12T15:19:45.777+02:00
* Generated source version: 3.2.0
*/

View File

@@ -16,19 +16,7 @@ Was ist neu oder anders in Version 1.4.0 im Vergleich zur Version 1.3.0?
b) Eigenes domänenenspezifisches XSD fuer Schaden: omds3_ON7_Schaden
c) addDocToClaim umbenannt zu acDocToBusinessCase damit die Methode auch im
Zusammenhang mit BOA benutzt werden kann.
5. Einige Korrekturen am Entwurf für Sach-Privat:
a) BeteiligtePersonVertrag_Type verwendet den neuen einheitlichen Person-Typ
b) ZusaetlicheHaushaltDaten korrigert und verwendet jetzt ZusaetzlicheHaushaltsdaten_Type
c) Korrektur in der Vererbung der Request- und Responseobjekte
d)
6. Einführung von Elementen zur Beauskunftung der Produktstruktur:
a) Einführung von optionalen "AttributMetadaten" in allen Produktbausteinen
b) Einführung von ProduktbausteinAntragsprozessGenerisch_Type welcher die Elemente
"Eingeschlossen" und "EinschlussAenderbar" enthalt und in den Ebenen 2 und 3 der Sparten
Unfall, Sach-Privat und Rechtsschutz verwendet wird.
7. Kfz: Optionales Tarifmerkmal "Leasing verbundene Unternehmen"
8. Einführung von MTOM
9. Allgemeine - spartenunabhängige - Methoden für BOA eingeführt
=============
Version 1.3.0

View File

@@ -5,7 +5,6 @@ xmlns:os="urn:omds3Services-1-4-0"
xmlns:ost="urn:omds3ServiceTypes-1-1-0"
xmlns:cst="urn:omds3CommonServiceTypes-1-1-0"
xmlns:b="urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen"
xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common"
xmlns:boak="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz"
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"
@@ -33,7 +32,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat" schemaLocation="omds3_ON2_Antrag_SachPrivat.xsd"/>
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs" schemaLocation="omds3_ON2_Antrag_Rechtsschutz.xsd"/>
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall" schemaLocation="omds3_ON2_Antrag_Unfall.xsd"/>
<import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.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.on4partner" schemaLocation="omds3_ON4_Partner.xsd"/>
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" schemaLocation="omds3_ON7_Schaden.xsd"/>
@@ -276,32 +274,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<part name="parameters" element="boaRs:SubmitApplicationRechtsschutzResponse"/>
</message>
<!-- alle Sparten -->
<message name="CalculateRequestMsg">
<part name="parameters" element="ac:CalculateCommonRequest"/>
</message>
<message name="CalculateResponseMsg">
<part name="parameters" element="ac:CalculateCommonResponse"/>
</message>
<message name="CreateOfferRequestMsg">
<part name="parameters" element="ac:CreateOfferCommonRequest"/>
</message>
<message name="CreateOfferResponseMsg">
<part name="parameters" element="ac:CreateOfferCommonResponse"/>
</message>
<message name="CreateApplicationRequestMsg">
<part name="parameters" element="ac:CreateApplicationCommonRequest"/>
</message>
<message name="CreateApplicationResponseMsg">
<part name="parameters" element="ac:CreateApplicationCommonResponse"/>
</message>
<message name="SubmitApplicationRequestMsg">
<part name="parameters" element="ac:SubmitApplicationCommonRequest"/>
</message>
<message name="SubmitApplicationResponseMsg">
<part name="parameters" element="ac:SubmitApplicationCommonResponse"/>
</message>
<!-- State-Changes z.B. Polizzierung -->
<message name="GetStateChangesRequestMsg">
<part name="parameters" element="b:GetStateChangesRequest"/>
@@ -562,28 +534,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<output name="SubmitApplicationRechtsschutzResponsePort" message="os:SubmitApplicationRechtsschutzResponseMsg"/>
<fault name="SubmitApplicationRechtsschutzFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="calculate">
<input name="CalculateRequestPort" message="os:CalculateRequestMsg"/>
<output name="CalculateResponsePort" message="os:CalculateResponseMsg"/>
<fault name="CalculateFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="createOffer">
<input name="CreateOfferRequestPort" message="os:CreateOfferRequestMsg"/>
<output name="CreateOfferResponsePort" message="os:CreateOfferResponseMsg"/>
<fault name="CreateOfferFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="createApplication">
<input name="CreateApplicationRequestPort" message="os:CreateApplicationRequestMsg"/>
<output name="CreateApplicationResponsePort" message="os:CreateApplicationResponseMsg"/>
<fault name="CreateApplicationFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="submitApplication">
<input name="SubmitApplicationRequestPort" message="os:SubmitApplicationRequestMsg"/>
<output name="SubmitApplicationResponsePort" message="os:SubmitApplicationResponseMsg"/>
<fault name="SubmitApplicationFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="getStateChanges">
<input name="GetStateChangesRequestPort" message="os:GetStateChangesRequestMsg"/>
@@ -1128,58 +1078,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:fault name="GetStateChangesFault" use="literal"/>
</fault>
</operation>
<!-- Berechnung, Offert, Antrag allgemein für alle Arten von Verkaufsprodukten -->
<operation name="calculate">
<soap:operation soapAction="urn:calculate" style="document"/>
<input name="CalculateRequestPort">
<soap:body use="literal"/>
</input>
<output name="CalculateResponsePort">
<soap:body use="literal"/>
</output>
<fault name="CalculateFault">
<soap:fault name="CalculateFault" use="literal"/>
</fault>
</operation>
<operation name="createOffer">
<soap:operation soapAction="urn:createOffer" style="document"/>
<input name="CreateOfferRequestPort">
<soap:body use="literal"/>
</input>
<output name="CreateOfferResponsePort">
<soap:body use="literal"/>
</output>
<fault name="CreateOfferFault">
<soap:fault name="CreateOfferFault" use="literal"/>
</fault>
</operation>
<operation name="createApplication">
<soap:operation soapAction="urn:createApplication" style="document"/>
<input name="CreateApplicationRequestPort">
<soap:body use="literal"/>
</input>
<output name="CreateApplicationResponsePort">
<soap:body use="literal"/>
</output>
<fault name="CreateApplicationFault">
<soap:fault name="CreateApplicationFault" use="literal"/>
</fault>
</operation>
<operation name="submitApplication">
<soap:operation soapAction="urn:submitApplication" style="document"/>
<input name="SubmitApplicationRequestPort">
<soap:body use="literal"/>
</input>
<output name="SubmitApplicationResponsePort">
<soap:body use="literal"/>
</output>
<fault name="SubmitApplicationFault">
<soap:fault name="SubmitApplicationFault" use="literal"/>
</fault>
</operation>
<!-- Personen Bestandsdaten Änderung -->
<operation name="getPoliciesOfPartner">
<soap:operation soapAction="urn:changePersonData" style="document"/>

View File

@@ -272,186 +272,4 @@
<xsd:documentation>Element um Offert- und Antragsdokumente zurückzugeben</xsd:documentation>
</xsd:annotation>
</xsd:element>
<!-- Allgemeine Services, die unterschiedliche Verkaufsprodukte entgegennehmen -->
<xsd:complexType name="SpezBerechnungCommon_Type">
<xsd:annotation>
<xsd:documentation>Daten Berechnung die bei Request und Response gleich sind</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="SpezBerechnung_Type">
<xsd:sequence>
<xsd:element name="Verkaufsprodukt" type="cst:Verkaufsprodukt_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="SpezOffertCommon_Type">
<xsd:annotation>
<xsd:documentation>Daten Offerterstellung die bei Request und Response gleich sind</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="SpezOffert_Type">
<xsd:sequence>
<xsd:element name="Verkaufsprodukt" type="cst:Verkaufsprodukt_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="SpezAntragCommon_Type">
<xsd:annotation>
<xsd:documentation>Daten Antrag die bei Request und Response gleich sind</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="SpezAntrag_Type">
<xsd:sequence>
<xsd:element name="Verkaufsprodukt" type="cst:Verkaufsprodukt_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="UpsellingResponseCommon_Type" abstract="true">
<xsd:annotation>
<xsd:documentation>Response Upselling Alternativen</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="UpsellingVerkaufsprodukte" type="cst:Verkaufsprodukt_Type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CalculateCommonRequest_Type">
<xsd:annotation>
<xsd:documentation>Typ um einen allgemeinen Berechungsrequest durchzuführen</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="CalculateRequest_Type">
<xsd:sequence>
<xsd:element name="Berechnungsanfrage" type="SpezBerechnungCommon_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CalculateCommonResponse_Type">
<xsd:annotation>
<xsd:documentation>Typ für einen allgemeinen Berechnungs-Response</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="CalculateResponse_Type">
<xsd:sequence>
<xsd:element name="Berechnungsantwort" type="SpezBerechnungCommon_Type" minOccurs="0"/>
<xsd:element name="ResponseUpselling" type="UpsellingResponseCommon_Type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CreateOfferCommonRequest_Type">
<xsd:annotation>
<xsd:documentation>Typ um einen allgemeinen Offerterzeugungs-Request durchzuführen</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="CreateOfferRequest_Type">
<xsd:sequence>
<xsd:element name="Offertanfrage" type="SpezOffertCommon_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CreateOfferCommonResponse_Type">
<xsd:annotation>
<xsd:documentation>Typ für einen allgemeinen Offerterzeugungs-Response</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="CreateOfferResponse_Type">
<xsd:sequence>
<xsd:element name="Offertantwort" type="SpezOffertCommon_Type" minOccurs="0"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CreateApplicationCommonRequest_Type">
<xsd:annotation>
<xsd:documentation>Typ um einen allgemeinen Antragserzeugungs-Request durchzuführen</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="CreateApplicationRequest_Type">
<xsd:sequence>
<xsd:element name="Antragsanfrage" type="SpezAntragCommon_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CreateApplicationCommonResponse_Type">
<xsd:annotation>
<xsd:documentation>Typ für einen allgemeinen Antragserzeugungs-Response</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="CreateApplicationResponse_Type">
<xsd:sequence>
<xsd:element name="Antragsantwort" type="SpezAntragCommon_Type" minOccurs="0"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="SubmitApplicationCommonRequest_Type">
<xsd:annotation>
<xsd:documentation>Typ um eine allgemeine Antragsüberleitung durchzuführen</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="SubmitApplicationRequest_Type">
<xsd:sequence>
<xsd:element name="Antragsanfrage" type="SpezAntragCommon_Type" minOccurs="0"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="SubmitApplicationCommonResponse_Type">
<xsd:annotation>
<xsd:documentation>Typ für einen allgemeinen Antragsüberleitungs-Response</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="SubmitApplicationResponse_Type">
<xsd:sequence>
<xsd:element name="Antragsantwort" type="SpezAntragCommon_Type" minOccurs="0"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="CalculateCommonRequest" type="CalculateCommonRequest_Type">
<xsd:annotation>
<xsd:documentation>Element für Berechnungsrequest für alle Sparten</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CalculateCommonResponse" type="CalculateCommonResponse_Type">
<xsd:annotation>
<xsd:documentation>Element für Berechnungsresponse für alle Sparten</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateOfferCommonRequest" type="CreateOfferCommonRequest_Type">
<xsd:annotation>
<xsd:documentation>Element für Offerterzeugungs-Request für alle Sparten</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateOfferCommonResponse" type="CreateOfferCommonResponse_Type">
<xsd:annotation>
<xsd:documentation>Element für Offerterzeugungs-Response für alle Sparten</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateApplicationCommonRequest" type="CreateApplicationCommonRequest_Type">
<xsd:annotation>
<xsd:documentation>Element für Antragserzeugungs-Request für alle Sparten</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateApplicationCommonResponse" type="CreateApplicationCommonResponse_Type">
<xsd:annotation>
<xsd:documentation>Element für Antragserzeugungs-Response für alle Sparten</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SubmitApplicationCommonRequest" type="SubmitApplicationCommonRequest_Type">
<xsd:annotation>
<xsd:documentation>Element für Antragsüberleitungs-Request für alle Sparten</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SubmitApplicationCommonResponse" type="SubmitApplicationCommonResponse_Type">
<xsd:annotation>
<xsd:documentation>Element für Antragsüberleitungs-Response für alle Sparten</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:schema>

View File

@@ -40,7 +40,7 @@
</xsd:complexType>
<xsd:complexType name="ElementarproduktRechtsschutz_Type">
<xsd:annotation>
<xsd:documentation>Typ für ein Elementarprodukt in der Sparte Rechtsschutz. Von diesem Typ können künftig etwaige Standard-Deckungen abgeleitet werden. Von diesem Typ können einzelne VUs aber auch ihre eigenen Elementarprodukte ableiten.</xsd:documentation>
<xsd:documentation>Typ für ein Elementarprodukt in der Sparte Rechtsschutz. Von diesem Typ werden etwaige Standard-Deckungen abgeleitet, siehe Vertragsrechtsschutz_Type. Von diesem Typ können einzelne VUs aber auch ihre eigenen Elementarprodukte ableiten, wenn sie möchten.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="cst:ElementarproduktGenerisch_Type">
@@ -54,6 +54,7 @@
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<!-- Der Typ Vertragsrechtsschutz_Type ist ein Beispiel für einen normierten Untertyp. In dieser Form können auch VUs eigene Untertypen definieren -->
<xsd:simpleType name="OertlicherGeltungsbereichCd_Type">
<xsd:restriction base="xsd:unsignedByte">
<xsd:enumeration value="1">
@@ -121,14 +122,6 @@
</xsd:complexContent>
</xsd:complexType>
<!-- Typen und Elemente für die Methoden -->
<xsd:complexType name="UpsellingRechtsschutzResponse_Type" abstract="true">
<xsd:annotation>
<xsd:documentation>Response Upselling Alternativen</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="UpsellingVerkaufsprodukte" type="VerkaufsproduktRechtsschutz_Type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CalculateRechtsschutzRequest_Type">
<xsd:annotation>
<xsd:documentation>Typ des Requestobjekts für eine Berechnung Rechtsschutz</xsd:documentation>
@@ -148,12 +141,7 @@
<xsd:complexContent>
<xsd:extension base="ac:CalculateResponse_Type">
<xsd:sequence>
<xsd:element name="Berechnungsantwort" type="SpezBerechnungRechtsschutz_Type" minOccurs="0"/>
<xsd:element name="ResponseUpselling" type="UpsellingRechtsschutzResponse_Type" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Response für das Upselling, wenn solche Ergebnisse angefordert wurden.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Berechnungsantwort" type="SpezBerechnungRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
@@ -177,7 +165,7 @@
<xsd:complexContent>
<xsd:extension base="ac:CreateOfferResponse_Type">
<xsd:sequence>
<xsd:element name="Offertantwort" type="SpezOffertRechtsschutz_Type" minOccurs="0"/>
<xsd:element name="Offertantwort" type="SpezOffertRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
@@ -201,7 +189,7 @@
<xsd:complexContent>
<xsd:extension base="ac:CreateApplicationResponse_Type">
<xsd:sequence>
<xsd:element name="Antragsantwort" type="SpezAntragRechtsschutz_Type" minOccurs="0"/>
<xsd:element name="Antragsantwort" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
@@ -213,7 +201,7 @@
<xsd:complexContent>
<xsd:extension base="ac:SubmitApplicationRequest_Type">
<xsd:sequence>
<xsd:element name="Antragsanfrage" type="SpezAntragRechtsschutz_Type" minOccurs="0"/>
<xsd:element name="Antragsanfrage" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
@@ -225,49 +213,17 @@
<xsd:complexContent>
<xsd:extension base="ac:SubmitApplicationResponse_Type">
<xsd:sequence>
<xsd:element name="Antragsantwort" type="SpezAntragRechtsschutz_Type" minOccurs="0"/>
<xsd:element name="Antragsantwort" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="CalculateRechtsschutzRequest" type="CalculateRechtsschutzRequest_Type">
<xsd:annotation>
<xsd:documentation>Requestobjekt für eine Berechnung Rechtsschutz</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CalculateRechtsschutzResponse" type="CalculateRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Responseobjekt für eine Berechnung Rechtsschutz</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateOfferRechtsschutzRequest" type="CreateOfferRechtsschutzRequest_Type">
<xsd:annotation>
<xsd:documentation>Requestobjekt für eine Erstellung eines Rechtsschutz-Offerts</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateOfferRechtsschutzResponse" type="CreateOfferRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Responseobjekt für eine Erstellung eines Rechtsschutz-Offerts</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateApplicationRechtsschutzRequest" type="CreateApplicationRechtsschutzRequest_Type">
<xsd:annotation>
<xsd:documentation>Requestobjekt für eine Erstellung eines Rechtsschutz-Antrags</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CreateApplicationRechtsschutzResponse" type="CreateApplicationRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Responseobjekt für eine Erstellung eines Rechtsschutz-Antrags</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SubmitApplicationRechtsschutzRequest" type="SubmitApplicationRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Requestobjekt für die Antragsübermittlung Rechtsschutz</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SubmitApplicationRechtsschutzResponse" type="SubmitApplicationRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Responseobjekt für die Antragsübermittlung Rechtsschutz</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="CalculateRechtsschutzRequest" type="CalculateRechtsschutzRequest_Type"/>
<xsd:element name="CalculateRechtsschutzResponse" type="CalculateRechtsschutzResponse_Type"/>
<xsd:element name="CreateOfferRechtsschutzRequest" type="CreateOfferRechtsschutzRequest_Type"/>
<xsd:element name="CreateOfferRechtsschutzResponse" type="CreateOfferRechtsschutzResponse_Type"/>
<xsd:element name="CreateApplicationRechtsschutzRequest" type="CreateApplicationRechtsschutzRequest_Type"/>
<xsd:element name="CreateApplicationRechtsschutzResponse" type="CreateApplicationRechtsschutzResponse_Type"/>
<xsd:element name="SubmitApplicationRechtsschutzRequest" type="SubmitApplicationRechtsschutzResponse_Type"/>
<xsd:element name="SubmitApplicationRechtsschutzResponse" type="SubmitApplicationRechtsschutzResponse_Type"/>
</xsd:schema>

View File

@@ -56,7 +56,7 @@
<xsd:documentation>ständig bewohnt, nicht-ständig bewohnt, unbewohnt</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ZusaetzlicheHaushaltsDaten" type="ZusaetzlicheHaushaltsdaten_Type" minOccurs="0" maxOccurs="unbounded">
<xsd:element name="ZusaetzlicheHaushaltDaten" type="ZusaetzlicheGebaeudedaten_Type" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Erweiterungsmöglichkeit für weitere benötigte Daten, die nicht im Standard enthalten sind.</xsd:documentation>
</xsd:annotation>
@@ -230,7 +230,7 @@
<xsd:complexContent>
<xsd:extension base="cst:ProduktGenerisch_Type">
<xsd:sequence>
<xsd:element name="VersInteresseRefLfnr" type="xsd:unsignedShort">
<xsd:element name="VersInteresseRefLfnr" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Referenzen auf versicherte Interessen</xsd:documentation>
</xsd:annotation>
@@ -498,14 +498,7 @@
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="UpsellingSachPrivatResponse_Type">
<xsd:annotation>
<xsd:documentation>Type Response Upselling: Enthält eines oder mehrere Verkaufsprodukte Sach-Privat</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="UpsellingVerkaufsprodukte" type="VerkaufsproduktSachPrivat_Type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="UpsellingSachPrivatResponse_Type"/>
<xsd:complexType name="CalculateSachPrivatRequest_Type" final="#all">
<xsd:annotation>
<xsd:documentation>Typ des Requestobjekts für eine Berechnung Sach-Privat</xsd:documentation>
@@ -525,7 +518,7 @@
<xsd:complexContent>
<xsd:extension base="ac:CalculateResponse_Type">
<xsd:sequence>
<xsd:element name="Berechnungsantwort" type="BerechnungSachPrivat_Type" minOccurs="0"/>
<xsd:element name="Berechnungsantwort" type="BerechnungSachPrivat_Type"/>
<xsd:element name="ResponseUpselling" type="UpsellingSachPrivatResponse_Type" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Response für das Upselling, wenn solche Ergebnisse angefordert wurden.</xsd:documentation>
@@ -554,7 +547,7 @@
<xsd:complexContent>
<xsd:extension base="ac:CreateOfferResponse_Type">
<xsd:sequence>
<xsd:element name="Offertantwort" type="OffertSachPrivat_Type" minOccurs="0"/>
<xsd:element name="Offertantwort" type="OffertSachPrivat_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
@@ -578,7 +571,7 @@
<xsd:complexContent>
<xsd:extension base="ac:CreateApplicationResponse_Type">
<xsd:sequence>
<xsd:element name="Antragsantwort" type="AntragSachPrivat_Type" minOccurs="0"/>
<xsd:element name="Antragsantwort" type="AntragSachPrivat_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
@@ -602,7 +595,7 @@
<xsd:complexContent>
<xsd:extension base="ac:SubmitApplicationResponse_Type">
<xsd:sequence>
<xsd:element name="Antragsantwort" type="AntragSachPrivat_Type" minOccurs="0"/>
<xsd:element name="Antragsantwort" type="AntragSachPrivat_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>

View File

@@ -74,6 +74,12 @@
<xsd:documentation>Code für eine Leistungsart der Unfallversicherung</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Attribute" type="cst:GenAttribut_Type" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Optional ein oder mehrere generische Attribute</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="AttributMetadaten" type="cst:AttributMetadaten_Type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>

View File

@@ -0,0 +1,153 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="http://omds.vvo.at/types/omds3types/v1_4_0/basis/ausk" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="http://omds.vvo.at/types/omds3types/v1_4_0/basis/ausk" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.4.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds211-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:element name="StrukturResponse"/>
<xsd:complexType name="StrukturResponse_Type">
<xsd:sequence>
<xsd:element name="Verkaufsprodukt" maxOccurs="unbounded">
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="Verkaufsproduktbaustein_Type"/>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Baustein_Type" abstract="true">
<xsd:annotation>
<xsd:documentation>Abstraktes Element für Ebene 2 und 3</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="cst:ProduktbausteinAuskunft_Type">
<xsd:sequence>
<xsd:element name="Defaultelement" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation>Wahr, wenn das Element standardmäßig vorhanden sein soll</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Optional" type="xsd:boolean">
<xsd:annotation>
<xsd:documentation>Wahr, wenn das Element optional eingeschlossen werden kann. Falsch, wenn das Element verpflichtend ist</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SetztVoraus" type="BausteinReferenz_Type" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Bausteine, die der Einschluss dieses Bausteins voraussetzt</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="NichtKombinierbarMit" type="BausteinReferenz_Type" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Bausteine, mit denen dieser Baustein nicht kombiniert werden kann.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="Verkaufsproduktbaustein_Type">
<xsd:annotation>
<xsd:documentation>Element Ebene 1 Verkaufsprodukt</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="cst:ProduktbausteinAuskunft_Type">
<xsd:sequence>
<xsd:element name="Produkt" maxOccurs="unbounded">
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="Produktbaustein_Type">
<xsd:sequence>
<xsd:element name="Elementarprodukt" type="Elementarproduktbaustein_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="Produktbaustein_Type">
<xsd:annotation>
<xsd:documentation>Element Ebene 2 Produkt</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="Baustein_Type"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="Elementarproduktbaustein_Type">
<xsd:annotation>
<xsd:documentation>Element Ebene 3 Elementarprodukt</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="Baustein_Type"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="BausteinReferenz_Type">
<xsd:sequence>
<xsd:element name="Id" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Baustein-Id</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Ebene">
<xsd:annotation>
<xsd:documentation>Die Ebene: Verkaufsprodukt, Produkt, Elementarprodukt</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="VerkaufsproduktStruktur_Type">
<xsd:complexContent>
<xsd:extension base="cst:ProduktbausteinAuskunft_Type">
<xsd:sequence>
<xsd:element name="Produkt" type="ProduktStruktur_Type" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ProduktStruktur_Type">
<xsd:complexContent>
<xsd:extension base="Produktbaustein_Type">
<xsd:sequence>
<xsd:element name="Elementarprodukt" type="ElementarproduktStruktur_Type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ElementarproduktStruktur_Type">
<xsd:complexContent>
<xsd:extension base="Produktbaustein_Type"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="Deckung_Test">
<xsd:complexContent>
<xsd:extension base="cst:Elementarprodukt_Type">
<xsd:sequence>
<xsd:element name="Versicherungssumme" type="ElementAttribut"/>
<xsd:element name="Selbstbehalt" type="ElementAttribut"/>
<xsd:element name="WeitereElemente" type="ElementAttribut" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ElementAttribut">
<xsd:sequence>
<xsd:element name="Id" minOccurs="0"/>
<xsd:element name="Name" minOccurs="0"/>
<xsd:element name="Obligatorisch" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Pflichtfeld ja / nein</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Value" type="xsd:string"/>
<xsd:element name="Default" type="xsd:string" minOccurs="0"/>
<xsd:element name="Values" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="Depends" type="xsd:string" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Pfade zu anderen Elementen, von denen dieses Element abhängt</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>