Code neu generiert, MTOM von Hand eingefügt

This commit is contained in:
2019-08-30 14:53:45 +02:00
parent 836ad262b9
commit 75505cb992
85 changed files with 3231 additions and 543 deletions

View File

@@ -16,6 +16,7 @@ import javax.jws.WebResult;
import javax.jws.WebService; import javax.jws.WebService;
import javax.jws.soap.SOAPBinding; import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.soap.MTOMFeature;
/** /**
* This class was generated by Apache CXF 3.2.0 * This class was generated by Apache CXF 3.2.0
@@ -46,7 +47,7 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
} }
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
OmdsServicePortType port = ss.getOmdsServicePort(); OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024));
{ {
System.out.println("Invoking lossEventRegistered..."); System.out.println("Invoking lossEventRegistered...");

View File

@@ -0,0 +1,163 @@
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="{http://www.w3.org/2001/XMLSchema}date" 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")
@XmlSchemaType(name = "date")
protected List<XMLGregorianCalendar> 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 XMLGregorianCalendar }
*
*
*/
public List<XMLGregorianCalendar> getValues() {
if (values == null) {
values = new ArrayList<XMLGregorianCalendar>();
}
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

@@ -0,0 +1,158 @@
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:omds20}decimal" 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<BigDecimal> 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 BigDecimal }
*
*
*/
public List<BigDecimal> getValues() {
if (values == null) {
values = new ArrayList<BigDecimal>();
}
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

@@ -0,0 +1,104 @@
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 Schlüssellisten
*
* <p>Java-Klasse für AttributMetadatenEnum_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="AttributMetadatenEnum_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}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributMetadatenEnum_Type", propOrder = {
"_default",
"values"
})
public class AttributMetadatenEnumType
extends AttributMetadatenType
{
@XmlElement(name = "Default")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar _default;
@XmlElement(name = "Values")
protected List<EintragSchluessellisteType> values;
/**
* 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 EintragSchluessellisteType }
*
*
*/
public List<EintragSchluessellisteType> getValues() {
if (values == null) {
values = new ArrayList<EintragSchluessellisteType>();
}
return this.values;
}
}

View File

@@ -0,0 +1,157 @@
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="{http://www.w3.org/2001/XMLSchema}int" 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", type = Integer.class)
protected List<Integer> 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 Integer }
*
*
*/
public List<Integer> getValues() {
if (values == null) {
values = new ArrayList<Integer>();
}
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

@@ -0,0 +1,188 @@
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="{http://www.w3.org/2001/XMLSchema}string" 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<String> 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 String }
*
*
*/
public List<String> getValues() {
if (values == null) {
values = new ArrayList<String>();
}
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

@@ -0,0 +1,148 @@
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;element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AttributMetadaten_Type", propOrder = {
"attribut",
"aenderbar",
"bezeichnung",
"beschreibungTxt"
})
@XmlSeeAlso({
AttributMetadatenStringType.class,
AttributMetadatenIntType.class,
AttributMetadatenDezimalType.class,
AttributMetadatenDatumType.class,
AttributMetadatenEnumType.class
})
public abstract class AttributMetadatenType {
@XmlElement(name = "Attribut", required = true)
protected Object attribut;
@XmlElement(name = "Aenderbar")
protected boolean aenderbar;
@XmlElement(name = "Bezeichnung")
protected String bezeichnung;
@XmlElement(name = "BeschreibungTxt")
protected String beschreibungTxt;
/**
* 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;
}
/**
* Ruft den Wert der bezeichnung-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBezeichnung() {
return bezeichnung;
}
/**
* Legt den Wert der bezeichnung-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBezeichnung(String value) {
this.bezeichnung = value;
}
/**
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBeschreibungTxt() {
return beschreibungTxt;
}
/**
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBeschreibungTxt(String value) {
this.beschreibungTxt = value;
}
}

View File

@@ -6,6 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.BOARequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestType;
@@ -41,7 +42,8 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationReq
CalculateRequestType.class, CalculateRequestType.class,
CreateOfferRequestType.class, CreateOfferRequestType.class,
CreateApplicationRequestType.class, CreateApplicationRequestType.class,
SubmitApplicationRequestType.class SubmitApplicationRequestType.class,
BOARequestType.class
}) })
public abstract class CommonProcessRequestType public abstract class CommonProcessRequestType
extends CommonRequestType extends CommonRequestType

View File

@@ -6,6 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.BOAResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseType;
@@ -41,7 +42,8 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
CalculateResponseType.class, CalculateResponseType.class,
CreateOfferResponseType.class, CreateOfferResponseType.class,
CreateApplicationResponseType.class, CreateApplicationResponseType.class,
SubmitApplicationResponseType.class SubmitApplicationResponseType.class,
BOAResponseType.class
}) })
public abstract class CommonProcessResponseType public abstract class CommonProcessResponseType
extends CommonResponseType extends CommonResponseType

View File

@@ -0,0 +1,92 @@
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;
/**
* Typ für einen einzelnen Eintrag einer Schlüsselliste
*
* <p>Java-Klasse für EintragSchluesselliste_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="EintragSchluesselliste_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="Schluessel" 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 = "EintragSchluesselliste_Type", propOrder = {
"text",
"schluessel"
})
public class EintragSchluessellisteType {
@XmlElement(name = "Text", required = true)
protected String text;
@XmlElement(name = "Schluessel", required = true)
protected String schluessel;
/**
* 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 schluessel-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchluessel() {
return schluessel;
}
/**
* Legt den Wert der schluessel-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchluessel(String value) {
this.schluessel = value;
}
}

View File

@@ -0,0 +1,82 @@
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,9 +10,6 @@ import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ElementarproduktKfzType; 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.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;
/** /**
@@ -42,10 +39,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.ElementarproduktUnfa
}) })
@XmlSeeAlso({ @XmlSeeAlso({
ElementarproduktKfzType.class, ElementarproduktKfzType.class,
VerkehrsrechtsschutzKfzType.class, VerkehrsrechtsschutzKfzType.class
ElementarproduktRechtsschutzType.class,
ElementarproduktSachPrivatType.class,
ElementarproduktUnfallType.class
}) })
public abstract class ElementarproduktType public abstract class ElementarproduktType
extends ProduktbausteinAntragsprozessType extends ProduktbausteinAntragsprozessType

View File

@@ -398,6 +398,54 @@ public class ObjectFactory {
return new SchadenObjektSpezifikationType(); 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 AttributMetadatenDatumType }
*
*/
public AttributMetadatenDatumType createAttributMetadatenDatumType() {
return new AttributMetadatenDatumType();
}
/**
* Create an instance of {@link AttributMetadatenEnumType }
*
*/
public AttributMetadatenEnumType createAttributMetadatenEnumType() {
return new AttributMetadatenEnumType();
}
/**
* Create an instance of {@link EintragSchluessellisteType }
*
*/
public EintragSchluessellisteType createEintragSchluessellisteType() {
return new EintragSchluessellisteType();
}
/** /**
* Create an instance of {@link ZahlwegType.Kundenkonto } * Create an instance of {@link ZahlwegType.Kundenkonto }
* *

View File

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

View File

@@ -0,0 +1,155 @@
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;
/**
* 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;element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="BeschreibungTxt" 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 = "ProduktbausteinAntragsprozessGenerisch_Type", propOrder = {
"eingeschlossen",
"einschlussAenderbar",
"attributMetadaten",
"beschreibungTxt"
})
@XmlSeeAlso({
VerkaufsproduktGenerischType.class,
ProduktGenerischType.class,
ElementarproduktGenerischType.class
})
public abstract class ProduktbausteinAntragsprozessGenerischType
extends ProduktbausteinAntragsprozessType
{
@XmlElement(name = "Eingeschlossen")
protected boolean eingeschlossen;
@XmlElement(name = "EinschlussAenderbar")
protected Boolean einschlussAenderbar;
@XmlElement(name = "AttributMetadaten")
protected List<AttributMetadatenType> attributMetadaten;
@XmlElement(name = "BeschreibungTxt")
protected String beschreibungTxt;
/**
* 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;
}
/**
* 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;
}
/**
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBeschreibungTxt() {
return beschreibungTxt;
}
/**
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBeschreibungTxt(String value) {
this.beschreibungTxt = 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="VtgBeg" type="{urn:omds20}Datum-Zeit"/&gt;
* &lt;element name="VtgEnde" type="{urn:omds20}Datum-Zeit" minOccurs="0"/&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="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="JahrespraemieNto" type="{urn:omds20}decimal"/&gt; * &lt;element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -47,7 +47,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
@XmlSeeAlso({ @XmlSeeAlso({
VerkaufsproduktType.class, VerkaufsproduktType.class,
ProduktType.class, ProduktType.class,
ElementarproduktType.class ElementarproduktType.class,
ProduktbausteinAntragsprozessGenerischType.class
}) })
public abstract class ProduktbausteinAntragsprozessType public abstract class ProduktbausteinAntragsprozessType
extends ProduktbausteinType extends ProduktbausteinType
@@ -61,7 +62,7 @@ public abstract class ProduktbausteinAntragsprozessType
protected XMLGregorianCalendar vtgEnde; protected XMLGregorianCalendar vtgEnde;
@XmlElement(name = "Praemie") @XmlElement(name = "Praemie")
protected List<PraemieType> praemie; protected List<PraemieType> praemie;
@XmlElement(name = "JahrespraemieNto", required = true) @XmlElement(name = "JahrespraemieNto")
protected BigDecimal jahrespraemieNto; protected BigDecimal jahrespraemieNto;
/** /**

View File

@@ -0,0 +1,169 @@
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 at.vvo.omds.types.omds2Types.v2_11.ELRahmenvereinbarungType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.VerkaufsproduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.VerkaufsproduktUnfallType;
/**
* Basistyp für ein Produktbündel
*
* <p>Java-Klasse für VerkaufsproduktGenerisch_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="VerkaufsproduktGenerisch_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozessGenerisch_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/&gt;
* &lt;element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/&gt;
* &lt;element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VerkaufsproduktGenerisch_Type", propOrder = {
"verkaufsproduktgeneration",
"berechnungsvariante",
"elRahmenvereinbarung",
"zusaetzlicheVerkaufproduktdaten"
})
@XmlSeeAlso({
VerkaufsproduktRechtsschutzType.class,
VerkaufsproduktSachPrivatType.class,
VerkaufsproduktUnfallType.class
})
public abstract class VerkaufsproduktGenerischType
extends ProduktbausteinAntragsprozessGenerischType
{
@XmlElement(name = "Verkaufsproduktgeneration")
protected String verkaufsproduktgeneration;
@XmlElement(name = "Berechnungsvariante")
@XmlSchemaType(name = "string")
protected BerechnungsvarianteType berechnungsvariante;
@XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20")
protected ELRahmenvereinbarungType elRahmenvereinbarung;
@XmlElement(name = "ZusaetzlicheVerkaufproduktdaten")
protected List<ZusaetzlicheVerkaufproduktdatenType> zusaetzlicheVerkaufproduktdaten;
/**
* Ruft den Wert der verkaufsproduktgeneration-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerkaufsproduktgeneration() {
return verkaufsproduktgeneration;
}
/**
* Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerkaufsproduktgeneration(String value) {
this.verkaufsproduktgeneration = value;
}
/**
* Ruft den Wert der berechnungsvariante-Eigenschaft ab.
*
* @return
* possible object is
* {@link BerechnungsvarianteType }
*
*/
public BerechnungsvarianteType getBerechnungsvariante() {
return berechnungsvariante;
}
/**
* Legt den Wert der berechnungsvariante-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BerechnungsvarianteType }
*
*/
public void setBerechnungsvariante(BerechnungsvarianteType value) {
this.berechnungsvariante = value;
}
/**
* Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab.
*
* @return
* possible object is
* {@link ELRahmenvereinbarungType }
*
*/
public ELRahmenvereinbarungType getELRahmenvereinbarung() {
return elRahmenvereinbarung;
}
/**
* Legt den Wert der elRahmenvereinbarung-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ELRahmenvereinbarungType }
*
*/
public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) {
this.elRahmenvereinbarung = value;
}
/**
* Gets the value of the zusaetzlicheVerkaufproduktdaten 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 zusaetzlicheVerkaufproduktdaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusaetzlicheVerkaufproduktdaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ZusaetzlicheVerkaufproduktdatenType }
*
*
*/
public List<ZusaetzlicheVerkaufproduktdatenType> getZusaetzlicheVerkaufproduktdaten() {
if (zusaetzlicheVerkaufproduktdaten == null) {
zusaetzlicheVerkaufproduktdaten = new ArrayList<ZusaetzlicheVerkaufproduktdatenType>();
}
return this.zusaetzlicheVerkaufproduktdaten;
}
}

