Kombinationen Type fehlte, Typen Kranken und Rechtsschutz fehlten.
This commit is contained in:
@@ -0,0 +1,71 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_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 für eine Kombination zulässiger Produktbaustein-Ids
|
||||
*
|
||||
* <p>Java-Klasse für Kombination_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Kombination_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Kombination_Type", propOrder = {
|
||||
"id"
|
||||
})
|
||||
public class KombinationType {
|
||||
|
||||
@XmlElement(name = "Id", required = true)
|
||||
protected List<String> id;
|
||||
|
||||
/**
|
||||
* Gets the value of the id 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 id property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getId().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getId() {
|
||||
if (id == null) {
|
||||
id = new ArrayList<String>();
|
||||
}
|
||||
return this.id;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_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 für eine Liste zulässiger Kombinationen von Produktbaustein-Ids als Restriktion.
|
||||
*
|
||||
* <p>Java-Klasse für Kombinationen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Kombinationen_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Kombination" type="{urn:omds3CommonServiceTypes-1-1-0}Kombination_Type" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Kombinationen_Type", propOrder = {
|
||||
"kombination"
|
||||
})
|
||||
public class KombinationenType {
|
||||
|
||||
@XmlElement(name = "Kombination", required = true)
|
||||
protected List<KombinationType> kombination;
|
||||
|
||||
/**
|
||||
* Gets the value of the kombination 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 kombination property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getKombination().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link KombinationType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<KombinationType> getKombination() {
|
||||
if (kombination == null) {
|
||||
kombination = new ArrayList<KombinationType>();
|
||||
}
|
||||
return this.kombination;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateRequestGenType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Requestobjekts für eine Berechnung Kranken
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"berechnungsanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "CalculateKrankenRequest")
|
||||
public class CalculateKrankenRequest
|
||||
extends CalculateRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Berechnungsanfrage", required = true)
|
||||
protected SpezBerechnungKrankenType berechnungsanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der berechnungsanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezBerechnungKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezBerechnungKrankenType getBerechnungsanfrage() {
|
||||
return berechnungsanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der berechnungsanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezBerechnungKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setBerechnungsanfrage(SpezBerechnungKrankenType value) {
|
||||
this.berechnungsanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateResponseGenType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Responseobjekts für eine Kranken-Berechnung
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezBerechnungKranken_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"berechnungsantwort"
|
||||
})
|
||||
@XmlRootElement(name = "CalculateKrankenResponse")
|
||||
public class CalculateKrankenResponse
|
||||
extends CalculateResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Berechnungsantwort", required = true)
|
||||
protected SpezBerechnungKrankenType berechnungsantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der berechnungsantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezBerechnungKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezBerechnungKrankenType getBerechnungsantwort() {
|
||||
return berechnungsantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der berechnungsantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezBerechnungKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setBerechnungsantwort(SpezBerechnungKrankenType value) {
|
||||
this.berechnungsantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationRequestGenType;
|
||||
|
||||
|
||||
/**
|
||||
* Type des Requestobjekts für die Erstellung eines Krankenantrags
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "CreateApplicationKrankenRequest")
|
||||
public class CreateApplicationKrankenRequest
|
||||
extends CreateApplicationRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsanfrage", required = true)
|
||||
protected SpezAntragKrankenType antragsanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragKrankenType getAntragsanfrage() {
|
||||
return antragsanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsanfrage(SpezAntragKrankenType value) {
|
||||
this.antragsanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationResponseGenType;
|
||||
|
||||
|
||||
/**
|
||||
* Type des Responseobjekts für die Erstellung eines Krankenantrags
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsantwort"
|
||||
})
|
||||
@XmlRootElement(name = "CreateApplicationKrankenResponse")
|
||||
public class CreateApplicationKrankenResponse
|
||||
extends CreateApplicationResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsantwort", required = true)
|
||||
protected SpezAntragKrankenType antragsantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragKrankenType getAntragsantwort() {
|
||||
return antragsantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsantwort(SpezAntragKrankenType value) {
|
||||
this.antragsantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferRequestGenType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Requestobjekts für eine Erstellung eines Kranken-Offerts
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"offertanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "CreateOfferKrankenRequest")
|
||||
public class CreateOfferKrankenRequest
|
||||
extends CreateOfferRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Offertanfrage", required = true)
|
||||
protected SpezOffertKrankenType offertanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offertanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezOffertKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezOffertKrankenType getOffertanfrage() {
|
||||
return offertanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offertanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezOffertKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setOffertanfrage(SpezOffertKrankenType value) {
|
||||
this.offertanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferResponseGenType;
|
||||
|
||||
|
||||
/**
|
||||
* Type des Responseobjekts für eine Erstellung eines Kranken-Offerts
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezOffertKranken_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"offertantwort"
|
||||
})
|
||||
@XmlRootElement(name = "CreateOfferKrankenResponse")
|
||||
public class CreateOfferKrankenResponse
|
||||
extends CreateOfferResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Offertantwort", required = true)
|
||||
protected SpezOffertKrankenType offertantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offertantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezOffertKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezOffertKrankenType getOffertantwort() {
|
||||
return offertantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offertantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezOffertKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setOffertantwort(SpezOffertKrankenType value) {
|
||||
this.offertantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.ElementarproduktGenerischType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.SelbstbehaltType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für ein Elementarprodukt in der Sparte Kranken. Von diesem Typ werden etwaige unternehmesspezifische Deckungen oder potentielle Standard-Deckungen abgeleitet.
|
||||
*
|
||||
* <p>Java-Klasse für ElementarproduktKranken_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ElementarproduktKranken_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ElementarproduktKranken_Type", propOrder = {
|
||||
"selbstbehalt"
|
||||
})
|
||||
public class ElementarproduktKrankenType
|
||||
extends ElementarproduktGenerischType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Selbstbehalt")
|
||||
protected SelbstbehaltType selbstbehalt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SelbstbehaltType }
|
||||
*
|
||||
*/
|
||||
public SelbstbehaltType getSelbstbehalt() {
|
||||
return selbstbehalt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der selbstbehalt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SelbstbehaltType }
|
||||
*
|
||||
*/
|
||||
public void setSelbstbehalt(SelbstbehaltType value) {
|
||||
this.selbstbehalt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,144 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlRegistry;
|
||||
|
||||
|
||||
/**
|
||||
* This object contains factory methods for each
|
||||
* Java content interface and Java element interface
|
||||
* generated in the at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken package.
|
||||
* <p>An ObjectFactory allows you to programatically
|
||||
* construct new instances of the Java representation
|
||||
* for XML content. The Java representation of XML
|
||||
* content can consist of schema derived interfaces
|
||||
* and classes representing the binding of schema
|
||||
* type definitions, element declarations and model
|
||||
* groups. Factory methods for each of these are
|
||||
* provided in this class.
|
||||
*
|
||||
*/
|
||||
@XmlRegistry
|
||||
public class ObjectFactory {
|
||||
|
||||
|
||||
/**
|
||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken
|
||||
*
|
||||
*/
|
||||
public ObjectFactory() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CalculateKrankenRequest }
|
||||
*
|
||||
*/
|
||||
public CalculateKrankenRequest createCalculateKrankenRequest() {
|
||||
return new CalculateKrankenRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SpezBerechnungKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezBerechnungKrankenType createSpezBerechnungKrankenType() {
|
||||
return new SpezBerechnungKrankenType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CalculateKrankenResponse }
|
||||
*
|
||||
*/
|
||||
public CalculateKrankenResponse createCalculateKrankenResponse() {
|
||||
return new CalculateKrankenResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateOfferKrankenRequest }
|
||||
*
|
||||
*/
|
||||
public CreateOfferKrankenRequest createCreateOfferKrankenRequest() {
|
||||
return new CreateOfferKrankenRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SpezOffertKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezOffertKrankenType createSpezOffertKrankenType() {
|
||||
return new SpezOffertKrankenType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateOfferKrankenResponse }
|
||||
*
|
||||
*/
|
||||
public CreateOfferKrankenResponse createCreateOfferKrankenResponse() {
|
||||
return new CreateOfferKrankenResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateApplicationKrankenRequest }
|
||||
*
|
||||
*/
|
||||
public CreateApplicationKrankenRequest createCreateApplicationKrankenRequest() {
|
||||
return new CreateApplicationKrankenRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SpezAntragKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragKrankenType createSpezAntragKrankenType() {
|
||||
return new SpezAntragKrankenType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateApplicationKrankenResponse }
|
||||
*
|
||||
*/
|
||||
public CreateApplicationKrankenResponse createCreateApplicationKrankenResponse() {
|
||||
return new CreateApplicationKrankenResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubmitApplicationKrankenRequest }
|
||||
*
|
||||
*/
|
||||
public SubmitApplicationKrankenRequest createSubmitApplicationKrankenRequest() {
|
||||
return new SubmitApplicationKrankenRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubmitApplicationKrankenResponse }
|
||||
*
|
||||
*/
|
||||
public SubmitApplicationKrankenResponse createSubmitApplicationKrankenResponse() {
|
||||
return new SubmitApplicationKrankenResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link VerkaufsproduktKrankenType }
|
||||
*
|
||||
*/
|
||||
public VerkaufsproduktKrankenType createVerkaufsproduktKrankenType() {
|
||||
return new VerkaufsproduktKrankenType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ProduktKrankenType }
|
||||
*
|
||||
*/
|
||||
public ProduktKrankenType createProduktKrankenType() {
|
||||
return new ProduktKrankenType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ElementarproduktKrankenType }
|
||||
*
|
||||
*/
|
||||
public ElementarproduktKrankenType createElementarproduktKrankenType() {
|
||||
return new ElementarproduktKrankenType();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktMitVpType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.SelbstbehaltType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für ein Produkt in der Sparte Kranken. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten.
|
||||
*
|
||||
* <p>Java-Klasse für ProduktKranken_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ProduktKranken_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
|
||||
* <sequence>
|
||||
* <element name="Elementarprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ElementarproduktKranken_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ProduktKranken_Type", propOrder = {
|
||||
"elementarprodukte",
|
||||
"selbstbehalt"
|
||||
})
|
||||
public class ProduktKrankenType
|
||||
extends ProduktMitVpType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Elementarprodukte")
|
||||
protected List<ElementarproduktKrankenType> elementarprodukte;
|
||||
@XmlElement(name = "Selbstbehalt")
|
||||
protected SelbstbehaltType selbstbehalt;
|
||||
|
||||
/**
|
||||
* Gets the value of the elementarprodukte 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 elementarprodukte property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getElementarprodukte().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ElementarproduktKrankenType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ElementarproduktKrankenType> getElementarprodukte() {
|
||||
if (elementarprodukte == null) {
|
||||
elementarprodukte = new ArrayList<ElementarproduktKrankenType>();
|
||||
}
|
||||
return this.elementarprodukte;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der selbstbehalt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SelbstbehaltType }
|
||||
*
|
||||
*/
|
||||
public SelbstbehaltType getSelbstbehalt() {
|
||||
return selbstbehalt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der selbstbehalt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SelbstbehaltType }
|
||||
*
|
||||
*/
|
||||
public void setSelbstbehalt(SelbstbehaltType value) {
|
||||
this.selbstbehalt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezAntragType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für den Schritt Antrags-Erzeugung
|
||||
*
|
||||
* <p>Java-Klasse für SpezAntragKranken_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SpezAntragKranken_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
|
||||
* <sequence>
|
||||
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SpezAntragKranken_Type", propOrder = {
|
||||
"verkaufsprodukt"
|
||||
})
|
||||
public class SpezAntragKrankenType
|
||||
extends SpezAntragType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||
protected VerkaufsproduktKrankenType verkaufsprodukt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link VerkaufsproduktKrankenType }
|
||||
*
|
||||
*/
|
||||
public VerkaufsproduktKrankenType getVerkaufsprodukt() {
|
||||
return verkaufsprodukt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link VerkaufsproduktKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) {
|
||||
this.verkaufsprodukt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezBerechnungType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für den Schritt Berechnung
|
||||
*
|
||||
* <p>Java-Klasse für SpezBerechnungKranken_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SpezBerechnungKranken_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
|
||||
* <sequence>
|
||||
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SpezBerechnungKranken_Type", propOrder = {
|
||||
"verkaufsprodukt"
|
||||
})
|
||||
public class SpezBerechnungKrankenType
|
||||
extends SpezBerechnungType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||
protected VerkaufsproduktKrankenType verkaufsprodukt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link VerkaufsproduktKrankenType }
|
||||
*
|
||||
*/
|
||||
public VerkaufsproduktKrankenType getVerkaufsprodukt() {
|
||||
return verkaufsprodukt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link VerkaufsproduktKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) {
|
||||
this.verkaufsprodukt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezOffertType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für den Schritt Offert-Erzeugung
|
||||
*
|
||||
* <p>Java-Klasse für SpezOffertKranken_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SpezOffertKranken_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
|
||||
* <sequence>
|
||||
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}VerkaufsproduktKranken_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SpezOffertKranken_Type", propOrder = {
|
||||
"verkaufsprodukt"
|
||||
})
|
||||
public class SpezOffertKrankenType
|
||||
extends SpezOffertType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||
protected VerkaufsproduktKrankenType verkaufsprodukt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link VerkaufsproduktKrankenType }
|
||||
*
|
||||
*/
|
||||
public VerkaufsproduktKrankenType getVerkaufsprodukt() {
|
||||
return verkaufsprodukt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link VerkaufsproduktKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setVerkaufsprodukt(VerkaufsproduktKrankenType value) {
|
||||
this.verkaufsprodukt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationRequestGenType;
|
||||
|
||||
|
||||
/**
|
||||
* Type des Requests, um den Antrag einzureichen
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "SubmitApplicationKrankenRequest")
|
||||
public class SubmitApplicationKrankenRequest
|
||||
extends SubmitApplicationRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsanfrage")
|
||||
protected SpezAntragKrankenType antragsanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragKrankenType getAntragsanfrage() {
|
||||
return antragsanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsanfrage(SpezAntragKrankenType value) {
|
||||
this.antragsanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationResponseGenType;
|
||||
|
||||
|
||||
/**
|
||||
* Type des Response, um den Antrag einzureichen
|
||||
*
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}SpezAntragKranken_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsantwort"
|
||||
})
|
||||
@XmlRootElement(name = "SubmitApplicationKrankenResponse")
|
||||
public class SubmitApplicationKrankenResponse
|
||||
extends SubmitApplicationResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsantwort", required = true)
|
||||
protected SpezAntragKrankenType antragsantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragKrankenType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragKrankenType getAntragsantwort() {
|
||||
return antragsantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragKrankenType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsantwort(SpezAntragKrankenType value) {
|
||||
this.antragsantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,170 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktGenerischType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.VerkaufsproduktGenerischType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertePersonType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für ein Verkaufsprodukt in der Sparte Krankenversicherung
|
||||
*
|
||||
* <p>Java-Klasse für VerkaufsproduktKranken_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="VerkaufsproduktKranken_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="Krankenprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type" maxOccurs="unbounded"/>
|
||||
* <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
|
||||
* <element name="Gruppe" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VerkaufsproduktKranken_Type", propOrder = {
|
||||
"krankenprodukte",
|
||||
"zusatzprodukte",
|
||||
"versichertePersonen",
|
||||
"gruppe"
|
||||
})
|
||||
public class VerkaufsproduktKrankenType
|
||||
extends VerkaufsproduktGenerischType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Krankenprodukte", required = true)
|
||||
protected List<ProduktKrankenType> krankenprodukte;
|
||||
@XmlElement(name = "Zusatzprodukte")
|
||||
protected List<ProduktGenerischType> zusatzprodukte;
|
||||
@XmlElement(name = "VersichertePersonen", required = true)
|
||||
protected List<VersichertePersonType> versichertePersonen;
|
||||
@XmlElement(name = "Gruppe")
|
||||
protected String gruppe;
|
||||
|
||||
/**
|
||||
* Gets the value of the krankenprodukte 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 krankenprodukte property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getKrankenprodukte().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ProduktKrankenType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ProduktKrankenType> getKrankenprodukte() {
|
||||
if (krankenprodukte == null) {
|
||||
krankenprodukte = new ArrayList<ProduktKrankenType>();
|
||||
}
|
||||
return this.krankenprodukte;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zusatzprodukte property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the zusatzprodukte property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getZusatzprodukte().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ProduktGenerischType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ProduktGenerischType> getZusatzprodukte() {
|
||||
if (zusatzprodukte == null) {
|
||||
zusatzprodukte = new ArrayList<ProduktGenerischType>();
|
||||
}
|
||||
return this.zusatzprodukte;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the versichertePersonen property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the versichertePersonen property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getVersichertePersonen().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link VersichertePersonType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<VersichertePersonType> getVersichertePersonen() {
|
||||
if (versichertePersonen == null) {
|
||||
versichertePersonen = new ArrayList<VersichertePersonType>();
|
||||
}
|
||||
return this.versichertePersonen;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der gruppe-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getGruppe() {
|
||||
return gruppe;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der gruppe-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setGruppe(String value) {
|
||||
this.gruppe = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken;
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateRequestGenType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"berechnungsanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "CalculateRechtsschutzRequest")
|
||||
public class CalculateRechtsschutzRequest
|
||||
extends CalculateRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Berechnungsanfrage", required = true)
|
||||
protected SpezBerechnungRechtsschutzType berechnungsanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der berechnungsanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezBerechnungRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezBerechnungRechtsschutzType getBerechnungsanfrage() {
|
||||
return berechnungsanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der berechnungsanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezBerechnungRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setBerechnungsanfrage(SpezBerechnungRechtsschutzType value) {
|
||||
this.berechnungsanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CalculateResponseGenType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"berechnungsantwort"
|
||||
})
|
||||
@XmlRootElement(name = "CalculateRechtsschutzResponse")
|
||||
public class CalculateRechtsschutzResponse
|
||||
extends CalculateResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Berechnungsantwort", required = true)
|
||||
protected SpezBerechnungRechtsschutzType berechnungsantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der berechnungsantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezBerechnungRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezBerechnungRechtsschutzType getBerechnungsantwort() {
|
||||
return berechnungsantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der berechnungsantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezBerechnungRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setBerechnungsantwort(SpezBerechnungRechtsschutzType value) {
|
||||
this.berechnungsantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationRequestGenType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "CreateApplicationRechtsschutzRequest")
|
||||
public class CreateApplicationRechtsschutzRequest
|
||||
extends CreateApplicationRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsanfrage", required = true)
|
||||
protected SpezAntragRechtsschutzType antragsanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragRechtsschutzType getAntragsanfrage() {
|
||||
return antragsanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsanfrage(SpezAntragRechtsschutzType value) {
|
||||
this.antragsanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateApplicationResponseGenType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsantwort"
|
||||
})
|
||||
@XmlRootElement(name = "CreateApplicationRechtsschutzResponse")
|
||||
public class CreateApplicationRechtsschutzResponse
|
||||
extends CreateApplicationResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsantwort", required = true)
|
||||
protected SpezAntragRechtsschutzType antragsantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragRechtsschutzType getAntragsantwort() {
|
||||
return antragsantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsantwort(SpezAntragRechtsschutzType value) {
|
||||
this.antragsantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferRequestGenType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"offertanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "CreateOfferRechtsschutzRequest")
|
||||
public class CreateOfferRechtsschutzRequest
|
||||
extends CreateOfferRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Offertanfrage", required = true)
|
||||
protected SpezOffertRechtsschutzType offertanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offertanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezOffertRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezOffertRechtsschutzType getOffertanfrage() {
|
||||
return offertanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offertanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezOffertRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setOffertanfrage(SpezOffertRechtsschutzType value) {
|
||||
this.offertanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.CreateOfferResponseGenType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"offertantwort"
|
||||
})
|
||||
@XmlRootElement(name = "CreateOfferRechtsschutzResponse")
|
||||
public class CreateOfferRechtsschutzResponse
|
||||
extends CreateOfferResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Offertantwort", required = true)
|
||||
protected SpezOffertRechtsschutzType offertantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offertantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezOffertRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezOffertRechtsschutzType getOffertantwort() {
|
||||
return offertantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offertantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezOffertRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setOffertantwort(SpezOffertRechtsschutzType value) {
|
||||
this.offertantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.ElementarproduktGenerischType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für ein Elementarprodukt in der Sparte Rechtsschutz. Von diesem Typ werden etwaige Standard-Deckungen abgeleitet, siehe Vertragsrechtsschutz_Type. Von diesem Typ können einzelne VUs aber auch ihre eigenen Elementarprodukte ableiten, wenn sie möchten.
|
||||
*
|
||||
* <p>Java-Klasse für ElementarproduktRechtsschutz_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ElementarproduktRechtsschutz_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ElementarproduktRechtsschutz_Type", propOrder = {
|
||||
"versInteressenRefLfNr"
|
||||
})
|
||||
public class ElementarproduktRechtsschutzType
|
||||
extends ElementarproduktGenerischType
|
||||
{
|
||||
|
||||
@XmlElement(name = "VersInteressenRefLfNr", type = Integer.class)
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected List<Integer> versInteressenRefLfNr;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,144 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlRegistry;
|
||||
|
||||
|
||||
/**
|
||||
* This object contains factory methods for each
|
||||
* Java content interface and Java element interface
|
||||
* generated in the at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs package.
|
||||
* <p>An ObjectFactory allows you to programatically
|
||||
* construct new instances of the Java representation
|
||||
* for XML content. The Java representation of XML
|
||||
* content can consist of schema derived interfaces
|
||||
* and classes representing the binding of schema
|
||||
* type definitions, element declarations and model
|
||||
* groups. Factory methods for each of these are
|
||||
* provided in this class.
|
||||
*
|
||||
*/
|
||||
@XmlRegistry
|
||||
public class ObjectFactory {
|
||||
|
||||
|
||||
/**
|
||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs
|
||||
*
|
||||
*/
|
||||
public ObjectFactory() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CalculateRechtsschutzRequest }
|
||||
*
|
||||
*/
|
||||
public CalculateRechtsschutzRequest createCalculateRechtsschutzRequest() {
|
||||
return new CalculateRechtsschutzRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SpezBerechnungRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezBerechnungRechtsschutzType createSpezBerechnungRechtsschutzType() {
|
||||
return new SpezBerechnungRechtsschutzType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CalculateRechtsschutzResponse }
|
||||
*
|
||||
*/
|
||||
public CalculateRechtsschutzResponse createCalculateRechtsschutzResponse() {
|
||||
return new CalculateRechtsschutzResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateOfferRechtsschutzRequest }
|
||||
*
|
||||
*/
|
||||
public CreateOfferRechtsschutzRequest createCreateOfferRechtsschutzRequest() {
|
||||
return new CreateOfferRechtsschutzRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SpezOffertRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezOffertRechtsschutzType createSpezOffertRechtsschutzType() {
|
||||
return new SpezOffertRechtsschutzType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateOfferRechtsschutzResponse }
|
||||
*
|
||||
*/
|
||||
public CreateOfferRechtsschutzResponse createCreateOfferRechtsschutzResponse() {
|
||||
return new CreateOfferRechtsschutzResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateApplicationRechtsschutzRequest }
|
||||
*
|
||||
*/
|
||||
public CreateApplicationRechtsschutzRequest createCreateApplicationRechtsschutzRequest() {
|
||||
return new CreateApplicationRechtsschutzRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SpezAntragRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragRechtsschutzType createSpezAntragRechtsschutzType() {
|
||||
return new SpezAntragRechtsschutzType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreateApplicationRechtsschutzResponse }
|
||||
*
|
||||
*/
|
||||
public CreateApplicationRechtsschutzResponse createCreateApplicationRechtsschutzResponse() {
|
||||
return new CreateApplicationRechtsschutzResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubmitApplicationRechtsschutzRequest }
|
||||
*
|
||||
*/
|
||||
public SubmitApplicationRechtsschutzRequest createSubmitApplicationRechtsschutzRequest() {
|
||||
return new SubmitApplicationRechtsschutzRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SubmitApplicationRechtsschutzResponse }
|
||||
*
|
||||
*/
|
||||
public SubmitApplicationRechtsschutzResponse createSubmitApplicationRechtsschutzResponse() {
|
||||
return new SubmitApplicationRechtsschutzResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link VerkaufsproduktRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public VerkaufsproduktRechtsschutzType createVerkaufsproduktRechtsschutzType() {
|
||||
return new VerkaufsproduktRechtsschutzType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ProduktRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public ProduktRechtsschutzType createProduktRechtsschutzType() {
|
||||
return new ProduktRechtsschutzType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ElementarproduktRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public ElementarproduktRechtsschutzType createElementarproduktRechtsschutzType() {
|
||||
return new ElementarproduktRechtsschutzType();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,109 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktGenerischType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für ein Produkt in der Sparte Rechtsschutz. Von diesem Typ können einzelne VUs ihre eigenen Produkte ableiten, wenn sie möchten.
|
||||
*
|
||||
* <p>Java-Klasse für ProduktRechtsschutz_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ProduktRechtsschutz_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="ElementarprodukteRechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ElementarproduktRechtsschutz_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="VersInteressenRefLfNr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ProduktRechtsschutz_Type", propOrder = {
|
||||
"elementarprodukteRechtsschutz",
|
||||
"versInteressenRefLfNr"
|
||||
})
|
||||
public class ProduktRechtsschutzType
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezAntragType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für den Schritt Antrags-Erzeugung
|
||||
*
|
||||
* <p>Java-Klasse für SpezAntragRechtsschutz_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SpezAntragRechtsschutz_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
|
||||
* <sequence>
|
||||
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SpezAntragRechtsschutz_Type", propOrder = {
|
||||
"verkaufsprodukt"
|
||||
})
|
||||
public class SpezAntragRechtsschutzType
|
||||
extends SpezAntragType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||
protected VerkaufsproduktRechtsschutzType verkaufsprodukt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link VerkaufsproduktRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() {
|
||||
return verkaufsprodukt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link VerkaufsproduktRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) {
|
||||
this.verkaufsprodukt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezBerechnungType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für den Schritt Berechnung
|
||||
*
|
||||
* <p>Java-Klasse für SpezBerechnungRechtsschutz_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SpezBerechnungRechtsschutz_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
|
||||
* <sequence>
|
||||
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SpezBerechnungRechtsschutz_Type", propOrder = {
|
||||
"verkaufsprodukt"
|
||||
})
|
||||
public class SpezBerechnungRechtsschutzType
|
||||
extends SpezBerechnungType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||
protected VerkaufsproduktRechtsschutzType verkaufsprodukt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link VerkaufsproduktRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() {
|
||||
return verkaufsprodukt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link VerkaufsproduktRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) {
|
||||
this.verkaufsprodukt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SpezOffertType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für den Schritt Offert-Erzeugung
|
||||
*
|
||||
* <p>Java-Klasse für SpezOffertRechtsschutz_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SpezOffertRechtsschutz_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
|
||||
* <sequence>
|
||||
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}VerkaufsproduktRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SpezOffertRechtsschutz_Type", propOrder = {
|
||||
"verkaufsprodukt"
|
||||
})
|
||||
public class SpezOffertRechtsschutzType
|
||||
extends SpezOffertType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||
protected VerkaufsproduktRechtsschutzType verkaufsprodukt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link VerkaufsproduktRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public VerkaufsproduktRechtsschutzType getVerkaufsprodukt() {
|
||||
return verkaufsprodukt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link VerkaufsproduktRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setVerkaufsprodukt(VerkaufsproduktRechtsschutzType value) {
|
||||
this.verkaufsprodukt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationRequestGenType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsanfrage"
|
||||
})
|
||||
@XmlRootElement(name = "SubmitApplicationRechtsschutzRequest")
|
||||
public class SubmitApplicationRechtsschutzRequest
|
||||
extends SubmitApplicationRequestGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsanfrage", required = true)
|
||||
protected SpezAntragRechtsschutzType antragsanfrage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragRechtsschutzType getAntragsanfrage() {
|
||||
return antragsanfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsanfrage-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsanfrage(SpezAntragRechtsschutzType value) {
|
||||
this.antragsanfrage = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.SubmitApplicationResponseGenType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezAntragRechtsschutz_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"antragsantwort"
|
||||
})
|
||||
@XmlRootElement(name = "SubmitApplicationRechtsschutzResponse")
|
||||
public class SubmitApplicationRechtsschutzResponse
|
||||
extends SubmitApplicationResponseGenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsantwort", required = true)
|
||||
protected SpezAntragRechtsschutzType antragsantwort;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsantwort-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezAntragRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public SpezAntragRechtsschutzType getAntragsantwort() {
|
||||
return antragsantwort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsantwort-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezAntragRechtsschutzType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsantwort(SpezAntragRechtsschutzType value) {
|
||||
this.antragsantwort = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,142 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.ProduktGenerischType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.VerkaufsproduktGenerischType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertesInteresseType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für ein Verkaufsprodukt in der Sparte Rechtsschutz
|
||||
*
|
||||
* <p>Java-Klasse für VerkaufsproduktRechtsschutz_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="VerkaufsproduktRechtsschutz_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}ProduktRechtsschutz_Type" maxOccurs="unbounded"/>
|
||||
* <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="VersicherteInteressen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VerkaufsproduktRechtsschutz_Type", propOrder = {
|
||||
"produkte",
|
||||
"zusatzprodukte",
|
||||
"versicherteInteressen"
|
||||
})
|
||||
public class VerkaufsproduktRechtsschutzType
|
||||
extends VerkaufsproduktGenerischType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Produkte", required = true)
|
||||
protected List<ProduktRechtsschutzType> produkte;
|
||||
@XmlElement(name = "Zusatzprodukte")
|
||||
protected List<ProduktGenerischType> zusatzprodukte;
|
||||
@XmlElement(name = "VersicherteInteressen")
|
||||
protected List<VersichertesInteresseType> versicherteInteressen;
|
||||
|
||||
/**
|
||||
* Gets the value of the produkte property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the produkte property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getProdukte().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ProduktRechtsschutzType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ProduktRechtsschutzType> getProdukte() {
|
||||
if (produkte == null) {
|
||||
produkte = new ArrayList<ProduktRechtsschutzType>();
|
||||
}
|
||||
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.
|
||||
*
|
||||
* <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 versicherteInteressen property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getVersicherteInteressen().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link VersichertesInteresseType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<VersichertesInteresseType> getVersicherteInteressen() {
|
||||
if (versicherteInteressen == null) {
|
||||
versicherteInteressen = new ArrayList<VersichertesInteresseType>();
|
||||
}
|
||||
return this.versicherteInteressen;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
|
||||
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs;
|
||||
Reference in New Issue
Block a user