View File

@@ -11,9 +11,6 @@ import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds2Types.v2_11.ELRahmenvereinbarungType; import at.vvo.omds.types.omds2Types.v2_11.ELRahmenvereinbarungType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VerkaufsproduktKfzType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VerkaufsproduktKfzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.VerkaufsproduktRechtsschutzType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.VerkaufsproduktUnfallType;
/** /**
@@ -48,10 +45,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.VerkaufsproduktUnfal
"zusaetzlicheVerkaufproduktdaten" "zusaetzlicheVerkaufproduktdaten"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
VerkaufsproduktKfzType.class, VerkaufsproduktKfzType.class
VerkaufsproduktRechtsschutzType.class,
VerkaufsproduktSachPrivatType.class,
VerkaufsproduktUnfallType.class
}) })
public abstract class VerkaufsproduktType public abstract class VerkaufsproduktType
extends ProduktbausteinAntragsprozessType extends ProduktbausteinAntragsprozessType

View File

@@ -19,7 +19,7 @@ import at.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
* <pre> * <pre>
* &lt;complexType name="VersicherteLiegenschaft_Type"&gt; * &lt;complexType name="VersicherteLiegenschaft_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/&gt; * &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/&gt;
* &lt;element name="Adresse" type="{urn:omds20}ADRESSE_Type"/&gt; * &lt;element name="Adresse" type="{urn:omds20}ADRESSE_Type"/&gt;
@@ -41,7 +41,7 @@ import at.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
"ueberdachteFlaecheInQm" "ueberdachteFlaecheInQm"
}) })
public class VersicherteLiegenschaftType public class VersicherteLiegenschaftType
extends VersichertesInteresseType extends VersichertesInteresseMitAttributMetadatenType
{ {
@XmlElement(name = "ObjektId", required = true) @XmlElement(name = "ObjektId", required = true)

View File

@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlType;
* <pre> * <pre>
* &lt;complexType name="VersicherteVeranstaltung_Type"&gt; * &lt;complexType name="VersicherteVeranstaltung_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VersicherteVeranstaltung_Type") @XmlType(name = "VersicherteVeranstaltung_Type")
public class VersicherteVeranstaltungType public class VersicherteVeranstaltungType
extends VersichertesInteresseType extends VersichertesInteresseMitAttributMetadatenType
{ {

View File

@@ -22,7 +22,7 @@ import at.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
* <pre> * <pre>
* &lt;complexType name="VersicherterBetrieb_Type"&gt; * &lt;complexType name="VersicherterBetrieb_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/&gt; * &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/&gt;
* &lt;element name="Adresse" type="{urn:omds20}ADRESSE_Type"/&gt; * &lt;element name="Adresse" type="{urn:omds20}ADRESSE_Type"/&gt;
@@ -52,7 +52,7 @@ import at.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
"zusaetzlicheBetriebsdaten" "zusaetzlicheBetriebsdaten"
}) })
public class VersicherterBetriebType public class VersicherterBetriebType
extends VersichertesInteresseType extends VersichertesInteresseMitAttributMetadatenType
{ {
@XmlElement(name = "ObjektId") @XmlElement(name = "ObjektId")

View File

@@ -0,0 +1,99 @@
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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Abstrakter Obertyp für versicherte Interessen, unterstützt Attribut-Metadaten
*
* <p>Java-Klasse für VersichertesInteresseMitAttributMetadaten_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="VersichertesInteresseMitAttributMetadaten_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" /&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VersichertesInteresseMitAttributMetadaten_Type", propOrder = {
"attributMetadaten"
})
@XmlSeeAlso({
VersicherteVeranstaltungType.class,
VersicherterBetriebType.class,
VersicherteLiegenschaftType.class
})
public abstract class VersichertesInteresseMitAttributMetadatenType {
@XmlElement(name = "AttributMetadaten")
protected List<AttributMetadatenType> attributMetadaten;
@XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
@XmlSchemaType(name = "unsignedShort")
protected int lfnr;
/**
* 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;
}
/**
* Ruft den Wert der lfnr-Eigenschaft ab.
*
*/
public int getLfnr() {
return lfnr;
}
/**
* Legt den Wert der lfnr-Eigenschaft fest.
*
*/
public void setLfnr(int value) {
this.lfnr = value;
}
}

View File

@@ -35,10 +35,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.VersichertesObje
@XmlType(name = "VersichertesInteresse_Type") @XmlType(name = "VersichertesInteresse_Type")
@XmlSeeAlso({ @XmlSeeAlso({
VersichertePersonType.class, VersichertePersonType.class,
VersicherteVeranstaltungType.class,
FahrzeugType.class, FahrzeugType.class,
VersicherterBetriebType.class,
VersicherteLiegenschaftType.class,
VersichertesObjektSachPrivatType.class, VersichertesObjektSachPrivatType.class,
RisikoHaushaltType.class, RisikoHaushaltType.class,
RisikoGebaeudeType.class RisikoGebaeudeType.class

View File

@@ -0,0 +1,66 @@
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType;
/**
* Abstrakter Request für BOA mit generischen Produktbausteinen
*
* <p>Java-Klasse für BOA_Request_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="BOA_Request_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BOA_Request_Type", propOrder = {
"produktmetadaten"
})
@XmlSeeAlso({
CalculateRequestGenType.class,
CreateOfferRequestGenType.class,
CreateApplicationRequestGenType.class,
SubmitApplicationRequestGenType.class
})
public abstract class BOARequestType
extends CommonProcessRequestType
{
@XmlElement(name = "Produktmetadaten")
protected boolean produktmetadaten;
/**
* Ruft den Wert der produktmetadaten-Eigenschaft ab.
*
*/
public boolean isProduktmetadaten() {
return produktmetadaten;
}
/**
* Legt den Wert der produktmetadaten-Eigenschaft fest.
*
*/
public void setProduktmetadaten(boolean value) {
this.produktmetadaten = value;
}
}

View File

@@ -0,0 +1,42 @@
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType;
/**
* Abstrakter Request für BOA
*
* <p>Java-Klasse für BOA_Response_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="BOA_Response_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BOA_Response_Type")
@XmlSeeAlso({
CalculateResponseGenType.class,
CreateOfferResponseGenType.class,
CreateApplicationResponseGenType.class,
SubmitApplicationResponseGenType.class
})
public abstract class BOAResponseType
extends CommonProcessResponseType
{
}

View File

@@ -0,0 +1,67 @@
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CalculateRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CalculateUnfallRequestType;
/**
* Abstrakter Request für die Berechnung mit generischen Produktbausteinen
*
* <p>Java-Klasse für CalculateRequestGen_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CalculateRequestGen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Request_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateRequestGen_Type", propOrder = {
"requestUpselling"
})
@XmlSeeAlso({
CalculateRechtsschutzRequestType.class,
CalculateSachPrivatRequestType.class,
CalculateUnfallRequestType.class
})
public abstract class CalculateRequestGenType
extends BOARequestType
{
@XmlElement(name = "RequestUpselling", defaultValue = "false")
protected boolean requestUpselling;
/**
* Ruft den Wert der requestUpselling-Eigenschaft ab.
*
*/
public boolean isRequestUpselling() {
return requestUpselling;
}
/**
* Legt den Wert der requestUpselling-Eigenschaft fest.
*
*/
public void setRequestUpselling(boolean value) {
this.requestUpselling = value;
}
}

View File

@@ -8,9 +8,6 @@ import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CalculateRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CalculateUnfallRequestType;
/** /**
@@ -39,10 +36,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CalculateUnfallReque
"requestUpselling" "requestUpselling"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
CalculateKfzRequestType.class, CalculateKfzRequestType.class
CalculateRechtsschutzRequestType.class,
CalculateSachPrivatRequestType.class,
CalculateUnfallRequestType.class
}) })
public abstract class CalculateRequestType public abstract class CalculateRequestType
extends CommonProcessRequestType extends CommonProcessRequestType

View File

@@ -0,0 +1,43 @@
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CalculateRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CalculateUnfallResponseType;
/**
* Abstrakter Response Berechnung
*
* <p>Java-Klasse für CalculateResponseGen_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CalculateResponseGen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Response_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateResponseGen_Type")
@XmlSeeAlso({
CalculateRechtsschutzResponseType.class,
CalculateSachPrivatResponseType.class,
CalculateUnfallResponseType.class
})
public abstract class CalculateResponseGenType
extends BOAResponseType
{
}

View File

@@ -7,9 +7,6 @@ import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CalculateRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CalculateUnfallResponseType;
/** /**
@@ -33,10 +30,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CalculateUnfallRespo
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateResponse_Type") @XmlType(name = "CalculateResponse_Type")
@XmlSeeAlso({ @XmlSeeAlso({
CalculateKfzResponseType.class, CalculateKfzResponseType.class
CalculateRechtsschutzResponseType.class,
CalculateSachPrivatResponseType.class,
CalculateUnfallResponseType.class
}) })
public abstract class CalculateResponseType public abstract class CalculateResponseType
extends CommonProcessResponseType extends CommonProcessResponseType

View File

@@ -0,0 +1,83 @@
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.DateianhangType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateApplicationUnfallRequestType;
/**
* Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen
*
* <p>Java-Klasse für CreateApplicationRequestGen_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateApplicationRequestGen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Request_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationRequestGen_Type", propOrder = {
"dateianhaenge"
})
@XmlSeeAlso({
CreateApplicationRechtsschutzRequestType.class,
CreateApplicationSachPrivatRequestType.class,
CreateApplicationUnfallRequestType.class
})
public abstract class CreateApplicationRequestGenType
extends BOARequestType
{
@XmlElement(name = "Dateianhaenge")
protected List<DateianhangType> dateianhaenge;
/**
* 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;
}
}

View File

@@ -11,9 +11,6 @@ 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.CommonProcessRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.DateianhangType; import at.vvo.omds.types.omds3Types.r1_4_0.common.DateianhangType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateApplicationUnfallRequestType;
/** /**
@@ -42,10 +39,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateApplicationUnf
"dateianhaenge" "dateianhaenge"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
CreateApplicationKfzRequestType.class, CreateApplicationKfzRequestType.class
CreateApplicationRechtsschutzRequestType.class,
CreateApplicationSachPrivatRequestType.class,
CreateApplicationUnfallRequestType.class
}) })
public abstract class CreateApplicationRequestType public abstract class CreateApplicationRequestType
extends CommonProcessRequestType extends CommonProcessRequestType

View File

@@ -0,0 +1,140 @@
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.DokumentInfoType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateApplicationUnfallResponseType;
/**
* Abstrakter Response der Antragserzeugung
*
* <p>Java-Klasse für CreateApplicationResponseGen_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateApplicationResponseGen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Response_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/&gt;
* &lt;element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/&gt;
* &lt;element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationResponseGen_Type", propOrder = {
"antragstatus",
"antragsnummer",
"dokumente"
})
@XmlSeeAlso({
CreateApplicationRechtsschutzResponseType.class,
CreateApplicationSachPrivatResponseType.class,
CreateApplicationUnfallResponseType.class
})
public abstract class CreateApplicationResponseGenType
extends BOAResponseType
{
@XmlElement(name = "Antragstatus")
protected Integer antragstatus;
@XmlElement(name = "Antragsnummer")
protected ObjektIdType antragsnummer;
@XmlElement(name = "Dokumente")
protected List<DokumentInfoType> dokumente;
/**
* Ruft den Wert der antragstatus-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getAntragstatus() {
return antragstatus;
}
/**
* Legt den Wert der antragstatus-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setAntragstatus(Integer value) {
this.antragstatus = value;
}
/**
* Ruft den Wert der antragsnummer-Eigenschaft ab.
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getAntragsnummer() {
return antragsnummer;
}
/**
* Legt den Wert der antragsnummer-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setAntragsnummer(ObjektIdType value) {
this.antragsnummer = value;
}
/**
* Gets the value of the dokumente 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 dokumente property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getDokumente().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link DokumentInfoType }
*
*
*/
public List<DokumentInfoType> getDokumente() {
if (dokumente == null) {
dokumente = new ArrayList<DokumentInfoType>();
}
return this.dokumente;
}
}

View File

@@ -12,9 +12,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType; import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType; import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateApplicationUnfallResponseType;
/** /**
@@ -47,10 +44,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateApplicationUnf
"dokumente" "dokumente"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
CreateApplicationKfzResponseType.class, CreateApplicationKfzResponseType.class
CreateApplicationRechtsschutzResponseType.class,
CreateApplicationSachPrivatResponseType.class,
CreateApplicationUnfallResponseType.class
}) })
public abstract class CreateApplicationResponseType public abstract class CreateApplicationResponseType
extends CommonProcessResponseType extends CommonProcessResponseType

View File

@@ -0,0 +1,43 @@
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateOfferRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateOfferUnfallRequestType;
/**
* Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen
*
* <p>Java-Klasse für CreateOfferRequestGen_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateOfferRequestGen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Request_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferRequestGen_Type")
@XmlSeeAlso({
CreateOfferRechtsschutzRequestType.class,
CreateOfferSachPrivatRequestType.class,
CreateOfferUnfallRequestType.class
})
public abstract class CreateOfferRequestGenType
extends BOARequestType
{
}

View File

@@ -7,9 +7,6 @@ import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateOfferRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateOfferUnfallRequestType;
/** /**
@@ -33,10 +30,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateOfferUnfallReq
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferRequest_Type") @XmlType(name = "CreateOfferRequest_Type")
@XmlSeeAlso({ @XmlSeeAlso({
CreateOfferKfzRequestType.class, CreateOfferKfzRequestType.class
CreateOfferRechtsschutzRequestType.class,
CreateOfferSachPrivatRequestType.class,
CreateOfferUnfallRequestType.class
}) })
public abstract class CreateOfferRequestType public abstract class CreateOfferRequestType
extends CommonProcessRequestType extends CommonProcessRequestType

View File

@@ -0,0 +1,83 @@
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.DokumentInfoType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateOfferRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateOfferUnfallResponseType;
/**
* Abstrakter Response der Offerterstellung
*
* <p>Java-Klasse für CreateOfferResponseGen_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="CreateOfferResponseGen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Response_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferResponseGen_Type", propOrder = {
"dokumente"
})
@XmlSeeAlso({
CreateOfferRechtsschutzResponseType.class,
CreateOfferSachPrivatResponseType.class,
CreateOfferUnfallResponseType.class
})
public abstract class CreateOfferResponseGenType
extends BOAResponseType
{
@XmlElement(name = "Dokumente")
protected List<DokumentInfoType> dokumente;
/**
* Gets the value of the dokumente 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 dokumente property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getDokumente().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link DokumentInfoType }
*
*
*/
public List<DokumentInfoType> getDokumente() {
if (dokumente == null) {
dokumente = new ArrayList<DokumentInfoType>();
}
return this.dokumente;
}
}

View File

@@ -11,9 +11,6 @@ import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType; import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateOfferRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateOfferUnfallResponseType;
/** /**
@@ -42,10 +39,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateOfferUnfallRes
"dokumente" "dokumente"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
CreateOfferKfzResponseType.class, CreateOfferKfzResponseType.class
CreateOfferRechtsschutzResponseType.class,
CreateOfferSachPrivatResponseType.class,
CreateOfferUnfallResponseType.class
}) })
public abstract class CreateOfferResponseType public abstract class CreateOfferResponseType
extends CommonProcessResponseType extends CommonProcessResponseType

View File

@@ -0,0 +1,112 @@
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.DateianhangType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.SubmitApplicationRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnfallRequestType;
/**
* Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen
*
* <p>Java-Klasse für SubmitApplicationRequestGen_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SubmitApplicationRequestGen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Request_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;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationRequestGen_Type", propOrder = {
"dateianhaenge",
"antragsnummer"
})
@XmlSeeAlso({
SubmitApplicationRechtsschutzRequestType.class,
SubmitApplicationSachPrivatRequestType.class,
SubmitApplicationUnfallRequestType.class
})
public abstract class SubmitApplicationRequestGenType
extends BOARequestType
{
@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.
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getAntragsnummer() {
return antragsnummer;
}
/**
* Legt den Wert der antragsnummer-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setAntragsnummer(ObjektIdType value) {
this.antragsnummer = value;
}
}

View File

@@ -1,17 +1,17 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common; 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.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType; 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.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.SubmitApplicationRechtsschutzRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnfallRequestType;
/** /**
@@ -26,6 +26,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnf
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type"&gt;
* &lt;sequence&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;element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
@@ -37,21 +38,50 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnf
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { @XmlType(name = "SubmitApplicationRequest_Type", propOrder = {
"dateianhaenge",
"antragsnummer" "antragsnummer"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
SubmitApplicationKfzRequestType.class, SubmitApplicationKfzRequestType.class
SubmitApplicationRechtsschutzRequestType.class,
SubmitApplicationSachPrivatRequestType.class,
SubmitApplicationUnfallRequestType.class
}) })
public abstract class SubmitApplicationRequestType public abstract class SubmitApplicationRequestType
extends CommonProcessRequestType extends CommonProcessRequestType
{ {
@XmlElement(name = "Dateianhaenge")
protected List<DateianhangType> dateianhaenge;
@XmlElement(name = "Antragsnummer") @XmlElement(name = "Antragsnummer")
protected ObjektIdType 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. * Ruft den Wert der antragsnummer-Eigenschaft ab.
* *

View File

@@ -0,0 +1,132 @@
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.DokumentInfoType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnfallResponseType;
/**
* Abstrakter Response der Antragsüberleitung
*
* <p>Java-Klasse für SubmitApplicationResponseGen_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SubmitApplicationResponseGen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Response_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/&gt;
* &lt;element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/&gt;
* &lt;element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationResponseGen_Type", propOrder = {
"antragstatus",
"antragsnummer",
"dokumente"
})
@XmlSeeAlso({
SubmitApplicationRechtsschutzResponseType.class,
SubmitApplicationSachPrivatResponseType.class,
SubmitApplicationUnfallResponseType.class
})
public abstract class SubmitApplicationResponseGenType
extends BOAResponseType
{
@XmlElement(name = "Antragstatus")
protected int antragstatus;
@XmlElement(name = "Antragsnummer", required = true)
protected ObjektIdType antragsnummer;
@XmlElement(name = "Dokumente")
protected List<DokumentInfoType> dokumente;
/**
* Ruft den Wert der antragstatus-Eigenschaft ab.
*
*/
public int getAntragstatus() {
return antragstatus;
}
/**
* Legt den Wert der antragstatus-Eigenschaft fest.
*
*/
public void setAntragstatus(int value) {
this.antragstatus = value;
}
/**
* Ruft den Wert der antragsnummer-Eigenschaft ab.
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getAntragsnummer() {
return antragsnummer;
}
/**
* Legt den Wert der antragsnummer-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setAntragsnummer(ObjektIdType value) {
this.antragsnummer = value;
}
/**
* Gets the value of the dokumente 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 dokumente property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getDokumente().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link DokumentInfoType }
*
*
*/
public List<DokumentInfoType> getDokumente() {
if (dokumente == null) {
dokumente = new ArrayList<DokumentInfoType>();
}
return this.dokumente;
}
}

View File

@@ -12,9 +12,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType; import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType; import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SubmitApplicationKfzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnfallResponseType;
/** /**
@@ -47,10 +44,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnf
"dokumente" "dokumente"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
SubmitApplicationKfzResponseType.class, SubmitApplicationKfzResponseType.class
SubmitApplicationRechtsschutzResponseType.class,
SubmitApplicationSachPrivatResponseType.class,
SubmitApplicationUnfallResponseType.class
}) })
public abstract class SubmitApplicationResponseType public abstract class SubmitApplicationResponseType
extends CommonProcessResponseType extends CommonProcessResponseType

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType
* <pre> * <pre>
* &lt;complexType name="CalculateRechtsschutzRequest_Type"&gt; * &lt;complexType name="CalculateRechtsschutzRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/&gt; * &lt;element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType
"berechnungsanfrage" "berechnungsanfrage"
}) })
public class CalculateRechtsschutzRequestType public class CalculateRechtsschutzRequestType
extends CalculateRequestType extends CalculateRequestGenType
{ {
@XmlElement(name = "Berechnungsanfrage", required = true) @XmlElement(name = "Berechnungsanfrage", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseTyp
* <pre> * <pre>
* &lt;complexType name="CalculateRechtsschutzResponse_Type"&gt; * &lt;complexType name="CalculateRechtsschutzResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/&gt; * &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseTyp
"berechnungsantwort" "berechnungsantwort"
}) })
public class CalculateRechtsschutzResponseType public class CalculateRechtsschutzResponseType
extends CalculateResponseType extends CalculateResponseGenType
{ {
@XmlElement(name = "Berechnungsantwort", required = true) @XmlElement(name = "Berechnungsantwort", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationReq
* <pre> * <pre>
* &lt;complexType name="CreateApplicationRechtsschutzRequest_Type"&gt; * &lt;complexType name="CreateApplicationRechtsschutzRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt; * &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationReq
"antragsanfrage" "antragsanfrage"
}) })
public class CreateApplicationRechtsschutzRequestType public class CreateApplicationRechtsschutzRequestType
extends CreateApplicationRequestType extends CreateApplicationRequestGenType
{ {
@XmlElement(name = "Antragsanfrage", required = true) @XmlElement(name = "Antragsanfrage", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRes
* <pre> * <pre>
* &lt;complexType name="CreateApplicationRechtsschutzResponse_Type"&gt; * &lt;complexType name="CreateApplicationRechtsschutzResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt; * &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRes
"antragsantwort" "antragsantwort"
}) })
public class CreateApplicationRechtsschutzResponseType public class CreateApplicationRechtsschutzResponseType
extends CreateApplicationResponseType extends CreateApplicationResponseGenType
{ {
@XmlElement(name = "Antragsantwort", required = true) @XmlElement(name = "Antragsantwort", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestTy
* <pre> * <pre>
* &lt;complexType name="CreateOfferRechtsschutzRequest_Type"&gt; * &lt;complexType name="CreateOfferRechtsschutzRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/&gt; * &lt;element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestTy
"offertanfrage" "offertanfrage"
}) })
public class CreateOfferRechtsschutzRequestType public class CreateOfferRechtsschutzRequestType
extends CreateOfferRequestType extends CreateOfferRequestGenType
{ {
@XmlElement(name = "Offertanfrage", required = true) @XmlElement(name = "Offertanfrage", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseT
* <pre> * <pre>
* &lt;complexType name="CreateOfferRechtsschutzResponse_Type"&gt; * &lt;complexType name="CreateOfferRechtsschutzResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/&gt; * &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseT
"offertantwort" "offertantwort"
}) })
public class CreateOfferRechtsschutzResponseType public class CreateOfferRechtsschutzResponseType
extends CreateOfferResponseType extends CreateOfferResponseGenType
{ {
@XmlElement(name = "Offertantwort", required = true) @XmlElement(name = "Offertantwort", required = true)

View File

@@ -6,9 +6,9 @@ import java.util.List;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktType; import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktGenerischType;
/** /**
@@ -21,9 +21,9 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktType;
* <pre> * <pre>
* &lt;complexType name="ElementarproduktRechtsschutz_Type"&gt; * &lt;complexType name="ElementarproduktRechtsschutz_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}string" 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;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -36,16 +36,13 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktType;
@XmlType(name = "ElementarproduktRechtsschutz_Type", propOrder = { @XmlType(name = "ElementarproduktRechtsschutz_Type", propOrder = {
"versInteressenRefLfNr" "versInteressenRefLfNr"
}) })
@XmlSeeAlso({
ElementarproduktRechtsschutzStdImplType.class,
ElementarproduktVertragsrechtsschutzType.class
})
public class ElementarproduktRechtsschutzType public class ElementarproduktRechtsschutzType
extends ElementarproduktType extends ElementarproduktGenerischType
{ {
@XmlElement(name = "VersInteressenRefLfNr") @XmlElement(name = "VersInteressenRefLfNr", type = Integer.class)
protected List<String> versInteressenRefLfNr; @XmlSchemaType(name = "unsignedShort")
protected List<Integer> versInteressenRefLfNr;
/** /**
* Gets the value of the versInteressenRefLfNr property. * Gets the value of the versInteressenRefLfNr property.
@@ -65,13 +62,13 @@ public class ElementarproduktRechtsschutzType
* *
* <p> * <p>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@link String } * {@link Integer }
* *
* *
*/ */
public List<String> getVersInteressenRefLfNr() { public List<Integer> getVersInteressenRefLfNr() {
if (versInteressenRefLfNr == null) { if (versInteressenRefLfNr == null) {
versInteressenRefLfNr = new ArrayList<String>(); versInteressenRefLfNr = new ArrayList<Integer>();
} }
return this.versInteressenRefLfNr; return this.versInteressenRefLfNr;
} }

View File

@@ -24,9 +24,6 @@ import javax.xml.namespace.QName;
@XmlRegistry @XmlRegistry
public class ObjectFactory { 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 _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 _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"); private final static QName _CreateOfferRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CreateOfferRechtsschutzRequest");
@@ -43,38 +40,6 @@ public class ObjectFactory {
public 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 } * Create an instance of {@link CalculateRechtsschutzRequestType }
* *
@@ -132,11 +97,27 @@ public class ObjectFactory {
} }
/** /**
* Create an instance of {@link ElementarproduktVertragsrechtsschutzType } * Create an instance of {@link VerkaufsproduktRechtsschutzType }
* *
*/ */
public ElementarproduktVertragsrechtsschutzType createElementarproduktVertragsrechtsschutzType() { public VerkaufsproduktRechtsschutzType createVerkaufsproduktRechtsschutzType() {
return new ElementarproduktVertragsrechtsschutzType(); 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();
} }
/** /**
@@ -171,41 +152,6 @@ public class ObjectFactory {
return new SubmitApplicationRechtsschutzRequestType(); 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 >}} * Create an instance of {@link JAXBElement }{@code <}{@link CalculateRechtsschutzRequestType }{@code >}}
* *

View File

@@ -1,11 +1,14 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs; 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.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType; import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
/** /**
@@ -18,8 +21,10 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType;
* <pre> * <pre>
* &lt;complexType name="ProduktRechtsschutz_Type"&gt; * &lt;complexType name="ProduktRechtsschutz_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;sequence&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;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -29,13 +34,76 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType;
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktRechtsschutz_Type") @XmlType(name = "ProduktRechtsschutz_Type", propOrder = {
@XmlSeeAlso({ "elementarprodukteRechtsschutz",
ProduktRechtsschutzStdImplType.class "versInteressenRefLfNr"
}) })
public abstract class ProduktRechtsschutzType public class ProduktRechtsschutzType
extends ProduktType extends ProduktGenerischType
{ {
@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

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationReq
* <pre> * <pre>
* &lt;complexType name="SubmitApplicationRechtsschutzRequest_Type"&gt; * &lt;complexType name="SubmitApplicationRechtsschutzRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt; * &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationReq
"antragsanfrage" "antragsanfrage"
}) })
public class SubmitApplicationRechtsschutzRequestType public class SubmitApplicationRechtsschutzRequestType
extends SubmitApplicationRequestType extends SubmitApplicationRequestGenType
{ {
@XmlElement(name = "Antragsanfrage", required = true) @XmlElement(name = "Antragsanfrage", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
* <pre> * <pre>
* &lt;complexType name="SubmitApplicationRechtsschutzResponse_Type"&gt; * &lt;complexType name="SubmitApplicationRechtsschutzResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt; * &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
"antragsantwort" "antragsantwort"
}) })
public class SubmitApplicationRechtsschutzResponseType public class SubmitApplicationRechtsschutzResponseType
extends SubmitApplicationResponseType extends SubmitApplicationResponseGenType
{ {
@XmlElement(name = "Antragsantwort", required = true) @XmlElement(name = "Antragsantwort", required = true)

View File

@@ -6,9 +6,9 @@ import java.util.List;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktType; import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType; import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
@@ -22,8 +22,10 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
* <pre> * <pre>
* &lt;complexType name="VerkaufsproduktRechtsschutz_Type"&gt; * &lt;complexType name="VerkaufsproduktRechtsschutz_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type"&gt;
* &lt;sequence&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;element name="VersicherteInteressen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
@@ -35,18 +37,79 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VerkaufsproduktRechtsschutz_Type", propOrder = { @XmlType(name = "VerkaufsproduktRechtsschutz_Type", propOrder = {
"produkte",
"zusatzprodukte",
"versicherteInteressen" "versicherteInteressen"
}) })
@XmlSeeAlso({ public class VerkaufsproduktRechtsschutzType
VerkaufsproduktRechtsschutzStdImplType.class extends VerkaufsproduktGenerischType
})
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") @XmlElement(name = "VersicherteInteressen")
protected List<VersichertesInteresseType> 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. * Gets the value of the versicherteInteressen property.
* *

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType
* <pre> * <pre>
* &lt;complexType name="CalculateSachPrivatRequest_Type"&gt; * &lt;complexType name="CalculateSachPrivatRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/&gt; * &lt;element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType
"berechnungsanfrage" "berechnungsanfrage"
}) })
public class CalculateSachPrivatRequestType public class CalculateSachPrivatRequestType
extends CalculateRequestType extends CalculateRequestGenType
{ {
@XmlElement(name = "Berechnungsanfrage", required = true) @XmlElement(name = "Berechnungsanfrage", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseTyp
* <pre> * <pre>
* &lt;complexType name="CalculateSachPrivatResponse_Type"&gt; * &lt;complexType name="CalculateSachPrivatResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/&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;element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}UpsellingSachPrivatResponse_Type" minOccurs="0"/&gt;
@@ -36,7 +36,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseTyp
"responseUpselling" "responseUpselling"
}) })
public class CalculateSachPrivatResponseType public class CalculateSachPrivatResponseType
extends CalculateResponseType extends CalculateResponseGenType
{ {
@XmlElement(name = "Berechnungsantwort", required = true) @XmlElement(name = "Berechnungsantwort", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationReq
* <pre> * <pre>
* &lt;complexType name="CreateApplicationSachPrivatRequest_Type"&gt; * &lt;complexType name="CreateApplicationSachPrivatRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/&gt; * &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationReq
"antragsanfrage" "antragsanfrage"
}) })
public class CreateApplicationSachPrivatRequestType public class CreateApplicationSachPrivatRequestType
extends CreateApplicationRequestType extends CreateApplicationRequestGenType
{ {
@XmlElement(name = "Antragsanfrage", required = true) @XmlElement(name = "Antragsanfrage", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRes
* <pre> * <pre>
* &lt;complexType name="CreateApplicationSachPrivatResponse_Type"&gt; * &lt;complexType name="CreateApplicationSachPrivatResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/&gt; * &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRes
"antragsantwort" "antragsantwort"
}) })
public class CreateApplicationSachPrivatResponseType public class CreateApplicationSachPrivatResponseType
extends CreateApplicationResponseType extends CreateApplicationResponseGenType
{ {
@XmlElement(name = "Antragsantwort", required = true) @XmlElement(name = "Antragsantwort", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestTy
* <pre> * <pre>
* &lt;complexType name="CreateOfferSachPrivatRequest_Type"&gt; * &lt;complexType name="CreateOfferSachPrivatRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/&gt; * &lt;element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestTy
"offertanfrage" "offertanfrage"
}) })
public class CreateOfferSachPrivatRequestType public class CreateOfferSachPrivatRequestType
extends CreateOfferRequestType extends CreateOfferRequestGenType
{ {
@XmlElement(name = "Offertanfrage", required = true) @XmlElement(name = "Offertanfrage", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseT
* <pre> * <pre>
* &lt;complexType name="CreateOfferSachPrivatResponse_Type"&gt; * &lt;complexType name="CreateOfferSachPrivatResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/&gt; * &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseT
"offertantwort" "offertantwort"
}) })
public class CreateOfferSachPrivatResponseType public class CreateOfferSachPrivatResponseType
extends CreateOfferResponseType extends CreateOfferResponseGenType
{ {
@XmlElement(name = "Offertantwort", required = true) @XmlElement(name = "Offertantwort", required = true)

View File

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

View File

@@ -6,7 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType; import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
/** /**
@@ -17,7 +17,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType;
* <pre> * <pre>
* &lt;complexType name="ProduktSachPrivat_Type"&gt; * &lt;complexType name="ProduktSachPrivat_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="VersInteresseRefLfnr" type="{http://www.w3.org/2001/XMLSchema}string"/&gt; * &lt;element name="VersInteresseRefLfnr" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -37,7 +37,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType;
ProduktHaushaltsversicherungType.class ProduktHaushaltsversicherungType.class
}) })
public abstract class ProduktSachPrivatType public abstract class ProduktSachPrivatType
extends ProduktType extends ProduktGenerischType
{ {
@XmlElement(name = "VersInteresseRefLfnr", required = true) @XmlElement(name = "VersInteresseRefLfnr", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationReq
* <pre> * <pre>
* &lt;complexType name="SubmitApplicationSachPrivatRequest_Type"&gt; * &lt;complexType name="SubmitApplicationSachPrivatRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/&gt; * &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationReq
"antragsanfrage" "antragsanfrage"
}) })
public class SubmitApplicationSachPrivatRequestType public class SubmitApplicationSachPrivatRequestType
extends SubmitApplicationRequestType extends SubmitApplicationRequestGenType
{ {
@XmlElement(name = "Antragsanfrage") @XmlElement(name = "Antragsanfrage")

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
* <pre> * <pre>
* &lt;complexType name="SubmitApplicationSachPrivatResponse_Type"&gt; * &lt;complexType name="SubmitApplicationSachPrivatResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/&gt; * &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
"antragsantwort" "antragsantwort"
}) })
public class SubmitApplicationSachPrivatResponseType public class SubmitApplicationSachPrivatResponseType
extends SubmitApplicationResponseType extends SubmitApplicationResponseGenType
{ {
@XmlElement(name = "Antragsantwort", required = true) @XmlElement(name = "Antragsantwort", required = true)

View File

@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType; 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.VerkaufsproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType; import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseMitAttributMetadatenType;
/** /**
@@ -22,11 +22,11 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
* <pre> * <pre>
* &lt;complexType name="VerkaufsproduktSachPrivat_Type"&gt; * &lt;complexType name="VerkaufsproduktSachPrivat_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Produkte" type="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type" maxOccurs="unbounded"/&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}Produkt_Type" maxOccurs="unbounded" minOccurs="0"/&gt; * &lt;element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/&gt; * &lt;element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -42,15 +42,15 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
"versicherteObjekte" "versicherteObjekte"
}) })
public class VerkaufsproduktSachPrivatType public class VerkaufsproduktSachPrivatType
extends VerkaufsproduktType extends VerkaufsproduktGenerischType
{ {
@XmlElement(name = "Produkte", required = true) @XmlElement(name = "Produkte", required = true)
protected List<ProduktType> produkte; protected List<ProduktGenerischType> produkte;
@XmlElement(name = "Zusatzprodukte") @XmlElement(name = "Zusatzprodukte")
protected List<ProduktType> zusatzprodukte; protected List<ProduktGenerischType> zusatzprodukte;
@XmlElement(name = "VersicherteObjekte", required = true) @XmlElement(name = "VersicherteObjekte", required = true)
protected List<VersichertesInteresseType> versicherteObjekte; protected List<VersichertesInteresseMitAttributMetadatenType> versicherteObjekte;
/** /**
* Gets the value of the produkte property. * Gets the value of the produkte property.
@@ -70,13 +70,13 @@ public class VerkaufsproduktSachPrivatType
* *
* <p> * <p>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@link ProduktType } * {@link ProduktGenerischType }
* *
* *
*/ */
public List<ProduktType> getProdukte() { public List<ProduktGenerischType> getProdukte() {
if (produkte == null) { if (produkte == null) {
produkte = new ArrayList<ProduktType>(); produkte = new ArrayList<ProduktGenerischType>();
} }
return this.produkte; return this.produkte;
} }
@@ -99,13 +99,13 @@ public class VerkaufsproduktSachPrivatType
* *
* <p> * <p>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@link ProduktType } * {@link ProduktGenerischType }
* *
* *
*/ */
public List<ProduktType> getZusatzprodukte() { public List<ProduktGenerischType> getZusatzprodukte() {
if (zusatzprodukte == null) { if (zusatzprodukte == null) {
zusatzprodukte = new ArrayList<ProduktType>(); zusatzprodukte = new ArrayList<ProduktGenerischType>();
} }
return this.zusatzprodukte; return this.zusatzprodukte;
} }
@@ -128,13 +128,13 @@ public class VerkaufsproduktSachPrivatType
* *
* <p> * <p>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@link VersichertesInteresseType } * {@link VersichertesInteresseMitAttributMetadatenType }
* *
* *
*/ */
public List<VersichertesInteresseType> getVersicherteObjekte() { public List<VersichertesInteresseMitAttributMetadatenType> getVersicherteObjekte() {
if (versicherteObjekte == null) { if (versicherteObjekte == null) {
versicherteObjekte = new ArrayList<VersichertesInteresseType>(); versicherteObjekte = new ArrayList<VersichertesInteresseMitAttributMetadatenType>();
} }
return this.versicherteObjekte; return this.versicherteObjekte;
} }

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType
* <pre> * <pre>
* &lt;complexType name="CalculateUnfallRequest_Type"&gt; * &lt;complexType name="CalculateUnfallRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/&gt; * &lt;element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType
"berechnungsanfrage" "berechnungsanfrage"
}) })
public class CalculateUnfallRequestType public class CalculateUnfallRequestType
extends CalculateRequestType extends CalculateRequestGenType
{ {
@XmlElement(name = "Berechnungsanfrage", required = true) @XmlElement(name = "Berechnungsanfrage", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseTyp
* <pre> * <pre>
* &lt;complexType name="CalculateUnfallResponse_Type"&gt; * &lt;complexType name="CalculateUnfallResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/&gt; * &lt;element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezBerechnungUnfall_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseTyp
"berechnungsantwort" "berechnungsantwort"
}) })
public class CalculateUnfallResponseType public class CalculateUnfallResponseType
extends CalculateResponseType extends CalculateResponseGenType
{ {
@XmlElement(name = "Berechnungsantwort", required = true) @XmlElement(name = "Berechnungsantwort", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationReq
* <pre> * <pre>
* &lt;complexType name="CreateApplicationUnfallRequest_Type"&gt; * &lt;complexType name="CreateApplicationUnfallRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/&gt; * &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationReq
"antragsanfrage" "antragsanfrage"
}) })
public class CreateApplicationUnfallRequestType public class CreateApplicationUnfallRequestType
extends CreateApplicationRequestType extends CreateApplicationRequestGenType
{ {
@XmlElement(name = "Antragsanfrage", required = true) @XmlElement(name = "Antragsanfrage", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRes
* <pre> * <pre>
* &lt;complexType name="CreateApplicationUnfallResponse_Type"&gt; * &lt;complexType name="CreateApplicationUnfallResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/&gt; * &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRes
"antragsantwort" "antragsantwort"
}) })
public class CreateApplicationUnfallResponseType public class CreateApplicationUnfallResponseType
extends CreateApplicationResponseType extends CreateApplicationResponseGenType
{ {
@XmlElement(name = "Antragsantwort", required = true) @XmlElement(name = "Antragsantwort", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestTy
* <pre> * <pre>
* &lt;complexType name="CreateOfferUnfallRequest_Type"&gt; * &lt;complexType name="CreateOfferUnfallRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/&gt; * &lt;element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestTy
"offertanfrage" "offertanfrage"
}) })
public class CreateOfferUnfallRequestType public class CreateOfferUnfallRequestType
extends CreateOfferRequestType extends CreateOfferRequestGenType
{ {
@XmlElement(name = "Offertanfrage", required = true) @XmlElement(name = "Offertanfrage", required = true)

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseT
* <pre> * <pre>
* &lt;complexType name="CreateOfferUnfallResponse_Type"&gt; * &lt;complexType name="CreateOfferUnfallResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/&gt; * &lt;element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezOffertUnfall_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseT
"offertantwort" "offertantwort"
}) })
public class CreateOfferUnfallResponseType public class CreateOfferUnfallResponseType
extends CreateOfferResponseType extends CreateOfferResponseGenType
{ {
@XmlElement(name = "Offertantwort", required = true) @XmlElement(name = "Offertantwort", required = true)

View File

@@ -1,14 +1,17 @@
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall; package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall;
import java.math.BigInteger; import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ElementarproduktType; 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.SelbstbehaltType; import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
@@ -22,11 +25,12 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
* <pre> * <pre>
* &lt;complexType name="ElementarproduktUnfall_Type"&gt; * &lt;complexType name="ElementarproduktUnfall_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="VersPersonRefLfNr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&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}unsignedLong" minOccurs="0"/&gt; * &lt;element name="Versicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" 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;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -37,95 +41,63 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ElementarproduktUnfall_Type", propOrder = { @XmlType(name = "ElementarproduktUnfall_Type", propOrder = {
"versPersonRefLfNr", "rest"
"versicherungssumme",
"selbstbehalt"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
GenElementarproduktUnfallType.class GenElementarproduktUnfallType.class
}) })
public abstract class ElementarproduktUnfallType public class ElementarproduktUnfallType
extends ElementarproduktType extends ElementarproduktGenerischType
{ {
@XmlElement(name = "VersPersonRefLfNr") @XmlElementRefs({
protected String versPersonRefLfNr; @XmlElementRef(name = "AttributMetadaten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
@XmlElement(name = "Versicherungssumme") @XmlElementRef(name = "VersPersonRefLfNr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
@XmlSchemaType(name = "unsignedLong") @XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
protected BigInteger versicherungssumme; @XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false)
@XmlElement(name = "Selbstbehalt") })
protected SelbstbehaltType selbstbehalt; protected List<JAXBElement<?>> rest;
/** /**
* Ruft den Wert der versPersonRefLfNr-Eigenschaft ab. * 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 758 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 String }{@code >}
* {@link JAXBElement }{@code <}{@link Long }{@code >}
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
* {@link JAXBElement }{@code <}{@link AttributMetadatenType }{@code >}
* *
* @return
* possible object is
* {@link String }
* *
*/ */
public String getVersPersonRefLfNr() { public List<JAXBElement<?>> getRest() {
return versPersonRefLfNr; if (rest == null) {
rest = new ArrayList<JAXBElement<?>>();
} }
return this.rest;
/**
* 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,7 +3,6 @@ package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
@@ -27,38 +26,10 @@ import javax.xml.bind.annotation.XmlType;
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GenElementarproduktUnfall_Type", propOrder = { @XmlType(name = "GenElementarproduktUnfall_Type")
"leistungsartCode"
})
public class GenElementarproduktUnfallType public class GenElementarproduktUnfallType
extends ElementarproduktUnfallType 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,6 +5,8 @@ import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry; import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName; 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;
/** /**
@@ -24,10 +26,6 @@ import javax.xml.namespace.QName;
@XmlRegistry @XmlRegistry
public class ObjectFactory { 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 _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 _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"); private final static QName _CreateOfferUnfallRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", "CreateOfferUnfallRequest");
@@ -36,6 +34,10 @@ 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 _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 _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 _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 * 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
@@ -44,22 +46,6 @@ public class ObjectFactory {
public 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 } * Create an instance of {@link CalculateUnfallRequestType }
* *
@@ -116,6 +102,30 @@ public class ObjectFactory {
return new SubmitApplicationUnfallResponseType(); 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 } * Create an instance of {@link SpezBerechnungUnfallType }
* *
@@ -148,42 +158,6 @@ public class ObjectFactory {
return new SubmitApplicationUnfallRequestType(); 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 >}} * Create an instance of {@link JAXBElement }{@code <}{@link CalculateUnfallRequestType }{@code >}}
* *
@@ -256,4 +230,40 @@ public class ObjectFactory {
return new JAXBElement<SubmitApplicationUnfallResponseType>(_SubmitApplicationUnfallResponse_QNAME, SubmitApplicationUnfallResponseType.class, null, value); 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.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType; import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType; import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
@@ -21,11 +21,15 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
* <pre> * <pre>
* &lt;complexType name="ProduktUnfall_Type"&gt; * &lt;complexType name="ProduktUnfall_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/&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="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;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -37,19 +41,31 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.SelbstbehaltType;
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktUnfall_Type", propOrder = { @XmlType(name = "ProduktUnfall_Type", propOrder = {
"selbstbehalt", "selbstbehalt",
"leistungsarten", "versPersonenRefLfnr",
"versPersonenRefLfnr" "leistungsartTod",
"leistungartInvaliditaet",
"leistungsartUnfallkosten",
"leistungsartSpitalgeld",
"leistungsarten"
}) })
public abstract class ProduktUnfallType public abstract class ProduktUnfallType
extends ProduktType extends ProduktGenerischType
{ {
@XmlElement(name = "Selbstbehalt") @XmlElement(name = "Selbstbehalt")
protected SelbstbehaltType selbstbehalt; protected SelbstbehaltType selbstbehalt;
@XmlElement(name = "Leistungsarten", required = true)
protected List<ElementarproduktUnfallType> leistungsarten;
@XmlElement(name = "VersPersonenRefLfnr", required = true) @XmlElement(name = "VersPersonenRefLfnr", required = true)
protected List<String> versPersonenRefLfnr; 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. * Ruft den Wert der selbstbehalt-Eigenschaft ab.
@@ -75,35 +91,6 @@ public abstract class ProduktUnfallType
this.selbstbehalt = value; 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. * Gets the value of the versPersonenRefLfnr property.
* *
@@ -133,4 +120,129 @@ public abstract class ProduktUnfallType
return this.versPersonenRefLfnr; 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

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRequestType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRequestGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationReq
* <pre> * <pre>
* &lt;complexType name="SubmitApplicationUnfallRequest_Type"&gt; * &lt;complexType name="SubmitApplicationUnfallRequest_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type" minOccurs="0"/&gt; * &lt;element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationReq
"antragsanfrage" "antragsanfrage"
}) })
public class SubmitApplicationUnfallRequestType public class SubmitApplicationUnfallRequestType
extends SubmitApplicationRequestType extends SubmitApplicationRequestGenType
{ {
@XmlElement(name = "Antragsanfrage") @XmlElement(name = "Antragsanfrage")

View File

@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationResponseType; import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationResponseGenType;
/** /**
@@ -18,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
* <pre> * <pre>
* &lt;complexType name="SubmitApplicationUnfallResponse_Type"&gt; * &lt;complexType name="SubmitApplicationUnfallResponse_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/&gt; * &lt;element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall}SpezAntragUnfall_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
@@ -34,7 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
"antragsantwort" "antragsantwort"
}) })
public class SubmitApplicationUnfallResponseType public class SubmitApplicationUnfallResponseType
extends SubmitApplicationResponseType extends SubmitApplicationResponseGenType
{ {
@XmlElement(name = "Antragsantwort", required = true) @XmlElement(name = "Antragsantwort", required = true)

View File

@@ -7,9 +7,9 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.ProduktType; 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.VerkaufsproduktGenerischType;
import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType; import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseMitAttributMetadatenType;
/** /**
@@ -22,10 +22,10 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
* <pre> * <pre>
* &lt;complexType name="VerkaufsproduktUnfall_Type"&gt; * &lt;complexType name="VerkaufsproduktUnfall_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Produkte" type="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type" maxOccurs="unbounded"/&gt; * &lt;element name="Produkte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="VersicherteInteressen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/&gt; * &lt;element name="VersicherteInteressen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -40,13 +40,13 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.VersichertesInteresseType;
"versicherteInteressen" "versicherteInteressen"
}) })
public class VerkaufsproduktUnfallType public class VerkaufsproduktUnfallType
extends VerkaufsproduktType extends VerkaufsproduktGenerischType
{ {
@XmlElement(name = "Produkte", required = true) @XmlElement(name = "Produkte", required = true)
protected List<ProduktType> produkte; protected List<ProduktGenerischType> produkte;
@XmlElement(name = "VersicherteInteressen", required = true) @XmlElement(name = "VersicherteInteressen", required = true)
protected List<VersichertesInteresseType> versicherteInteressen; protected List<VersichertesInteresseMitAttributMetadatenType> versicherteInteressen;
/** /**
* Gets the value of the produkte property. * Gets the value of the produkte property.
@@ -66,13 +66,13 @@ public class VerkaufsproduktUnfallType
* *
* <p> * <p>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@link ProduktType } * {@link ProduktGenerischType }
* *
* *
*/ */
public List<ProduktType> getProdukte() { public List<ProduktGenerischType> getProdukte() {
if (produkte == null) { if (produkte == null) {
produkte = new ArrayList<ProduktType>(); produkte = new ArrayList<ProduktGenerischType>();
} }
return this.produkte; return this.produkte;
} }
@@ -95,13 +95,13 @@ public class VerkaufsproduktUnfallType
* *
* <p> * <p>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@link VersichertesInteresseType } * {@link VersichertesInteresseMitAttributMetadatenType }
* *
* *
*/ */
public List<VersichertesInteresseType> getVersicherteInteressen() { public List<VersichertesInteresseMitAttributMetadatenType> getVersicherteInteressen() {
if (versicherteInteressen == null) { if (versicherteInteressen == null) {
versicherteInteressen = new ArrayList<VersichertesInteresseType>(); versicherteInteressen = new ArrayList<VersichertesInteresseMitAttributMetadatenType>();
} }
return this.versicherteInteressen; return this.versicherteInteressen;
} }

View File

@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
protected ObjektIdType objektId; protected ObjektIdType objektId;
@XmlElementRefs({ @XmlElementRefs({
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
@XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class), @XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class) @XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class),
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class)
}) })
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung; protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
@XmlElement(name = "WirksamtkeitAb", required = true) @XmlElement(name = "WirksamtkeitAb", required = true)

View File

@@ -43,7 +43,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.BankverbindungType;
* &lt;element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt; * &lt;element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/choice&gt; * &lt;/choice&gt;
* &lt;element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" minOccurs="0"/&gt; * &lt;element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -365,7 +365,7 @@ public class MeldungSchadenType {
* &lt;element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt; * &lt;element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/choice&gt; * &lt;/choice&gt;
* &lt;element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" minOccurs="0"/&gt; * &lt;element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -394,7 +394,7 @@ public class MeldungSchadenType {
@XmlSchemaType(name = "unsignedShort") @XmlSchemaType(name = "unsignedShort")
protected Integer geschInteresseLfnr; protected Integer geschInteresseLfnr;
@XmlElement(name = "ZusaetzlicheRollendaten") @XmlElement(name = "ZusaetzlicheRollendaten")
protected ZusaetzlicheRollendatenType zusaetzlicheRollendaten; protected List<ZusaetzlicheRollendatenType> zusaetzlicheRollendaten;
/** /**
* Ruft den Wert der vertragsrolle-Eigenschaft ab. * Ruft den Wert der vertragsrolle-Eigenschaft ab.
@@ -469,27 +469,32 @@ public class MeldungSchadenType {
} }
/** /**
* Ruft den Wert der zusaetzlicheRollendaten-Eigenschaft ab. * Gets the value of the zusaetzlicheRollendaten property.
* *
* @return * <p>
* possible object is * 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 zusaetzlicheRollendaten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusaetzlicheRollendaten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ZusaetzlicheRollendatenType } * {@link ZusaetzlicheRollendatenType }
* *
*/
public ZusaetzlicheRollendatenType getZusaetzlicheRollendaten() {
return zusaetzlicheRollendaten;
}
/**
* Legt den Wert der zusaetzlicheRollendaten-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ZusaetzlicheRollendatenType }
* *
*/ */
public void setZusaetzlicheRollendaten(ZusaetzlicheRollendatenType value) { public List<ZusaetzlicheRollendatenType> getZusaetzlicheRollendaten() {
this.zusaetzlicheRollendaten = value; if (zusaetzlicheRollendaten == null) {
zusaetzlicheRollendaten = new ArrayList<ZusaetzlicheRollendatenType>();
}
return this.zusaetzlicheRollendaten;
} }
} }

View File

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

View File

@@ -13,10 +13,11 @@ import javax.jws.WebResult;
import javax.jws.WebService; import javax.jws.WebService;
import javax.jws.soap.SOAPBinding; import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.soap.MTOM;
/** /**
* This class was generated by Apache CXF 3.2.0 * This class was generated by Apache CXF 3.2.0
* 2019-08-01T18:31:08.954+02:00 * 2019-08-30T14:27:34.265+02:00
* Generated source version: 3.2.0 * Generated source version: 3.2.0
* *
*/ */
@@ -27,7 +28,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
targetNamespace = "urn:omds3Services-1-4-0", targetNamespace = "urn:omds3Services-1-4-0",
wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3Services.wsdl", 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") endpointInterface = "at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType")
@MTOM(enabled = true, threshold = 1024)
public class OmdsServicePortImpl implements OmdsServicePortType { public class OmdsServicePortImpl implements OmdsServicePortType {
private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName());

View File

@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
/** /**
* This class was generated by Apache CXF 3.2.0 * This class was generated by Apache CXF 3.2.0
* 2019-07-12T15:19:45.905+02:00 * 2019-08-30T14:27:34.327+02:00
* Generated source version: 3.2.0 * Generated source version: 3.2.0
* *
*/ */

View File

@@ -16,11 +16,10 @@ import javax.jws.WebResult;
import javax.jws.WebService; import javax.jws.WebService;
import javax.jws.soap.SOAPBinding; import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.soap.MTOMFeature;
/** /**
* This class was generated by Apache CXF 3.2.0 * This class was generated by Apache CXF 3.2.0
* 2019-07-12T15:19:45.668+02:00 * 2019-08-30T14:27:34.148+02:00
* Generated source version: 3.2.0 * Generated source version: 3.2.0
* *
*/ */
@@ -47,7 +46,7 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
} }
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024)); OmdsServicePortType port = ss.getOmdsServicePort();
{ {
System.out.println("Invoking getOMDSPackageList..."); System.out.println("Invoking getOMDSPackageList...");

View File

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