Java Klassen zu letzen Änderungen generiert
This commit is contained in:
@@ -28,6 +28,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.common.LegitimationType;
|
|||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </attribute>
|
* </attribute>
|
||||||
* <attribute name="Datum" type="{urn:omds20}Datum" />
|
* <attribute name="Datum" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="GueltigBis" type="{urn:omds20}Datum" />
|
||||||
* <attribute name="Nummer" use="required">
|
* <attribute name="Nummer" use="required">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
@@ -56,6 +57,8 @@ public class ELLegitimationType {
|
|||||||
protected String ausstellungsbehoerde;
|
protected String ausstellungsbehoerde;
|
||||||
@XmlAttribute(name = "Datum")
|
@XmlAttribute(name = "Datum")
|
||||||
protected XMLGregorianCalendar datum;
|
protected XMLGregorianCalendar datum;
|
||||||
|
@XmlAttribute(name = "GueltigBis")
|
||||||
|
protected XMLGregorianCalendar gueltigBis;
|
||||||
@XmlAttribute(name = "Nummer", required = true)
|
@XmlAttribute(name = "Nummer", required = true)
|
||||||
protected String nummer;
|
protected String nummer;
|
||||||
|
|
||||||
@@ -131,6 +134,30 @@ public class ELLegitimationType {
|
|||||||
this.datum = value;
|
this.datum = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gueltigBis-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getGueltigBis() {
|
||||||
|
return gueltigBis;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gueltigBis-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGueltigBis(XMLGregorianCalendar value) {
|
||||||
|
this.gueltigBis = value;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der nummer-Eigenschaft ab.
|
* Ruft den Wert der nummer-Eigenschaft ab.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -0,0 +1,92 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_14;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Rahmenvertrag_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Rahmenvertrag_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="RahmenvertragsartCd" use="required" type="{urn:omds20}RahmenvertragsartCd_Type" />
|
||||||
|
* <attribute name="Rahmenvertragsnummer" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="20"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Rahmenvertrag_Type")
|
||||||
|
public class ELRahmenvertragType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "RahmenvertragsartCd", required = true)
|
||||||
|
protected String rahmenvertragsartCd;
|
||||||
|
@XmlAttribute(name = "Rahmenvertragsnummer", required = true)
|
||||||
|
protected String rahmenvertragsnummer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der rahmenvertragsartCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRahmenvertragsartCd() {
|
||||||
|
return rahmenvertragsartCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der rahmenvertragsartCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRahmenvertragsartCd(String value) {
|
||||||
|
this.rahmenvertragsartCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der rahmenvertragsnummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRahmenvertragsnummer() {
|
||||||
|
return rahmenvertragsnummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der rahmenvertragsnummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRahmenvertragsnummer(String value) {
|
||||||
|
this.rahmenvertragsnummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -26,6 +26,9 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <enumeration value="PS"/>
|
* <enumeration value="PS"/>
|
||||||
* <enumeration value="SP"/>
|
* <enumeration value="SP"/>
|
||||||
* <enumeration value="VE"/>
|
* <enumeration value="VE"/>
|
||||||
|
* <enumeration value="WEG"/>
|
||||||
|
* <enumeration value="EWI"/>
|
||||||
|
* <enumeration value="ARG"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </pre>
|
* </pre>
|
||||||
@@ -112,7 +115,25 @@ public enum GesFormCdType {
|
|||||||
* Verein
|
* Verein
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
VE;
|
VE,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wohnungseigentümergemeinschaft
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
WEG,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Europäische Wirtschaftliche Interessenvereinigung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
EWI,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Arbeitsgemeinschaft
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ARG;
|
||||||
|
|
||||||
public String value() {
|
public String value() {
|
||||||
return name();
|
return name();
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ public class ObjectFactory {
|
|||||||
private final static QName _ELPraemienfreistellung_QNAME = new QName("urn:omds20", "EL-Praemienfreistellung");
|
private final static QName _ELPraemienfreistellung_QNAME = new QName("urn:omds20", "EL-Praemienfreistellung");
|
||||||
private final static QName _ELPraemienkorrektur_QNAME = new QName("urn:omds20", "EL-Praemienkorrektur");
|
private final static QName _ELPraemienkorrektur_QNAME = new QName("urn:omds20", "EL-Praemienkorrektur");
|
||||||
private final static QName _ELRahmenvereinbarung_QNAME = new QName("urn:omds20", "EL-Rahmenvereinbarung");
|
private final static QName _ELRahmenvereinbarung_QNAME = new QName("urn:omds20", "EL-Rahmenvereinbarung");
|
||||||
|
private final static QName _ELRahmenvertrag_QNAME = new QName("urn:omds20", "EL-Rahmenvertrag");
|
||||||
private final static QName _ELText_QNAME = new QName("urn:omds20", "EL-Text");
|
private final static QName _ELText_QNAME = new QName("urn:omds20", "EL-Text");
|
||||||
private final static QName _VERTRAGSPERSON_QNAME = new QName("urn:omds20", "VERTRAGSPERSON");
|
private final static QName _VERTRAGSPERSON_QNAME = new QName("urn:omds20", "VERTRAGSPERSON");
|
||||||
private final static QName _VERSOBJEKT_QNAME = new QName("urn:omds20", "VERS_OBJEKT");
|
private final static QName _VERSOBJEKT_QNAME = new QName("urn:omds20", "VERS_OBJEKT");
|
||||||
@@ -261,6 +262,14 @@ public class ObjectFactory {
|
|||||||
return new ELRahmenvereinbarungType();
|
return new ELRahmenvereinbarungType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELRahmenvertragType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELRahmenvertragType createELRahmenvertragType() {
|
||||||
|
return new ELRahmenvertragType();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link ELSelbstbehalt }
|
* Create an instance of {@link ELSelbstbehalt }
|
||||||
*
|
*
|
||||||
@@ -693,6 +702,15 @@ public class ObjectFactory {
|
|||||||
return new JAXBElement<ELRahmenvereinbarungType>(_ELRahmenvereinbarung_QNAME, ELRahmenvereinbarungType.class, null, value);
|
return new JAXBElement<ELRahmenvereinbarungType>(_ELRahmenvereinbarung_QNAME, ELRahmenvereinbarungType.class, null, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELRahmenvertragType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Rahmenvertrag")
|
||||||
|
public JAXBElement<ELRahmenvertragType> createELRahmenvertrag(ELRahmenvertragType value) {
|
||||||
|
return new JAXBElement<ELRahmenvertragType>(_ELRahmenvertrag_QNAME, ELRahmenvertragType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELTextType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELTextType }{@code >}}
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* </choice>
|
* </choice>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* <attribute name="RisikoLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
* <attribute name="RisikoLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
* <attribute name="RisikoArtCd" type="{urn:omds20}RisikoArtCd_Type" />
|
* <attribute name="RisikoArtCd" use="required" type="{urn:omds20}RisikoArtCd_Type" />
|
||||||
* <attribute name="RisikoBez" use="required">
|
* <attribute name="RisikoBez" use="required">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
@@ -93,7 +93,7 @@ public class RISIKOType {
|
|||||||
@XmlAttribute(name = "RisikoLfnr", required = true)
|
@XmlAttribute(name = "RisikoLfnr", required = true)
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
protected int risikoLfnr;
|
protected int risikoLfnr;
|
||||||
@XmlAttribute(name = "RisikoArtCd")
|
@XmlAttribute(name = "RisikoArtCd", required = true)
|
||||||
protected RisikoArtCdType risikoArtCd;
|
protected RisikoArtCdType risikoArtCd;
|
||||||
@XmlAttribute(name = "RisikoBez", required = true)
|
@XmlAttribute(name = "RisikoBez", required = true)
|
||||||
protected String risikoBez;
|
protected String risikoBez;
|
||||||
|
|||||||
@@ -80,6 +80,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <enumeration value="SprachCd"/>
|
* <enumeration value="SprachCd"/>
|
||||||
* <enumeration value="VerbrEinhCd"/>
|
* <enumeration value="VerbrEinhCd"/>
|
||||||
* <enumeration value="GesFormCd"/>
|
* <enumeration value="GesFormCd"/>
|
||||||
|
* <enumeration value="RahmenvertragsartCd"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </pre>
|
* </pre>
|
||||||
@@ -536,7 +537,14 @@ public enum SchlArtCdType {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlEnumValue("GesFormCd")
|
@XmlEnumValue("GesFormCd")
|
||||||
GES_FORM_CD("GesFormCd");
|
GES_FORM_CD("GesFormCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rahmenvertragsart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("RahmenvertragsartCd")
|
||||||
|
RAHMENVERTRAGSART_CD("RahmenvertragsartCd");
|
||||||
private final String value;
|
private final String value;
|
||||||
|
|
||||||
SchlArtCdType(String v) {
|
SchlArtCdType(String v) {
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
|||||||
* <element ref="{urn:omds20}EL-Praemienfreistellung"/>
|
* <element ref="{urn:omds20}EL-Praemienfreistellung"/>
|
||||||
* <element ref="{urn:omds20}EL-Praemienkorrektur"/>
|
* <element ref="{urn:omds20}EL-Praemienkorrektur"/>
|
||||||
* <element ref="{urn:omds20}EL-Rahmenvereinbarung"/>
|
* <element ref="{urn:omds20}EL-Rahmenvereinbarung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Rahmenvertrag"/>
|
||||||
* <element ref="{urn:omds20}EL-Selbstbehalt"/>
|
* <element ref="{urn:omds20}EL-Selbstbehalt"/>
|
||||||
* <element ref="{urn:omds20}EL-Text"/>
|
* <element ref="{urn:omds20}EL-Text"/>
|
||||||
* </choice>
|
* </choice>
|
||||||
@@ -153,6 +154,7 @@ public class VERTRAGType {
|
|||||||
@XmlElement(name = "EL-Praemienfreistellung", type = ELPraemienfreistellungType.class),
|
@XmlElement(name = "EL-Praemienfreistellung", type = ELPraemienfreistellungType.class),
|
||||||
@XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class),
|
@XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class),
|
||||||
@XmlElement(name = "EL-Rahmenvereinbarung", type = ELRahmenvereinbarungType.class),
|
@XmlElement(name = "EL-Rahmenvereinbarung", type = ELRahmenvereinbarungType.class),
|
||||||
|
@XmlElement(name = "EL-Rahmenvertrag", type = ELRahmenvertragType.class),
|
||||||
@XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class),
|
@XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class),
|
||||||
@XmlElement(name = "EL-Text", type = ELTextType.class)
|
@XmlElement(name = "EL-Text", type = ELTextType.class)
|
||||||
})
|
})
|
||||||
@@ -244,6 +246,7 @@ public class VERTRAGType {
|
|||||||
* {@link ELPraemienfreistellungType }
|
* {@link ELPraemienfreistellungType }
|
||||||
* {@link ELPraemienkorrekturType }
|
* {@link ELPraemienkorrekturType }
|
||||||
* {@link ELRahmenvereinbarungType }
|
* {@link ELRahmenvereinbarungType }
|
||||||
|
* {@link ELRahmenvertragType }
|
||||||
* {@link ELSelbstbehalt }
|
* {@link ELSelbstbehalt }
|
||||||
* {@link ELTextType }
|
* {@link ELTextType }
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Typ zur Übermittlung von Metadaten einer Autorisierung (z.B. einer elektronischen Unterschrift)
|
||||||
|
*
|
||||||
* <p>Java-Klasse für Autorisierung_Type complex type.
|
* <p>Java-Klasse für Autorisierung_Type complex type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
@@ -38,7 +40,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
"autorisierungsart"
|
"autorisierungsart"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokAnforderung.Autorisierungen.class,
|
|
||||||
at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentType.Autorisierungen.class,
|
at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentType.Autorisierungen.class,
|
||||||
AutorisierungAsyncType.class
|
AutorisierungAsyncType.class
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -0,0 +1,155 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_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 zur Übermittlung von Anforderungen an eine Autorisierung (z.B. einer elektronischen Unterschrift)
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AutorisierungsAnforderung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AutorisierungsAnforderung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="AutorisierungsId" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
|
||||||
|
* <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type" maxOccurs="unbounded"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AutorisierungsAnforderung_Type", propOrder = {
|
||||||
|
"autorisierungsId",
|
||||||
|
"person",
|
||||||
|
"rolle",
|
||||||
|
"autorisierungsart"
|
||||||
|
})
|
||||||
|
public class AutorisierungsAnforderungType {
|
||||||
|
|
||||||
|
@XmlElement(name = "AutorisierungsId")
|
||||||
|
protected Object autorisierungsId;
|
||||||
|
@XmlElement(name = "Person", required = true)
|
||||||
|
protected PersonType person;
|
||||||
|
@XmlElement(name = "Rolle", required = true)
|
||||||
|
protected String rolle;
|
||||||
|
@XmlElement(name = "Autorisierungsart", required = true)
|
||||||
|
protected List<AutorisierungsartType> autorisierungsart;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der autorisierungsId-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getAutorisierungsId() {
|
||||||
|
return autorisierungsId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der autorisierungsId-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAutorisierungsId(Object value) {
|
||||||
|
this.autorisierungsId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der person-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link PersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PersonType getPerson() {
|
||||||
|
return person;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der person-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link PersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPerson(PersonType value) {
|
||||||
|
this.person = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der rolle-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRolle() {
|
||||||
|
return rolle;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der rolle-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRolle(String value) {
|
||||||
|
this.rolle = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the autorisierungsart 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 autorisierungsart property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAutorisierungsart().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link AutorisierungsartType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<AutorisierungsartType> getAutorisierungsart() {
|
||||||
|
if (autorisierungsart == null) {
|
||||||
|
autorisierungsart = new ArrayList<AutorisierungsartType>();
|
||||||
|
}
|
||||||
|
return this.autorisierungsart;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Autorisierungsart repräsentiert eine traditionelle physische Unterschrift auf Papier
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AutorisierungsartPhysischeUnterschrift complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AutorisierungsartPhysischeUnterschrift">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AutorisierungsartPhysischeUnterschrift")
|
||||||
|
public class AutorisierungsartPhysischeUnterschrift
|
||||||
|
extends AutorisierungsartType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -28,8 +28,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "Autorisierungsart_Type")
|
@XmlType(name = "Autorisierungsart_Type")
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
AutorisierungsartServersideType.class,
|
AutorisierungsartPhysischeUnterschrift.class
|
||||||
AutorisierungsartClientsideType.class
|
|
||||||
})
|
})
|
||||||
public abstract class AutorisierungsartType {
|
public abstract class AutorisierungsartType {
|
||||||
|
|
||||||
|
|||||||
@@ -6,11 +6,11 @@ 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_7_0.on2antrag.common.CalculateRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.CreateFormRequest;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.SubmitFormRequest;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.BOAProcessRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.FetchPolicyRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.FetchPolicyRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.StartPolicyChangeRequest;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -26,7 +26,6 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationReq
|
|||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||||
* <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
|
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
@@ -37,15 +36,14 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationReq
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "CommonProcessRequest_Type", propOrder = {
|
@XmlType(name = "CommonProcessRequest_Type", propOrder = {
|
||||||
"geschaeftsfallnummer",
|
"geschaeftsfallnummer"
|
||||||
"aenderungsgrund"
|
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
FetchPolicyRequestType.class,
|
FetchPolicyRequestType.class,
|
||||||
SubmitApplicationRequestType.class,
|
SubmitFormRequest.class,
|
||||||
CreateApplicationRequestType.class,
|
CreateFormRequest.class,
|
||||||
CreateOfferRequestType.class,
|
BOAProcessRequestType.class,
|
||||||
CalculateRequestType.class
|
StartPolicyChangeRequest.class
|
||||||
})
|
})
|
||||||
public abstract class CommonProcessRequestType
|
public abstract class CommonProcessRequestType
|
||||||
extends CommonRequestType
|
extends CommonRequestType
|
||||||
@@ -53,8 +51,6 @@ public abstract class CommonProcessRequestType
|
|||||||
|
|
||||||
@XmlElement(name = "Geschaeftsfallnummer")
|
@XmlElement(name = "Geschaeftsfallnummer")
|
||||||
protected ObjektIdType geschaeftsfallnummer;
|
protected ObjektIdType geschaeftsfallnummer;
|
||||||
@XmlElement(name = "Aenderungsgrund")
|
|
||||||
protected String aenderungsgrund;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab.
|
* Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab.
|
||||||
@@ -80,28 +76,4 @@ public abstract class CommonProcessRequestType
|
|||||||
this.geschaeftsfallnummer = value;
|
this.geschaeftsfallnummer = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der aenderungsgrund-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getAenderungsgrund() {
|
|
||||||
return aenderungsgrund;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der aenderungsgrund-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAenderungsgrund(String value) {
|
|
||||||
this.aenderungsgrund = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,11 +6,11 @@ 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_7_0.on2antrag.common.CalculateResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.CreateFormResponse;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.SubmitFormResponse;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.BOAProcessResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.FetchPolicyResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.FetchPolicyResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.StartPolicyChangeResponse;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -26,7 +26,6 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationRes
|
|||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||||
* <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
|
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
@@ -37,15 +36,14 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationRes
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "CommonProcessResponse_Type", propOrder = {
|
@XmlType(name = "CommonProcessResponse_Type", propOrder = {
|
||||||
"geschaeftsfallnummer",
|
"geschaeftsfallnummer"
|
||||||
"aenderungsgrund"
|
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
|
SubmitFormResponse.class,
|
||||||
|
CreateFormResponse.class,
|
||||||
FetchPolicyResponseType.class,
|
FetchPolicyResponseType.class,
|
||||||
SubmitApplicationResponseType.class,
|
BOAProcessResponseType.class,
|
||||||
CreateApplicationResponseType.class,
|
StartPolicyChangeResponse.class
|
||||||
CreateOfferResponseType.class,
|
|
||||||
CalculateResponseType.class
|
|
||||||
})
|
})
|
||||||
public abstract class CommonProcessResponseType
|
public abstract class CommonProcessResponseType
|
||||||
extends CommonResponseType
|
extends CommonResponseType
|
||||||
@@ -53,8 +51,6 @@ public abstract class CommonProcessResponseType
|
|||||||
|
|
||||||
@XmlElement(name = "Geschaeftsfallnummer")
|
@XmlElement(name = "Geschaeftsfallnummer")
|
||||||
protected ObjektIdType geschaeftsfallnummer;
|
protected ObjektIdType geschaeftsfallnummer;
|
||||||
@XmlElement(name = "Aenderungsgrund")
|
|
||||||
protected String aenderungsgrund;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab.
|
* Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab.
|
||||||
@@ -80,28 +76,4 @@ public abstract class CommonProcessResponseType
|
|||||||
this.geschaeftsfallnummer = value;
|
this.geschaeftsfallnummer = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der aenderungsgrund-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getAenderungsgrund() {
|
|
||||||
return aenderungsgrund;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der aenderungsgrund-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAenderungsgrund(String value) {
|
|
||||||
this.aenderungsgrund = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,9 +8,13 @@ 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_7_0.on1basis.GetElementListRequest;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetStateSignaturesRequest;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetStateSignaturesRequest;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.UnderwriteDocumentRequest;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.GetApplicationDocumentRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.GetApplicationDocumentRequestType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.BelegeinreichungRequest;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimRequestType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.DeckungsauskunftRequest;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimRequestType;
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.CollectionChangeRequest;
|
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.CollectionChangeRequest;
|
||||||
@@ -77,10 +81,14 @@ import produktfinder.on2antrag._0._6.v1.omds3types.types.omds.vvo.at.FinderReque
|
|||||||
GetPoliciesOfPartnerRequestType.class,
|
GetPoliciesOfPartnerRequestType.class,
|
||||||
SetMailingAddressRequestType.class,
|
SetMailingAddressRequestType.class,
|
||||||
CommonSearchRequestType.class,
|
CommonSearchRequestType.class,
|
||||||
|
UnderwriteDocumentRequest.class,
|
||||||
|
GetElementListRequest.class,
|
||||||
GetStateSignaturesRequest.class,
|
GetStateSignaturesRequest.class,
|
||||||
CollectionRhythmChangeRequest.class,
|
CollectionRhythmChangeRequest.class,
|
||||||
CollectionRhythmInfoRequest.class,
|
CollectionRhythmInfoRequest.class,
|
||||||
CollectionChangeRequest.class,
|
CollectionChangeRequest.class,
|
||||||
|
BelegeinreichungRequest.class,
|
||||||
|
DeckungsauskunftRequest.class,
|
||||||
CommonProcessRequestType.class
|
CommonProcessRequestType.class
|
||||||
})
|
})
|
||||||
public abstract class CommonRequestType {
|
public abstract class CommonRequestType {
|
||||||
|
|||||||
@@ -10,9 +10,13 @@ import javax.xml.bind.annotation.XmlSchemaType;
|
|||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetElementListResponse;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetStateSignaturesResponse;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetStateSignaturesResponse;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.UnderwriteDocumentResponse;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.GetApplicationDocumentResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.GetApplicationDocumentResponseType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.BelegeinreichungResponse;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimResponseType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.DeckungsauskunftResponse;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimResponseType;
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.CollectionChangeResponse;
|
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.CollectionChangeResponse;
|
||||||
@@ -76,11 +80,15 @@ import produktfinder.on2antrag._0._6.v1.omds3types.types.omds.vvo.at.FinderRespo
|
|||||||
GetPoliciesOfPartnerResponseType.class,
|
GetPoliciesOfPartnerResponseType.class,
|
||||||
SetMailingAddressResponseType.class,
|
SetMailingAddressResponseType.class,
|
||||||
CommonSearchResponseType.class,
|
CommonSearchResponseType.class,
|
||||||
|
UnderwriteDocumentResponse.class,
|
||||||
|
GetElementListResponse.class,
|
||||||
GetStateSignaturesResponse.class,
|
GetStateSignaturesResponse.class,
|
||||||
CollectionRhythmChangeResponse.class,
|
CollectionRhythmChangeResponse.class,
|
||||||
CollectionRhythmInfoResponse.class,
|
CollectionRhythmInfoResponse.class,
|
||||||
CollectionChangeResponse.class,
|
CollectionChangeResponse.class,
|
||||||
ChangeCommunicationObjectResponseType.class,
|
ChangeCommunicationObjectResponseType.class,
|
||||||
|
BelegeinreichungResponse.class,
|
||||||
|
DeckungsauskunftResponse.class,
|
||||||
CommonProcessResponseType.class
|
CommonProcessResponseType.class
|
||||||
})
|
})
|
||||||
public abstract class CommonResponseType {
|
public abstract class CommonResponseType {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deprecated, verwende ProzessDokumentType. Dateianhang welcher an einen Geschäftsfall hinzugefügt werden kann
|
* Deprecated, verwende ProzessDokument_Type. Dateianhang welcher an einen Geschäftsfall hinzugefügt werden kann
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <p>Java-Klasse für Dateianhang_Type complex type.
|
* <p>Java-Klasse für Dateianhang_Type complex type.
|
||||||
|
|||||||
@@ -0,0 +1,156 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
||||||
|
|
||||||
|
import javax.activation.DataHandler;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlMimeType;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ zur Übermittlung von Dokumenten als Binary plus Metadaten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für DokumentBinaryData_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="DokumentBinaryData_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
||||||
|
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Groesse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||||
|
* <element name="Datum" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "DokumentBinaryData_Type", propOrder = {
|
||||||
|
"dateiData",
|
||||||
|
"mimetype",
|
||||||
|
"groesse",
|
||||||
|
"datum"
|
||||||
|
})
|
||||||
|
public class DokumentBinaryDataType
|
||||||
|
extends DokumentDataType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "DateiData", required = true)
|
||||||
|
@XmlMimeType("application/octet-stream")
|
||||||
|
protected DataHandler dateiData;
|
||||||
|
@XmlElement(name = "Mimetype", required = true)
|
||||||
|
protected String mimetype;
|
||||||
|
@XmlElement(name = "Groesse")
|
||||||
|
protected Long groesse;
|
||||||
|
@XmlElement(name = "Datum")
|
||||||
|
@XmlSchemaType(name = "dateTime")
|
||||||
|
protected XMLGregorianCalendar datum;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dateiData-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link DataHandler }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DataHandler getDateiData() {
|
||||||
|
return dateiData;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dateiData-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link DataHandler }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDateiData(DataHandler value) {
|
||||||
|
this.dateiData = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mimetype-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMimetype() {
|
||||||
|
return mimetype;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mimetype-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMimetype(String value) {
|
||||||
|
this.mimetype = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der groesse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Long getGroesse() {
|
||||||
|
return groesse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der groesse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGroesse(Long value) {
|
||||||
|
this.groesse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der datum-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getDatum() {
|
||||||
|
return datum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der datum-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDatum(XMLGregorianCalendar value) {
|
||||||
|
this.datum = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,18 +1,14 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
||||||
|
|
||||||
import javax.activation.DataHandler;
|
|
||||||
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.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlMimeType;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Typ zur Übermittlung von Dokumenten Binaries und Metadaten
|
* Abstrakter Typ zur Übermittlung von Dokumentendaten
|
||||||
*
|
*
|
||||||
* <p>Java-Klasse für DokumentData_Type complex type.
|
* <p>Java-Klasse für DokumentData_Type complex type.
|
||||||
*
|
*
|
||||||
@@ -22,12 +18,6 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
|||||||
* <complexType name="DokumentData_Type">
|
* <complexType name="DokumentData_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
|
||||||
* <element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
|
||||||
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* <element name="Groesse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
|
||||||
* <element name="Datum" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
@@ -36,119 +26,11 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "DokumentData_Type", propOrder = {
|
@XmlType(name = "DokumentData_Type")
|
||||||
"dateiData",
|
@XmlSeeAlso({
|
||||||
"mimetype",
|
DokumentBinaryDataType.class
|
||||||
"groesse",
|
|
||||||
"datum"
|
|
||||||
})
|
})
|
||||||
public class DokumentDataType {
|
public abstract class DokumentDataType {
|
||||||
|
|
||||||
@XmlElement(name = "DateiData", required = true)
|
|
||||||
@XmlMimeType("application/octet-stream")
|
|
||||||
protected DataHandler dateiData;
|
|
||||||
@XmlElement(name = "Mimetype", required = true)
|
|
||||||
protected String mimetype;
|
|
||||||
@XmlElement(name = "Groesse")
|
|
||||||
protected Long groesse;
|
|
||||||
@XmlElement(name = "Datum")
|
|
||||||
@XmlSchemaType(name = "dateTime")
|
|
||||||
protected XMLGregorianCalendar datum;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der dateiData-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link DataHandler }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public DataHandler getDateiData() {
|
|
||||||
return dateiData;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der dateiData-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link DataHandler }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDateiData(DataHandler value) {
|
|
||||||
this.dateiData = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der mimetype-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getMimetype() {
|
|
||||||
return mimetype;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der mimetype-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMimetype(String value) {
|
|
||||||
this.mimetype = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der groesse-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Long }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Long getGroesse() {
|
|
||||||
return groesse;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der groesse-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Long }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setGroesse(Long value) {
|
|
||||||
this.groesse = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der datum-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getDatum() {
|
|
||||||
return datum;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der datum-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDatum(XMLGregorianCalendar value) {
|
|
||||||
this.datum = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_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 zur Übermittlung von Formulardaten als Dokument
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für DokumentFormData_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="DokumentFormData_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Formular"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "DokumentFormData_Type", propOrder = {
|
||||||
|
"formular"
|
||||||
|
})
|
||||||
|
public class DokumentFormDataType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Formular", required = true)
|
||||||
|
protected Formular formular;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der formular-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Formular }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Formular getFormular() {
|
||||||
|
return formular;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der formular-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Formular }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFormular(Formular value) {
|
||||||
|
this.formular = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -37,6 +37,16 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
|||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||||
* <enumeration value="0"/>
|
* <enumeration value="0"/>
|
||||||
* <enumeration value="1"/>
|
* <enumeration value="1"/>
|
||||||
|
* <enumeration value="2"/>
|
||||||
|
* <enumeration value="3"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* <element name="Unterschrift" minOccurs="0">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||||
|
* <enumeration value="0"/>
|
||||||
|
* <enumeration value="1"/>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </simpleType>
|
* </simpleType>
|
||||||
* </element>
|
* </element>
|
||||||
@@ -57,7 +67,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
|||||||
"groesse",
|
"groesse",
|
||||||
"datum",
|
"datum",
|
||||||
"referenzWeitereDokumente",
|
"referenzWeitereDokumente",
|
||||||
"artAusfolgung"
|
"artAusfolgung",
|
||||||
|
"unterschrift"
|
||||||
})
|
})
|
||||||
public class DokumentInfoType {
|
public class DokumentInfoType {
|
||||||
|
|
||||||
@@ -79,6 +90,8 @@ public class DokumentInfoType {
|
|||||||
protected List<DokumentInfoType> referenzWeitereDokumente;
|
protected List<DokumentInfoType> referenzWeitereDokumente;
|
||||||
@XmlElement(name = "ArtAusfolgung")
|
@XmlElement(name = "ArtAusfolgung")
|
||||||
protected Short artAusfolgung;
|
protected Short artAusfolgung;
|
||||||
|
@XmlElement(name = "Unterschrift")
|
||||||
|
protected Short unterschrift;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der content-Eigenschaft ab.
|
* Ruft den Wert der content-Eigenschaft ab.
|
||||||
@@ -269,4 +282,28 @@ public class DokumentInfoType {
|
|||||||
this.artAusfolgung = value;
|
this.artAusfolgung = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der unterschrift-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Short }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Short getUnterschrift() {
|
||||||
|
return unterschrift;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der unterschrift-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Short }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setUnterschrift(Short value) {
|
||||||
|
this.unterschrift = value;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,195 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_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.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für anonymous complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="FormType" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
||||||
|
* <element name="Formularstatus">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="inBearbeitung"/>
|
||||||
|
* <enumeration value="abgeschlossen"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* <element name="Kontext" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Fragen" type="{urn:omds3CommonServiceTypes-1-1-0}Formularfrage_Type" maxOccurs="unbounded"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"formType",
|
||||||
|
"id",
|
||||||
|
"formularstatus",
|
||||||
|
"kontext",
|
||||||
|
"fragen"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "Formular")
|
||||||
|
public class Formular {
|
||||||
|
|
||||||
|
@XmlElement(name = "FormType", required = true)
|
||||||
|
protected String formType;
|
||||||
|
@XmlElement(name = "Id")
|
||||||
|
protected Object id;
|
||||||
|
@XmlElement(name = "Formularstatus", required = true)
|
||||||
|
protected String formularstatus;
|
||||||
|
@XmlElement(name = "Kontext")
|
||||||
|
protected List<String> kontext;
|
||||||
|
@XmlElement(name = "Fragen", required = true)
|
||||||
|
protected List<FormularfrageType> fragen;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der formType-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFormType() {
|
||||||
|
return formType;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der formType-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFormType(String value) {
|
||||||
|
this.formType = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der id-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der id-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setId(Object value) {
|
||||||
|
this.id = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der formularstatus-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFormularstatus() {
|
||||||
|
return formularstatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der formularstatus-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFormularstatus(String value) {
|
||||||
|
this.formularstatus = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the kontext 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 kontext property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getKontext().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getKontext() {
|
||||||
|
if (kontext == null) {
|
||||||
|
kontext = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.kontext;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the fragen 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 fragen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getFragen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link FormularfrageType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<FormularfrageType> getFragen() {
|
||||||
|
if (fragen == null) {
|
||||||
|
fragen = new ArrayList<FormularfrageType>();
|
||||||
|
}
|
||||||
|
return this.fragen;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Eine Frage in einem Formular
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Formularfrage_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Formularfrage_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
|
||||||
|
* <element name="Frage" type="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Formularfrage_Type", propOrder = {
|
||||||
|
"lfnr",
|
||||||
|
"frage"
|
||||||
|
})
|
||||||
|
public class FormularfrageType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Lfnr")
|
||||||
|
@XmlSchemaType(name = "unsignedByte")
|
||||||
|
protected short lfnr;
|
||||||
|
@XmlElement(name = "Frage", required = true)
|
||||||
|
protected AttributType frage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der lfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public short getLfnr() {
|
||||||
|
return lfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der lfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLfnr(short value) {
|
||||||
|
this.lfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der frage-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AttributType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributType getFrage() {
|
||||||
|
return frage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der frage-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AttributType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFrage(AttributType value) {
|
||||||
|
this.frage = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -21,6 +21,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
* <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Vermittlername" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
* <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
* <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||||
* <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
* <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||||
* <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
* <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||||
@@ -35,6 +36,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "Kontierung_Type", propOrder = {
|
@XmlType(name = "Kontierung_Type", propOrder = {
|
||||||
"vermittlernummer",
|
"vermittlernummer",
|
||||||
|
"vermittlername",
|
||||||
"abschluss",
|
"abschluss",
|
||||||
"folge",
|
"folge",
|
||||||
"betreuung"
|
"betreuung"
|
||||||
@@ -43,6 +45,8 @@ public class KontierungType {
|
|||||||
|
|
||||||
@XmlElement(name = "Vermittlernummer", required = true)
|
@XmlElement(name = "Vermittlernummer", required = true)
|
||||||
protected String vermittlernummer;
|
protected String vermittlernummer;
|
||||||
|
@XmlElement(name = "Vermittlername")
|
||||||
|
protected String vermittlername;
|
||||||
@XmlElement(name = "Abschluss", required = true)
|
@XmlElement(name = "Abschluss", required = true)
|
||||||
protected BigInteger abschluss;
|
protected BigInteger abschluss;
|
||||||
@XmlElement(name = "Folge", required = true)
|
@XmlElement(name = "Folge", required = true)
|
||||||
@@ -74,6 +78,30 @@ public class KontierungType {
|
|||||||
this.vermittlernummer = value;
|
this.vermittlernummer = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vermittlername-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVermittlername() {
|
||||||
|
return vermittlername;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vermittlername-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVermittlername(String value) {
|
||||||
|
this.vermittlername = value;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der abschluss-Eigenschaft ab.
|
* Ruft den Wert der abschluss-Eigenschaft ab.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -46,11 +46,11 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link ZahlwegType }
|
* Create an instance of {@link ZahlwegImplType }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public ZahlwegType createZahlwegType() {
|
public ZahlwegImplType createZahlwegImplType() {
|
||||||
return new ZahlwegType();
|
return new ZahlwegImplType();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -62,19 +62,11 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link ProzessDokAnforderung }
|
* Create an instance of {@link TechnicalKeyValueType }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public ProzessDokAnforderung createProzessDokAnforderung() {
|
public TechnicalKeyValueType createTechnicalKeyValueType() {
|
||||||
return new ProzessDokAnforderung();
|
return new TechnicalKeyValueType();
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create an instance of {@link ServiceFault }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ServiceFault createServiceFault() {
|
|
||||||
return new ServiceFault();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -85,6 +77,22 @@ public class ObjectFactory {
|
|||||||
return new ObjektIdType();
|
return new ObjektIdType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ResponseStatusType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ResponseStatusType createResponseStatusType() {
|
||||||
|
return new ResponseStatusType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ServiceFault }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ServiceFault createServiceFault() {
|
||||||
|
return new ServiceFault();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link PersonType }
|
* Create an instance of {@link PersonType }
|
||||||
*
|
*
|
||||||
@@ -101,6 +109,22 @@ public class ObjectFactory {
|
|||||||
return new AdresseType();
|
return new AdresseType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link Formular }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Formular createFormular() {
|
||||||
|
return new Formular();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link FormularfrageType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FormularfrageType createFormularfrageType() {
|
||||||
|
return new FormularfrageType();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link AgentFilterType }
|
* Create an instance of {@link AgentFilterType }
|
||||||
*
|
*
|
||||||
@@ -117,14 +141,6 @@ public class ObjectFactory {
|
|||||||
return new ElementIdType();
|
return new ElementIdType();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create an instance of {@link ResponseStatusType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ResponseStatusType createResponseStatusType() {
|
|
||||||
return new ResponseStatusType();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link Referenz }
|
* Create an instance of {@link Referenz }
|
||||||
*
|
*
|
||||||
@@ -150,11 +166,19 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link DokumentDataType }
|
* Create an instance of {@link DokumentFormDataType }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public DokumentDataType createDokumentDataType() {
|
public DokumentFormDataType createDokumentFormDataType() {
|
||||||
return new DokumentDataType();
|
return new DokumentFormDataType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link DokumentBinaryDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DokumentBinaryDataType createDokumentBinaryDataType() {
|
||||||
|
return new DokumentBinaryDataType();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -165,6 +189,14 @@ public class ObjectFactory {
|
|||||||
return new AutorisierungType();
|
return new AutorisierungType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AutorisierungsAnforderungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AutorisierungsAnforderungType createAutorisierungsAnforderungType() {
|
||||||
|
return new AutorisierungsAnforderungType();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link AutorisierungAsyncType }
|
* Create an instance of {@link AutorisierungAsyncType }
|
||||||
*
|
*
|
||||||
@@ -174,27 +206,35 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link AutorisierungsartClientsidePhysischeUnterschrift }
|
* Create an instance of {@link AutorisierungsartPhysischeUnterschrift }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public AutorisierungsartClientsidePhysischeUnterschrift createAutorisierungsartClientsidePhysischeUnterschrift() {
|
public AutorisierungsartPhysischeUnterschrift createAutorisierungsartPhysischeUnterschrift() {
|
||||||
return new AutorisierungsartClientsidePhysischeUnterschrift();
|
return new AutorisierungsartPhysischeUnterschrift();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link ProzessDokFuerKundeZumUnterschreiben }
|
* Create an instance of {@link ProzessDokRequirementType }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public ProzessDokFuerKundeZumUnterschreiben createProzessDokFuerKundeZumUnterschreiben() {
|
public ProzessDokRequirementType createProzessDokRequirementType() {
|
||||||
return new ProzessDokFuerKundeZumUnterschreiben();
|
return new ProzessDokRequirementType();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link ProzessDokFuerKunde }
|
* Create an instance of {@link ProzessDokToSignType }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public ProzessDokFuerKunde createProzessDokFuerKunde() {
|
public ProzessDokToSignType createProzessDokToSignType() {
|
||||||
return new ProzessDokFuerKunde();
|
return new ProzessDokToSignType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ProzessDokHandoutType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ProzessDokHandoutType createProzessDokHandoutType() {
|
||||||
|
return new ProzessDokHandoutType();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -237,14 +277,6 @@ public class ObjectFactory {
|
|||||||
return new VersicherungssteuerType();
|
return new VersicherungssteuerType();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create an instance of {@link TechnicalKeyValueType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public TechnicalKeyValueType createTechnicalKeyValueType() {
|
|
||||||
return new TechnicalKeyValueType();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link VertragspersonType }
|
* Create an instance of {@link VertragspersonType }
|
||||||
*
|
*
|
||||||
@@ -782,11 +814,11 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link ZahlwegType.Kundenkonto }
|
* Create an instance of {@link ZahlwegImplType.Kundenkonto }
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() {
|
public ZahlwegImplType.Kundenkonto createZahlwegImplTypeKundenkonto() {
|
||||||
return new ZahlwegType.Kundenkonto();
|
return new ZahlwegImplType.Kundenkonto();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -797,14 +829,6 @@ public class ObjectFactory {
|
|||||||
return new ProzessDokumentType.Autorisierungen();
|
return new ProzessDokumentType.Autorisierungen();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create an instance of {@link ProzessDokAnforderung.Autorisierungen }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ProzessDokAnforderung.Autorisierungen createProzessDokAnforderungAutorisierungen() {
|
|
||||||
return new ProzessDokAnforderung.Autorisierungen();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}}
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -0,0 +1,93 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bereitstellung Dokument für Kunde, nicht zu unterschreiben
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ProzessDokHandout_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ProzessDokHandout_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
|
||||||
|
* <element name="ArtAusfolgung">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||||
|
* <enumeration value="0"/>
|
||||||
|
* <enumeration value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ProzessDokHandout_Type", propOrder = {
|
||||||
|
"dokData",
|
||||||
|
"artAusfolgung"
|
||||||
|
})
|
||||||
|
public class ProzessDokHandoutType
|
||||||
|
extends ProzessDokumentBasisType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "DokData", required = true)
|
||||||
|
protected DokumentDataType dokData;
|
||||||
|
@XmlElement(name = "ArtAusfolgung")
|
||||||
|
protected short artAusfolgung;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dokData-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link DokumentDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DokumentDataType getDokData() {
|
||||||
|
return dokData;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dokData-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link DokumentDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDokData(DokumentDataType value) {
|
||||||
|
this.dokData = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der artAusfolgung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public short getArtAusfolgung() {
|
||||||
|
return artAusfolgung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der artAusfolgung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setArtAusfolgung(short value) {
|
||||||
|
this.artAusfolgung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,187 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Anforderung eines beizubringenden Dokuments
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ProzessDokRequirement_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ProzessDokRequirement_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
|
||||||
|
* <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="ZulaessigeMimetypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ProzessDokRequirement_Type", propOrder = {
|
||||||
|
"dokAnforderungsId",
|
||||||
|
"autorisierungen",
|
||||||
|
"docUploadRequired",
|
||||||
|
"zulaessigeMimetypes",
|
||||||
|
"meldungen"
|
||||||
|
})
|
||||||
|
public class ProzessDokRequirementType
|
||||||
|
extends ProzessDokumentBasisType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "DokAnforderungsId", required = true)
|
||||||
|
protected ObjektIdType dokAnforderungsId;
|
||||||
|
@XmlElement(name = "Autorisierungen")
|
||||||
|
protected List<AutorisierungsAnforderungType> autorisierungen;
|
||||||
|
@XmlElement(name = "DocUploadRequired")
|
||||||
|
protected boolean docUploadRequired;
|
||||||
|
@XmlElement(name = "ZulaessigeMimetypes")
|
||||||
|
protected List<String> zulaessigeMimetypes;
|
||||||
|
@XmlElement(name = "Meldungen")
|
||||||
|
protected List<ServiceFault> meldungen;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dokAnforderungsId-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjektIdType getDokAnforderungsId() {
|
||||||
|
return dokAnforderungsId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dokAnforderungsId-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDokAnforderungsId(ObjektIdType value) {
|
||||||
|
this.dokAnforderungsId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the autorisierungen 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 autorisierungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAutorisierungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link AutorisierungsAnforderungType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<AutorisierungsAnforderungType> getAutorisierungen() {
|
||||||
|
if (autorisierungen == null) {
|
||||||
|
autorisierungen = new ArrayList<AutorisierungsAnforderungType>();
|
||||||
|
}
|
||||||
|
return this.autorisierungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der docUploadRequired-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isDocUploadRequired() {
|
||||||
|
return docUploadRequired;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der docUploadRequired-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDocUploadRequired(boolean value) {
|
||||||
|
this.docUploadRequired = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the zulaessigeMimetypes 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 zulaessigeMimetypes property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getZulaessigeMimetypes().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getZulaessigeMimetypes() {
|
||||||
|
if (zulaessigeMimetypes == null) {
|
||||||
|
zulaessigeMimetypes = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.zulaessigeMimetypes;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the meldungen 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 meldungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getMeldungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ServiceFault }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ServiceFault> getMeldungen() {
|
||||||
|
if (meldungen == null) {
|
||||||
|
meldungen = new ArrayList<ServiceFault>();
|
||||||
|
}
|
||||||
|
return this.meldungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,182 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bereitstellung Dokument zum Unterschreiben
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ProzessDokToSign_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ProzessDokToSign_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
|
||||||
|
* <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded"/>
|
||||||
|
* <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="ZulaessigeMimetypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ProzessDokToSign_Type", propOrder = {
|
||||||
|
"dokAnforderungsId",
|
||||||
|
"autorisierungen",
|
||||||
|
"docUploadRequired",
|
||||||
|
"zulaessigeMimetypes",
|
||||||
|
"dokData"
|
||||||
|
})
|
||||||
|
public class ProzessDokToSignType
|
||||||
|
extends ProzessDokumentBasisType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "DokAnforderungsId", required = true)
|
||||||
|
protected ObjektIdType dokAnforderungsId;
|
||||||
|
@XmlElement(name = "Autorisierungen", required = true)
|
||||||
|
protected List<AutorisierungsAnforderungType> autorisierungen;
|
||||||
|
@XmlElement(name = "DocUploadRequired")
|
||||||
|
protected boolean docUploadRequired;
|
||||||
|
@XmlElement(name = "ZulaessigeMimetypes")
|
||||||
|
protected List<String> zulaessigeMimetypes;
|
||||||
|
@XmlElement(name = "DokData", required = true)
|
||||||
|
protected DokumentDataType dokData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dokAnforderungsId-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjektIdType getDokAnforderungsId() {
|
||||||
|
return dokAnforderungsId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dokAnforderungsId-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDokAnforderungsId(ObjektIdType value) {
|
||||||
|
this.dokAnforderungsId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the autorisierungen 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 autorisierungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAutorisierungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link AutorisierungsAnforderungType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<AutorisierungsAnforderungType> getAutorisierungen() {
|
||||||
|
if (autorisierungen == null) {
|
||||||
|
autorisierungen = new ArrayList<AutorisierungsAnforderungType>();
|
||||||
|
}
|
||||||
|
return this.autorisierungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der docUploadRequired-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isDocUploadRequired() {
|
||||||
|
return docUploadRequired;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der docUploadRequired-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDocUploadRequired(boolean value) {
|
||||||
|
this.docUploadRequired = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the zulaessigeMimetypes 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 zulaessigeMimetypes property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getZulaessigeMimetypes().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getZulaessigeMimetypes() {
|
||||||
|
if (zulaessigeMimetypes == null) {
|
||||||
|
zulaessigeMimetypes = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.zulaessigeMimetypes;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dokData-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link DokumentDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DokumentDataType getDokData() {
|
||||||
|
return dokData;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dokData-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link DokumentDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDokData(DokumentDataType value) {
|
||||||
|
this.dokData = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -20,7 +20,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Dokumenttyp" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
|
* <element name="Dokumenttyp" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
* <element name="Beschreibung">
|
* <element name="Beschreibung">
|
||||||
* <simpleType>
|
* <simpleType>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
@@ -42,30 +42,38 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
"beschreibung"
|
"beschreibung"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
ProzessDokAnforderung.class,
|
ProzessDokRequirementType.class,
|
||||||
ProzessDokFuerKundeZumUnterschreiben.class,
|
ProzessDokToSignType.class,
|
||||||
ProzessDokFuerKunde.class
|
ProzessDokHandoutType.class
|
||||||
})
|
})
|
||||||
public abstract class ProzessDokumentBasisType {
|
public abstract class ProzessDokumentBasisType {
|
||||||
|
|
||||||
@XmlElement(name = "Dokumenttyp")
|
@XmlElement(name = "Dokumenttyp", required = true)
|
||||||
protected int dokumenttyp;
|
protected String dokumenttyp;
|
||||||
@XmlElement(name = "Beschreibung", required = true)
|
@XmlElement(name = "Beschreibung", required = true)
|
||||||
protected String beschreibung;
|
protected String beschreibung;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der dokumenttyp-Eigenschaft ab.
|
* Ruft den Wert der dokumenttyp-Eigenschaft ab.
|
||||||
*
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public int getDokumenttyp() {
|
public String getDokumenttyp() {
|
||||||
return dokumenttyp;
|
return dokumenttyp;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Legt den Wert der dokumenttyp-Eigenschaft fest.
|
* Legt den Wert der dokumenttyp-Eigenschaft fest.
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public void setDokumenttyp(int value) {
|
public void setDokumenttyp(String value) {
|
||||||
this.dokumenttyp = value;
|
this.dokumenttyp = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <complexType name="VersichertesInteresse_Type">
|
* <complexType name="VersichertesInteresse_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
* <attribute name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
@@ -36,23 +36,31 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
})
|
})
|
||||||
public abstract class VersichertesInteresseType {
|
public abstract class VersichertesInteresseType {
|
||||||
|
|
||||||
@XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
@XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
protected int lfnr;
|
protected Integer lfnr;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der lfnr-Eigenschaft ab.
|
* Ruft den Wert der lfnr-Eigenschaft ab.
|
||||||
*
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public int getLfnr() {
|
public Integer getLfnr() {
|
||||||
return lfnr;
|
return lfnr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Legt den Wert der lfnr-Eigenschaft fest.
|
* Legt den Wert der lfnr-Eigenschaft fest.
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public void setLfnr(int value) {
|
public void setLfnr(Integer value) {
|
||||||
this.lfnr = value;
|
this.lfnr = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Beschreibt die Zahlungsdaten
|
* Beschreibt die Zahlungsdaten in Antragsservices
|
||||||
*
|
*
|
||||||
* <p>Java-Klasse für Zahlungsdaten_Type complex type.
|
* <p>Java-Klasse für Zahlungsdaten_Type complex type.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -0,0 +1,210 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
||||||
|
|
||||||
|
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.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ Zahlweg
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ZahlwegImpl_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ZahlwegImpl_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Zahlweg_Type">
|
||||||
|
* <choice>
|
||||||
|
* <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||||
|
* <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
|
||||||
|
* <element name="Kundenkonto">
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </element>
|
||||||
|
* <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
|
||||||
|
* </choice>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ZahlwegImpl_Type", propOrder = {
|
||||||
|
"zahlungsanweisung",
|
||||||
|
"lastschrift",
|
||||||
|
"kundenkonto",
|
||||||
|
"kreditkarte"
|
||||||
|
})
|
||||||
|
public class ZahlwegImplType
|
||||||
|
extends ZahlwegType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Zahlungsanweisung")
|
||||||
|
protected Object zahlungsanweisung;
|
||||||
|
@XmlElement(name = "Lastschrift")
|
||||||
|
protected BankverbindungType lastschrift;
|
||||||
|
@XmlElement(name = "Kundenkonto")
|
||||||
|
protected ZahlwegImplType.Kundenkonto kundenkonto;
|
||||||
|
@XmlElement(name = "Kreditkarte")
|
||||||
|
protected KreditkarteType kreditkarte;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlungsanweisung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getZahlungsanweisung() {
|
||||||
|
return zahlungsanweisung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlungsanweisung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlungsanweisung(Object value) {
|
||||||
|
this.zahlungsanweisung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der lastschrift-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BankverbindungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BankverbindungType getLastschrift() {
|
||||||
|
return lastschrift;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der lastschrift-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BankverbindungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLastschrift(BankverbindungType value) {
|
||||||
|
this.lastschrift = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kundenkonto-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ZahlwegImplType.Kundenkonto }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZahlwegImplType.Kundenkonto getKundenkonto() {
|
||||||
|
return kundenkonto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kundenkonto-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ZahlwegImplType.Kundenkonto }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKundenkonto(ZahlwegImplType.Kundenkonto value) {
|
||||||
|
this.kundenkonto = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kreditkarte-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link KreditkarteType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public KreditkarteType getKreditkarte() {
|
||||||
|
return kreditkarte;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kreditkarte-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link KreditkarteType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKreditkarte(KreditkarteType value) {
|
||||||
|
this.kreditkarte = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für anonymous complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "")
|
||||||
|
public static class Kundenkonto {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected String kundenkontonummer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kundenkontonummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKundenkontonummer() {
|
||||||
|
return kundenkontonummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kundenkontonummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKundenkontonummer(String value) {
|
||||||
|
this.kundenkontonummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -3,8 +3,7 @@ package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|||||||
|
|
||||||
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.XmlAttribute;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
@@ -19,20 +18,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <complexType name="Zahlweg_Type">
|
* <complexType name="Zahlweg_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <choice>
|
|
||||||
* <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
|
||||||
* <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
|
|
||||||
* <element name="Kundenkonto">
|
|
||||||
* <complexType>
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </element>
|
|
||||||
* <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
|
|
||||||
* </choice>
|
|
||||||
* </restriction>
|
* </restriction>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
@@ -41,168 +26,11 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "Zahlweg_Type", propOrder = {
|
@XmlType(name = "Zahlweg_Type")
|
||||||
"zahlungsanweisung",
|
@XmlSeeAlso({
|
||||||
"lastschrift",
|
ZahlwegImplType.class
|
||||||
"kundenkonto",
|
|
||||||
"kreditkarte"
|
|
||||||
})
|
})
|
||||||
public class ZahlwegType {
|
public abstract class ZahlwegType {
|
||||||
|
|
||||||
@XmlElement(name = "Zahlungsanweisung")
|
|
||||||
protected Object zahlungsanweisung;
|
|
||||||
@XmlElement(name = "Lastschrift")
|
|
||||||
protected BankverbindungType lastschrift;
|
|
||||||
@XmlElement(name = "Kundenkonto")
|
|
||||||
protected ZahlwegType.Kundenkonto kundenkonto;
|
|
||||||
@XmlElement(name = "Kreditkarte")
|
|
||||||
protected KreditkarteType kreditkarte;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der zahlungsanweisung-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Object }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Object getZahlungsanweisung() {
|
|
||||||
return zahlungsanweisung;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der zahlungsanweisung-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Object }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setZahlungsanweisung(Object value) {
|
|
||||||
this.zahlungsanweisung = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der lastschrift-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BankverbindungType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BankverbindungType getLastschrift() {
|
|
||||||
return lastschrift;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der lastschrift-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BankverbindungType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setLastschrift(BankverbindungType value) {
|
|
||||||
this.lastschrift = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der kundenkonto-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link ZahlwegType.Kundenkonto }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ZahlwegType.Kundenkonto getKundenkonto() {
|
|
||||||
return kundenkonto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der kundenkonto-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link ZahlwegType.Kundenkonto }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setKundenkonto(ZahlwegType.Kundenkonto value) {
|
|
||||||
this.kundenkonto = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der kreditkarte-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link KreditkarteType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public KreditkarteType getKreditkarte() {
|
|
||||||
return kreditkarte;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der kreditkarte-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link KreditkarteType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setKreditkarte(KreditkarteType value) {
|
|
||||||
this.kreditkarte = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>Java-Klasse für anonymous complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType>
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "")
|
|
||||||
public static class Kundenkonto {
|
|
||||||
|
|
||||||
@XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
|
||||||
protected String kundenkontonummer;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der kundenkontonummer-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getKundenkontonummer() {
|
|
||||||
return kundenkontonummer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der kundenkontonummer-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setKundenkontonummer(String value) {
|
|
||||||
this.kundenkontonummer = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,102 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on1basis;
|
||||||
|
|
||||||
|
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.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessRequestType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="FormType" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Kontext" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"formType",
|
||||||
|
"kontext"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "CreateFormRequest")
|
||||||
|
public class CreateFormRequest
|
||||||
|
extends CommonProcessRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "FormType", required = true)
|
||||||
|
protected String formType;
|
||||||
|
@XmlElement(name = "Kontext")
|
||||||
|
protected List<String> kontext;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der formType-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFormType() {
|
||||||
|
return formType;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der formType-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFormType(String value) {
|
||||||
|
this.formType = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the kontext 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 kontext property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getKontext().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getKontext() {
|
||||||
|
if (kontext == null) {
|
||||||
|
kontext = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.kontext;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on1basis;
|
||||||
|
|
||||||
|
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_7_0.common.CommonProcessResponseType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.Formular;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Formular"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"formular"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "CreateFormResponse")
|
||||||
|
public class CreateFormResponse
|
||||||
|
extends CommonProcessResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Formular", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected Formular formular;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der formular-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Formular }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Formular getFormular() {
|
||||||
|
return formular;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der formular-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Formular }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFormular(Formular value) {
|
||||||
|
this.formular = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,95 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on1basis;
|
||||||
|
|
||||||
|
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_7_0.common.CommonRequestType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="ListCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Context" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"listCd",
|
||||||
|
"context"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "GetElementListRequest")
|
||||||
|
public class GetElementListRequest
|
||||||
|
extends CommonRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "ListCd", required = true)
|
||||||
|
protected String listCd;
|
||||||
|
@XmlElement(name = "Context")
|
||||||
|
protected String context;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der listCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getListCd() {
|
||||||
|
return listCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der listCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setListCd(String value) {
|
||||||
|
this.listCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der context-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getContext() {
|
||||||
|
return context;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der context-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setContext(String value) {
|
||||||
|
this.context = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,161 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on1basis;
|
||||||
|
|
||||||
|
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.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.EintragSchluessellisteType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="MinAnz" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"bezeichnung",
|
||||||
|
"beschreibungTxt",
|
||||||
|
"values",
|
||||||
|
"minAnz"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "GetElementListResponse")
|
||||||
|
public class GetElementListResponse
|
||||||
|
extends CommonResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Bezeichnung", required = true)
|
||||||
|
protected String bezeichnung;
|
||||||
|
@XmlElement(name = "BeschreibungTxt")
|
||||||
|
protected String beschreibungTxt;
|
||||||
|
@XmlElement(name = "Values")
|
||||||
|
protected List<EintragSchluessellisteType> values;
|
||||||
|
@XmlElement(name = "MinAnz")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer minAnz;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der minAnz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMinAnz() {
|
||||||
|
return minAnz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der minAnz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMinAnz(Integer value) {
|
||||||
|
this.minAnz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -201,6 +201,70 @@ public class ObjectFactory {
|
|||||||
return new GetStateSignaturesResponse();
|
return new GetStateSignaturesResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link GetElementListRequest }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GetElementListRequest createGetElementListRequest() {
|
||||||
|
return new GetElementListRequest();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link GetElementListResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GetElementListResponse createGetElementListResponse() {
|
||||||
|
return new GetElementListResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CreateFormRequest }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CreateFormRequest createCreateFormRequest() {
|
||||||
|
return new CreateFormRequest();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CreateFormResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CreateFormResponse createCreateFormResponse() {
|
||||||
|
return new CreateFormResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SubmitFormRequest }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SubmitFormRequest createSubmitFormRequest() {
|
||||||
|
return new SubmitFormRequest();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SubmitFormResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SubmitFormResponse createSubmitFormResponse() {
|
||||||
|
return new SubmitFormResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link UnderwriteDocumentRequest }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public UnderwriteDocumentRequest createUnderwriteDocumentRequest() {
|
||||||
|
return new UnderwriteDocumentRequest();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link UnderwriteDocumentResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public UnderwriteDocumentResponse createUnderwriteDocumentResponse() {
|
||||||
|
return new UnderwriteDocumentResponse();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link StateChangeEventType }
|
* Create an instance of {@link StateChangeEventType }
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -0,0 +1,68 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on1basis;
|
||||||
|
|
||||||
|
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_7_0.common.CommonProcessRequestType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.Formular;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Formular"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"formular"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "SubmitFormRequest")
|
||||||
|
public class SubmitFormRequest
|
||||||
|
extends CommonProcessRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Formular", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected Formular formular;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der formular-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Formular }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Formular getFormular() {
|
||||||
|
return formular;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der formular-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Formular }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFormular(Formular value) {
|
||||||
|
this.formular = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on1basis;
|
||||||
|
|
||||||
|
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_7_0.common.CommonProcessResponseType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.Formular;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Formular"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"formular"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "SubmitFormResponse")
|
||||||
|
public class SubmitFormResponse
|
||||||
|
extends CommonProcessResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Formular", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected Formular formular;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der formular-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Formular }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Formular getFormular() {
|
||||||
|
return formular;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der formular-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Formular }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFormular(Formular value) {
|
||||||
|
this.formular = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on1basis;
|
||||||
|
|
||||||
|
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.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.AutorisierungsAnforderungType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentDataType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="DokumentenVorlage" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
|
||||||
|
* <element name="AngeforderteUnterschriften" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"dokumentenVorlage",
|
||||||
|
"angeforderteUnterschriften"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "UnderwriteDocumentRequest")
|
||||||
|
public class UnderwriteDocumentRequest
|
||||||
|
extends CommonRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "DokumentenVorlage", required = true)
|
||||||
|
protected DokumentDataType dokumentenVorlage;
|
||||||
|
@XmlElement(name = "AngeforderteUnterschriften", required = true)
|
||||||
|
protected List<AutorisierungsAnforderungType> angeforderteUnterschriften;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dokumentenVorlage-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link DokumentDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DokumentDataType getDokumentenVorlage() {
|
||||||
|
return dokumentenVorlage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dokumentenVorlage-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link DokumentDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDokumentenVorlage(DokumentDataType value) {
|
||||||
|
this.dokumentenVorlage = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the angeforderteUnterschriften 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 angeforderteUnterschriften property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAngeforderteUnterschriften().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link AutorisierungsAnforderungType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<AutorisierungsAnforderungType> getAngeforderteUnterschriften() {
|
||||||
|
if (angeforderteUnterschriften == null) {
|
||||||
|
angeforderteUnterschriften = new ArrayList<AutorisierungsAnforderungType>();
|
||||||
|
}
|
||||||
|
return this.angeforderteUnterschriften;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on1basis;
|
||||||
|
|
||||||
|
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.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.AutorisierungType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentDataType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
|
||||||
|
* <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type" maxOccurs="unbounded"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"dokData",
|
||||||
|
"autorisierungen"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "UnderwriteDocumentResponse")
|
||||||
|
public class UnderwriteDocumentResponse
|
||||||
|
extends CommonResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "DokData", required = true)
|
||||||
|
protected DokumentDataType dokData;
|
||||||
|
@XmlElement(name = "Autorisierungen", required = true)
|
||||||
|
protected List<AutorisierungType> autorisierungen;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dokData-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link DokumentDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DokumentDataType getDokData() {
|
||||||
|
return dokData;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dokData-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link DokumentDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDokData(DokumentDataType value) {
|
||||||
|
this.dokData = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the autorisierungen 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 autorisierungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAutorisierungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link AutorisierungType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<AutorisierungType> getAutorisierungen() {
|
||||||
|
if (autorisierungen == null) {
|
||||||
|
autorisierungen = new ArrayList<AutorisierungType>();
|
||||||
|
}
|
||||||
|
return this.autorisierungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,100 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_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_7_0.common.CommonProcessRequestType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für BOAProcessRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BOAProcessRequest_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
|
||||||
|
* <element name="AendGrundbez" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BOAProcessRequest_Type", propOrder = {
|
||||||
|
"aenderungsgrund",
|
||||||
|
"aendGrundbez"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
SubmitApplicationRequestType.class,
|
||||||
|
CreateApplicationRequestType.class,
|
||||||
|
CreateOfferRequestType.class,
|
||||||
|
CalculateRequestType.class
|
||||||
|
})
|
||||||
|
public class BOAProcessRequestType
|
||||||
|
extends CommonProcessRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Aenderungsgrund")
|
||||||
|
protected String aenderungsgrund;
|
||||||
|
@XmlElement(name = "AendGrundbez")
|
||||||
|
protected String aendGrundbez;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aenderungsgrund-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAenderungsgrund() {
|
||||||
|
return aenderungsgrund;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aenderungsgrund-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAenderungsgrund(String value) {
|
||||||
|
this.aenderungsgrund = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aendGrundbez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAendGrundbez() {
|
||||||
|
return aendGrundbez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aendGrundbez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAendGrundbez(String value) {
|
||||||
|
this.aendGrundbez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,100 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_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_7_0.common.CommonProcessResponseType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für BOAProcessResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BOAProcessResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Aenderungsgrund" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
|
||||||
|
* <element name="AendGrundbez" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BOAProcessResponse_Type", propOrder = {
|
||||||
|
"aenderungsgrund",
|
||||||
|
"aendGrundbez"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
SubmitApplicationResponseType.class,
|
||||||
|
CreateApplicationResponseType.class,
|
||||||
|
CreateOfferResponseType.class,
|
||||||
|
CalculateResponseType.class
|
||||||
|
})
|
||||||
|
public class BOAProcessResponseType
|
||||||
|
extends CommonProcessResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Aenderungsgrund")
|
||||||
|
protected String aenderungsgrund;
|
||||||
|
@XmlElement(name = "AendGrundbez")
|
||||||
|
protected String aendGrundbez;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aenderungsgrund-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAenderungsgrund() {
|
||||||
|
return aenderungsgrund;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aenderungsgrund-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAenderungsgrund(String value) {
|
||||||
|
this.aenderungsgrund = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aendGrundbez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAendGrundbez() {
|
||||||
|
return aendGrundbez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aendGrundbez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAendGrundbez(String value) {
|
||||||
|
this.aendGrundbez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -6,7 +6,6 @@ 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_7_0.common.CommonProcessRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzRequestType;
|
||||||
|
|
||||||
|
|
||||||
@@ -20,7 +19,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzRequestType
|
|||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="CalculateRequest_Type">
|
* <complexType name="CalculateRequest_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
* <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
@@ -40,7 +39,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzRequestType
|
|||||||
CalculateRequestGenType.class
|
CalculateRequestGenType.class
|
||||||
})
|
})
|
||||||
public abstract class CalculateRequestType
|
public abstract class CalculateRequestType
|
||||||
extends CommonProcessRequestType
|
extends BOAProcessRequestType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "RequestUpselling", defaultValue = "false")
|
@XmlElement(name = "RequestUpselling", defaultValue = "false")
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzResponseType;
|
||||||
|
|
||||||
|
|
||||||
@@ -19,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzResponseTyp
|
|||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="CalculateResponse_Type">
|
* <complexType name="CalculateResponse_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
@@ -34,7 +33,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CalculateKfzResponseTyp
|
|||||||
CalculateResponseGenType.class
|
CalculateResponseGenType.class
|
||||||
})
|
})
|
||||||
public abstract class CalculateResponseType
|
public abstract class CalculateResponseType
|
||||||
extends CommonProcessResponseType
|
extends BOAProcessResponseType
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ 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_7_0.common.CommonProcessRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.DateianhangType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.DateianhangType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzRequestType;
|
||||||
|
|
||||||
@@ -23,7 +22,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzReq
|
|||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="CreateApplicationRequest_Type">
|
* <complexType name="CreateApplicationRequest_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
@@ -43,7 +42,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzReq
|
|||||||
CreateApplicationRequestGenType.class
|
CreateApplicationRequestGenType.class
|
||||||
})
|
})
|
||||||
public abstract class CreateApplicationRequestType
|
public abstract class CreateApplicationRequestType
|
||||||
extends CommonProcessRequestType
|
extends BOAProcessRequestType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Dateianhaenge")
|
@XmlElement(name = "Dateianhaenge")
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ 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_7_0.common.CommonProcessResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentBasisType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentBasisType;
|
||||||
@@ -25,7 +24,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzRes
|
|||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="CreateApplicationResponse_Type">
|
* <complexType name="CreateApplicationResponse_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
|
* <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
|
||||||
* <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
* <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||||
@@ -51,7 +50,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateApplicationKfzRes
|
|||||||
CreateApplicationResponseGenType.class
|
CreateApplicationResponseGenType.class
|
||||||
})
|
})
|
||||||
public abstract class CreateApplicationResponseType
|
public abstract class CreateApplicationResponseType
|
||||||
extends CommonProcessResponseType
|
extends BOAProcessResponseType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Antragstatus")
|
@XmlElement(name = "Antragstatus")
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzRequestType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzRequestType;
|
||||||
|
|
||||||
|
|
||||||
@@ -19,7 +18,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzRequestTy
|
|||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="CreateOfferRequest_Type">
|
* <complexType name="CreateOfferRequest_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
@@ -34,7 +33,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzRequestTy
|
|||||||
CreateOfferRequestGenType.class
|
CreateOfferRequestGenType.class
|
||||||
})
|
})
|
||||||
public abstract class CreateOfferRequestType
|
public abstract class CreateOfferRequestType
|
||||||
extends CommonProcessRequestType
|
extends BOAProcessRequestType
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ 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_7_0.common.CommonProcessResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentBasisType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentBasisType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseType;
|
||||||
@@ -24,7 +23,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseT
|
|||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="CreateOfferResponse_Type">
|
* <complexType name="CreateOfferResponse_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="DokumenteAnforderungen" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
@@ -46,7 +45,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseT
|
|||||||
CreateOfferResponseGenType.class
|
CreateOfferResponseGenType.class
|
||||||
})
|
})
|
||||||
public abstract class CreateOfferResponseType
|
public abstract class CreateOfferResponseType
|
||||||
extends CommonProcessResponseType
|
extends BOAProcessResponseType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Dokumente")
|
@XmlElement(name = "Dokumente")
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessRequestType;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Abstrakter Request um Daten eines Vertrags anzufordern
|
* Request um Daten eines Vertrags anzufordern
|
||||||
*
|
*
|
||||||
* <p>Java-Klasse für FetchPolicyRequest_Type complex type.
|
* <p>Java-Klasse für FetchPolicyRequest_Type complex type.
|
||||||
*
|
*
|
||||||
@@ -20,10 +20,8 @@ import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessRequestType;
|
|||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <choice>
|
* <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
|
||||||
* <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
|
* <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
|
||||||
* <element name="VertragsID" type="{urn:omds20}VertragsID"/>
|
|
||||||
* </choice>
|
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
@@ -37,11 +35,11 @@ import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessRequestType;
|
|||||||
"polizzennr",
|
"polizzennr",
|
||||||
"vertragsID"
|
"vertragsID"
|
||||||
})
|
})
|
||||||
public abstract class FetchPolicyRequestType
|
public class FetchPolicyRequestType
|
||||||
extends CommonProcessRequestType
|
extends CommonProcessRequestType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Polizzennr", defaultValue = "false")
|
@XmlElement(name = "Polizzennr", required = true, defaultValue = "false")
|
||||||
protected String polizzennr;
|
protected String polizzennr;
|
||||||
@XmlElement(name = "VertragsID")
|
@XmlElement(name = "VertragsID")
|
||||||
protected String vertragsID;
|
protected String vertragsID;
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common;
|
|||||||
|
|
||||||
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.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_7_0.common.CommonProcessResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessResponseType;
|
||||||
@@ -10,7 +11,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.FetchPolicyKfzResponse;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Abstrakter Response, der Daten zu einem Vertrag enthält
|
* Response, der Daten zu einem Vertrag enthält
|
||||||
*
|
*
|
||||||
* <p>Java-Klasse für FetchPolicyResponse_Type complex type.
|
* <p>Java-Klasse für FetchPolicyResponse_Type complex type.
|
||||||
*
|
*
|
||||||
@@ -20,6 +21,9 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.FetchPolicyKfzResponse;
|
|||||||
* <complexType name="FetchPolicyResponse_Type">
|
* <complexType name="FetchPolicyResponse_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Vertrag" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezVertrag_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
* </complexType>
|
* </complexType>
|
||||||
@@ -28,13 +32,41 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.FetchPolicyKfzResponse;
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "FetchPolicyResponse_Type")
|
@XmlType(name = "FetchPolicyResponse_Type", propOrder = {
|
||||||
|
"vertrag"
|
||||||
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
FetchPolicyKfzResponse.class
|
FetchPolicyKfzResponse.class
|
||||||
})
|
})
|
||||||
public abstract class FetchPolicyResponseType
|
public class FetchPolicyResponseType
|
||||||
extends CommonProcessResponseType
|
extends CommonProcessResponseType
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Vertrag")
|
||||||
|
protected SpezVertragType vertrag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vertrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezVertragType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezVertragType getVertrag() {
|
||||||
|
return vertrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vertrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezVertragType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVertrag(SpezVertragType value) {
|
||||||
|
this.vertrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,6 +34,22 @@ public class ObjectFactory {
|
|||||||
public ObjectFactory() {
|
public ObjectFactory() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link StartPolicyChangeRequest }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public StartPolicyChangeRequest createStartPolicyChangeRequest() {
|
||||||
|
return new StartPolicyChangeRequest();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link StartPolicyChangeRequest.Vertrag }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public StartPolicyChangeRequest.Vertrag createStartPolicyChangeRequestVertrag() {
|
||||||
|
return new StartPolicyChangeRequest.Vertrag();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link GetApplicationDocumentRequestType }
|
* Create an instance of {@link GetApplicationDocumentRequestType }
|
||||||
*
|
*
|
||||||
@@ -50,6 +66,54 @@ public class ObjectFactory {
|
|||||||
return new GetApplicationDocumentResponseType();
|
return new GetApplicationDocumentResponseType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link StartPolicyChangeResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public StartPolicyChangeResponse createStartPolicyChangeResponse() {
|
||||||
|
return new StartPolicyChangeResponse();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BOAProcessRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BOAProcessRequestType createBOAProcessRequestType() {
|
||||||
|
return new BOAProcessRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BOAProcessResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BOAProcessResponseType createBOAProcessResponseType() {
|
||||||
|
return new BOAProcessResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link FetchPolicyRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FetchPolicyRequestType createFetchPolicyRequestType() {
|
||||||
|
return new FetchPolicyRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link FetchPolicyResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FetchPolicyResponseType createFetchPolicyResponseType() {
|
||||||
|
return new FetchPolicyResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link StartPolicyChangeRequest.Vertrag.Sparten }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public StartPolicyChangeRequest.Vertrag.Sparten createStartPolicyChangeRequestVertragSparten() {
|
||||||
|
return new StartPolicyChangeRequest.Vertrag.Sparten();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >}}
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ import unfall.on2antrag._0._4.v1.omds3types.types.omds.vvo.at.SpezAntragUnfallTy
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist
|
* Abstrakter Typ für Antrag, welcher auf SpezAntragBasis_Type ergänzt und der bei Request und bei Response gleich ist
|
||||||
*
|
*
|
||||||
* <p>Java-Klasse für SpezAntrag_Type complex type.
|
* <p>Java-Klasse für SpezAntrag_Type complex type.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -0,0 +1,367 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_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.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessRequestType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Vertrag" maxOccurs="unbounded">
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
|
||||||
|
* <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
|
||||||
|
* <element name="Sparten" maxOccurs="unbounded">
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type"/>
|
||||||
|
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="AendGrundCd" type="{urn:omds20}AendGrundCd_Type"/>
|
||||||
|
* <element name="AendGrundbez" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"vertrag"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "StartPolicyChangeRequest")
|
||||||
|
public class StartPolicyChangeRequest
|
||||||
|
extends CommonProcessRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Vertrag", required = true)
|
||||||
|
protected List<StartPolicyChangeRequest.Vertrag> vertrag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the vertrag 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 vertrag property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVertrag().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link StartPolicyChangeRequest.Vertrag }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<StartPolicyChangeRequest.Vertrag> getVertrag() {
|
||||||
|
if (vertrag == null) {
|
||||||
|
vertrag = new ArrayList<StartPolicyChangeRequest.Vertrag>();
|
||||||
|
}
|
||||||
|
return this.vertrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für anonymous complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
|
||||||
|
* <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
|
||||||
|
* <element name="Sparten" maxOccurs="unbounded">
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type"/>
|
||||||
|
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="AendGrundCd" type="{urn:omds20}AendGrundCd_Type"/>
|
||||||
|
* <element name="AendGrundbez" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"polizzennr",
|
||||||
|
"vertragsID",
|
||||||
|
"sparten"
|
||||||
|
})
|
||||||
|
public static class Vertrag {
|
||||||
|
|
||||||
|
@XmlElement(name = "Polizzennr", required = true)
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlElement(name = "VertragsID")
|
||||||
|
protected String vertragsID;
|
||||||
|
@XmlElement(name = "Sparten", required = true)
|
||||||
|
protected List<StartPolicyChangeRequest.Vertrag.Sparten> sparten;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polizzennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolizzennr() {
|
||||||
|
return polizzennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polizzennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolizzennr(String value) {
|
||||||
|
this.polizzennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vertragsID-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVertragsID() {
|
||||||
|
return vertragsID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vertragsID-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVertragsID(String value) {
|
||||||
|
this.vertragsID = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the sparten 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 sparten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getSparten().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link StartPolicyChangeRequest.Vertrag.Sparten }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<StartPolicyChangeRequest.Vertrag.Sparten> getSparten() {
|
||||||
|
if (sparten == null) {
|
||||||
|
sparten = new ArrayList<StartPolicyChangeRequest.Vertrag.Sparten>();
|
||||||
|
}
|
||||||
|
return this.sparten;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für anonymous complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type"/>
|
||||||
|
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="AendGrundCd" type="{urn:omds20}AendGrundCd_Type"/>
|
||||||
|
* <element name="AendGrundbez" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"spartenCd",
|
||||||
|
"id",
|
||||||
|
"aendGrundCd",
|
||||||
|
"aendGrundbez"
|
||||||
|
})
|
||||||
|
public static class Sparten {
|
||||||
|
|
||||||
|
@XmlElement(name = "SpartenCd", required = true)
|
||||||
|
protected String spartenCd;
|
||||||
|
@XmlElement(name = "Id")
|
||||||
|
protected String id;
|
||||||
|
@XmlElement(name = "AendGrundCd", required = true)
|
||||||
|
protected String aendGrundCd;
|
||||||
|
@XmlElement(name = "AendGrundbez")
|
||||||
|
protected String aendGrundbez;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der spartenCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSpartenCd() {
|
||||||
|
return spartenCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der spartenCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSpartenCd(String value) {
|
||||||
|
this.spartenCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der id-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der id-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setId(String value) {
|
||||||
|
this.id = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aendGrundCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAendGrundCd() {
|
||||||
|
return aendGrundCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aendGrundCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAendGrundCd(String value) {
|
||||||
|
this.aendGrundCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aendGrundbez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAendGrundbez() {
|
||||||
|
return aendGrundbez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aendGrundbez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAendGrundbez(String value) {
|
||||||
|
this.aendGrundbez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_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.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonProcessResponseType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Vertrag" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezVertrag_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"vertrag"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "StartPolicyChangeResponse")
|
||||||
|
public class StartPolicyChangeResponse
|
||||||
|
extends CommonProcessResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Vertrag")
|
||||||
|
protected SpezVertragType vertrag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vertrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezVertragType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezVertragType getVertrag() {
|
||||||
|
return vertrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vertrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezVertragType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVertrag(SpezVertragType value) {
|
||||||
|
this.vertrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -8,7 +8,6 @@ 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_7_0.common.CommonProcessRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.DateianhangType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.DateianhangType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentType;
|
||||||
@@ -25,7 +24,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzReq
|
|||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="SubmitApplicationRequest_Type">
|
* <complexType name="SubmitApplicationRequest_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessRequest_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
@@ -49,7 +48,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzReq
|
|||||||
SubmitApplicationRequestGenType.class
|
SubmitApplicationRequestGenType.class
|
||||||
})
|
})
|
||||||
public abstract class SubmitApplicationRequestType
|
public abstract class SubmitApplicationRequestType
|
||||||
extends CommonProcessRequestType
|
extends BOAProcessRequestType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Dateianhaenge")
|
@XmlElement(name = "Dateianhaenge")
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ 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_7_0.common.CommonProcessResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentBasisType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentBasisType;
|
||||||
@@ -25,7 +24,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzRes
|
|||||||
* <pre>
|
* <pre>
|
||||||
* <complexType name="SubmitApplicationResponse_Type">
|
* <complexType name="SubmitApplicationResponse_Type">
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOAProcessResponse_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
|
* <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
|
||||||
* <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
|
* <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
|
||||||
@@ -51,7 +50,7 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.SubmitApplicationKfzRes
|
|||||||
SubmitApplicationResponseGenType.class
|
SubmitApplicationResponseGenType.class
|
||||||
})
|
})
|
||||||
public abstract class SubmitApplicationResponseType
|
public abstract class SubmitApplicationResponseType
|
||||||
extends CommonProcessResponseType
|
extends BOAProcessResponseType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Antragstatus")
|
@XmlElement(name = "Antragstatus")
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz;
|
package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz;
|
||||||
|
|
||||||
|
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.XmlRootElement;
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.FetchPolicyResponseType;
|
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.FetchPolicyResponseType;
|
||||||
@@ -30,38 +33,53 @@ import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.FetchPolicyResponseT
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "", propOrder = {
|
@XmlType(name = "", propOrder = {
|
||||||
"vertrag"
|
"rest"
|
||||||
})
|
})
|
||||||
@XmlRootElement(name = "FetchPolicyKfzResponse")
|
@XmlRootElement(name = "FetchPolicyKfzResponse")
|
||||||
public class FetchPolicyKfzResponse
|
public class FetchPolicyKfzResponse
|
||||||
extends FetchPolicyResponseType
|
extends FetchPolicyResponseType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Vertrag")
|
@XmlElementRef(name = "Vertrag", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", type = JAXBElement.class, required = false)
|
||||||
protected SpezVertragKfzType vertrag;
|
protected List<JAXBElement<SpezVertragKfzType>> rest;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der vertrag-Eigenschaft ab.
|
* Ruft das restliche Contentmodell ab.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||||
|
* Der Feldname "Vertrag" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
||||||
|
* Zeile 425 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_7_0/omds3_ON2_Antrag_Kfz.xsd
|
||||||
|
* Zeile 571 von file:/C:/Users/jensb/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_7_0/omds3_ON2_Antrag_Common.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 SpezVertragKfzType }{@code >}
|
||||||
*
|
*
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link SpezVertragKfzType }
|
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public SpezVertragKfzType getVertrag() {
|
public List<JAXBElement<SpezVertragKfzType>> getRest() {
|
||||||
return vertrag;
|
if (rest == null) {
|
||||||
}
|
rest = new ArrayList<JAXBElement<SpezVertragKfzType>>();
|
||||||
|
}
|
||||||
/**
|
return this.rest;
|
||||||
* Legt den Wert der vertrag-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link SpezVertragKfzType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setVertrag(SpezVertragKfzType value) {
|
|
||||||
this.vertrag = value;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ public class ObjectFactory {
|
|||||||
private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzRequest");
|
private final static QName _SubmitApplicationKfzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzRequest");
|
||||||
private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzResponse");
|
private final static QName _SubmitApplicationKfzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "SubmitApplicationKfzResponse");
|
||||||
private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "FahrzeugRefLfdNr");
|
private final static QName _FahrzeugRefLfdNr_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "FahrzeugRefLfdNr");
|
||||||
|
private final static QName _FetchPolicyKfzResponseVertrag_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", "Vertrag");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz
|
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz
|
||||||
@@ -373,4 +374,13 @@ public class ObjectFactory {
|
|||||||
return new JAXBElement<String>(_FahrzeugRefLfdNr_QNAME, String.class, null, value);
|
return new JAXBElement<String>(_FahrzeugRefLfdNr_QNAME, String.class, null, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link SpezVertragKfzType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", name = "Vertrag", scope = FetchPolicyKfzResponse.class)
|
||||||
|
public JAXBElement<SpezVertragKfzType> createFetchPolicyKfzResponseVertrag(SpezVertragKfzType value) {
|
||||||
|
return new JAXBElement<SpezVertragKfzType>(_FetchPolicyKfzResponseVertrag_QNAME, SpezVertragKfzType.class, FetchPolicyKfzResponse.class, value);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,189 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden;
|
||||||
|
|
||||||
|
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.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.ZahlwegType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
|
||||||
|
* <element name="Betrag" type="{urn:omds20}decimal"/>
|
||||||
|
* <element name="Grund" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Zahlweg" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlweg_Type"/>
|
||||||
|
* <element name="Beleg" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"polizzennr",
|
||||||
|
"betrag",
|
||||||
|
"grund",
|
||||||
|
"zahlweg",
|
||||||
|
"beleg"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "BelegeinreichungRequest")
|
||||||
|
public class BelegeinreichungRequest
|
||||||
|
extends CommonRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Polizzennr", required = true)
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlElement(name = "Betrag", required = true)
|
||||||
|
protected BigDecimal betrag;
|
||||||
|
@XmlElement(name = "Grund")
|
||||||
|
protected String grund;
|
||||||
|
@XmlElement(name = "Zahlweg", required = true)
|
||||||
|
protected ZahlwegType zahlweg;
|
||||||
|
@XmlElement(name = "Beleg", required = true)
|
||||||
|
protected List<ProzessDokumentType> beleg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polizzennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolizzennr() {
|
||||||
|
return polizzennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polizzennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolizzennr(String value) {
|
||||||
|
this.polizzennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der betrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getBetrag() {
|
||||||
|
return betrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der betrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBetrag(BigDecimal value) {
|
||||||
|
this.betrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der grund-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getGrund() {
|
||||||
|
return grund;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der grund-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGrund(String value) {
|
||||||
|
this.grund = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlweg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ZahlwegType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZahlwegType getZahlweg() {
|
||||||
|
return zahlweg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlweg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ZahlwegType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlweg(ZahlwegType value) {
|
||||||
|
this.zahlweg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the beleg 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 beleg property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getBeleg().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ProzessDokumentType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ProzessDokumentType> getBeleg() {
|
||||||
|
if (beleg == null) {
|
||||||
|
beleg = new ArrayList<ProzessDokumentType>();
|
||||||
|
}
|
||||||
|
return this.beleg;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "")
|
||||||
|
@XmlRootElement(name = "BelegeinreichungResponse")
|
||||||
|
public class BelegeinreichungResponse
|
||||||
|
extends CommonResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,165 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden;
|
||||||
|
|
||||||
|
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.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.PersonType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertesInteresseType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
|
||||||
|
* <element name="VersInteresse" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" minOccurs="0"/>
|
||||||
|
* <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"versicherungsnehmer",
|
||||||
|
"polizzennr",
|
||||||
|
"versInteresse",
|
||||||
|
"eigenschaftCd"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "DeckungsauskunftRequest")
|
||||||
|
public class DeckungsauskunftRequest
|
||||||
|
extends CommonRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Versicherungsnehmer")
|
||||||
|
protected List<PersonType> versicherungsnehmer;
|
||||||
|
@XmlElement(name = "Polizzennr")
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlElement(name = "VersInteresse")
|
||||||
|
protected VersichertesInteresseType versInteresse;
|
||||||
|
@XmlElement(name = "EigenschaftCd")
|
||||||
|
protected List<String> eigenschaftCd;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the versicherungsnehmer 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 versicherungsnehmer property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVersicherungsnehmer().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link PersonType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<PersonType> getVersicherungsnehmer() {
|
||||||
|
if (versicherungsnehmer == null) {
|
||||||
|
versicherungsnehmer = new ArrayList<PersonType>();
|
||||||
|
}
|
||||||
|
return this.versicherungsnehmer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polizzennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolizzennr() {
|
||||||
|
return polizzennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polizzennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolizzennr(String value) {
|
||||||
|
this.polizzennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versInteresse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VersichertesInteresseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VersichertesInteresseType getVersInteresse() {
|
||||||
|
return versInteresse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versInteresse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VersichertesInteresseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersInteresse(VersichertesInteresseType value) {
|
||||||
|
this.versInteresse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the eigenschaftCd 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 eigenschaftCd property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getEigenschaftCd().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getEigenschaftCd() {
|
||||||
|
if (eigenschaftCd == null) {
|
||||||
|
eigenschaftCd = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.eigenschaftCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,259 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden;
|
||||||
|
|
||||||
|
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.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.PersonType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertesInteresseType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Versicherungsnehmer" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
|
||||||
|
* <element name="VersInteresse" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" minOccurs="0"/>
|
||||||
|
* <element name="Auskuenfte" maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Antwort" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"versicherungsnehmer",
|
||||||
|
"polizzennr",
|
||||||
|
"versInteresse",
|
||||||
|
"auskuenfte"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "DeckungsauskunftResponse")
|
||||||
|
public class DeckungsauskunftResponse
|
||||||
|
extends CommonResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Versicherungsnehmer")
|
||||||
|
protected List<PersonType> versicherungsnehmer;
|
||||||
|
@XmlElement(name = "Polizzennr")
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlElement(name = "VersInteresse")
|
||||||
|
protected VersichertesInteresseType versInteresse;
|
||||||
|
@XmlElement(name = "Auskuenfte")
|
||||||
|
protected List<DeckungsauskunftResponse.Auskuenfte> auskuenfte;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the versicherungsnehmer 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 versicherungsnehmer property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVersicherungsnehmer().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link PersonType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<PersonType> getVersicherungsnehmer() {
|
||||||
|
if (versicherungsnehmer == null) {
|
||||||
|
versicherungsnehmer = new ArrayList<PersonType>();
|
||||||
|
}
|
||||||
|
return this.versicherungsnehmer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polizzennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolizzennr() {
|
||||||
|
return polizzennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polizzennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolizzennr(String value) {
|
||||||
|
this.polizzennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versInteresse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VersichertesInteresseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VersichertesInteresseType getVersInteresse() {
|
||||||
|
return versInteresse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versInteresse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VersichertesInteresseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersInteresse(VersichertesInteresseType value) {
|
||||||
|
this.versInteresse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the auskuenfte 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 auskuenfte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAuskuenfte().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link DeckungsauskunftResponse.Auskuenfte }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<DeckungsauskunftResponse.Auskuenfte> getAuskuenfte() {
|
||||||
|
if (auskuenfte == null) {
|
||||||
|
auskuenfte = new ArrayList<DeckungsauskunftResponse.Auskuenfte>();
|
||||||
|
}
|
||||||
|
return this.auskuenfte;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für anonymous complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="EigenschaftCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Antwort" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"eigenschaftCd",
|
||||||
|
"antwort"
|
||||||
|
})
|
||||||
|
public static class Auskuenfte {
|
||||||
|
|
||||||
|
@XmlElement(name = "EigenschaftCd", required = true)
|
||||||
|
protected String eigenschaftCd;
|
||||||
|
@XmlElement(name = "Antwort", required = true)
|
||||||
|
protected Object antwort;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der eigenschaftCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getEigenschaftCd() {
|
||||||
|
return eigenschaftCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der eigenschaftCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEigenschaftCd(String value) {
|
||||||
|
this.eigenschaftCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antwort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getAntwort() {
|
||||||
|
return antwort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antwort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntwort(Object value) {
|
||||||
|
this.antwort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -44,6 +44,14 @@ public class ObjectFactory {
|
|||||||
public ObjectFactory() {
|
public ObjectFactory() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link DeckungsauskunftResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DeckungsauskunftResponse createDeckungsauskunftResponse() {
|
||||||
|
return new DeckungsauskunftResponse();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link SpartendetailSchadenKrankenType }
|
* Create an instance of {@link SpartendetailSchadenKrankenType }
|
||||||
*
|
*
|
||||||
@@ -132,6 +140,38 @@ public class ObjectFactory {
|
|||||||
return new SchadenzuordnungType();
|
return new SchadenzuordnungType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link DeckungsauskunftRequest }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DeckungsauskunftRequest createDeckungsauskunftRequest() {
|
||||||
|
return new DeckungsauskunftRequest();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link DeckungsauskunftResponse.Auskuenfte }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DeckungsauskunftResponse.Auskuenfte createDeckungsauskunftResponseAuskuenfte() {
|
||||||
|
return new DeckungsauskunftResponse.Auskuenfte();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BelegeinreichungRequest }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BelegeinreichungRequest createBelegeinreichungRequest() {
|
||||||
|
return new BelegeinreichungRequest();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BelegeinreichungResponse }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BelegeinreichungResponse createBelegeinreichungResponse() {
|
||||||
|
return new BelegeinreichungResponse();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link SearchClaimResponseResultType }
|
* Create an instance of {@link SearchClaimResponseResultType }
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -0,0 +1,69 @@
|
|||||||
|
|
||||||
|
package kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.common.ElementarproduktGenerischType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlRegistry;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This object contains factory methods for each
|
||||||
|
* Java content interface and Java element interface
|
||||||
|
* generated in the kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at 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: kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.common.ProduktMitVpType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.common.ProduktGenerischType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.VerkaufsproduktGenerischType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_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 kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at;
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.CalculateRequestGenType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ des Requestobjekts für eine Berechnung Leben
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CalculateLebenRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CalculateLebenRequest_Type">
|
||||||
|
* <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-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CalculateLebenRequest_Type", propOrder = {
|
||||||
|
"berechnungsanfrage"
|
||||||
|
})
|
||||||
|
public class CalculateLebenRequestType
|
||||||
|
extends CalculateRequestGenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Berechnungsanfrage", required = true)
|
||||||
|
protected SpezBerechnungLebenType berechnungsanfrage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der berechnungsanfrage-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezBerechnungLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezBerechnungLebenType getBerechnungsanfrage() {
|
||||||
|
return berechnungsanfrage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der berechnungsanfrage-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezBerechnungLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBerechnungsanfrage(SpezBerechnungLebenType value) {
|
||||||
|
this.berechnungsanfrage = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,102 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.CalculateResponseGenType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ des Responseobjekts für eine Leben-Berechnung
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CalculateLebenResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CalculateLebenResponse_Type">
|
||||||
|
* <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-5-0.on2antrag.leben}SpezBerechnungLeben_Type"/>
|
||||||
|
* <element name="Upsellingvarianten" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}SpezBerechnungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CalculateLebenResponse_Type", propOrder = {
|
||||||
|
"berechnungsantwort",
|
||||||
|
"upsellingvarianten"
|
||||||
|
})
|
||||||
|
public class CalculateLebenResponseType
|
||||||
|
extends CalculateResponseGenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Berechnungsantwort", required = true)
|
||||||
|
protected SpezBerechnungLebenType berechnungsantwort;
|
||||||
|
@XmlElement(name = "Upsellingvarianten")
|
||||||
|
protected List<SpezBerechnungLebenType> upsellingvarianten;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der berechnungsantwort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezBerechnungLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezBerechnungLebenType getBerechnungsantwort() {
|
||||||
|
return berechnungsantwort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der berechnungsantwort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezBerechnungLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBerechnungsantwort(SpezBerechnungLebenType value) {
|
||||||
|
this.berechnungsantwort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the upsellingvarianten 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 upsellingvarianten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getUpsellingvarianten().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link SpezBerechnungLebenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<SpezBerechnungLebenType> getUpsellingvarianten() {
|
||||||
|
if (upsellingvarianten == null) {
|
||||||
|
upsellingvarianten = new ArrayList<SpezBerechnungLebenType>();
|
||||||
|
}
|
||||||
|
return this.upsellingvarianten;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.CreateApplicationRequestGenType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type des Requestobjekts für die Erstellung eines Leben-Antrags
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CreateApplicationLebenRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CreateApplicationLebenRequest_Type">
|
||||||
|
* <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-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CreateApplicationLebenRequest_Type", propOrder = {
|
||||||
|
"antragsanfrage"
|
||||||
|
})
|
||||||
|
public class CreateApplicationLebenRequestType
|
||||||
|
extends CreateApplicationRequestGenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Antragsanfrage", required = true)
|
||||||
|
protected SpezAntragLebenType antragsanfrage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezAntragLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezAntragLebenType getAntragsanfrage() {
|
||||||
|
return antragsanfrage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antragsanfrage-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezAntragLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntragsanfrage(SpezAntragLebenType value) {
|
||||||
|
this.antragsanfrage = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.CreateApplicationResponseGenType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type des Responseobjekts für die Erstellung eines Leben-Antrags
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CreateApplicationLebenResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CreateApplicationLebenResponse_Type">
|
||||||
|
* <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-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CreateApplicationLebenResponse_Type", propOrder = {
|
||||||
|
"antragsantwort"
|
||||||
|
})
|
||||||
|
public class CreateApplicationLebenResponseType
|
||||||
|
extends CreateApplicationResponseGenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Antragsantwort", required = true)
|
||||||
|
protected SpezAntragLebenType antragsantwort;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antragsantwort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezAntragLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezAntragLebenType getAntragsantwort() {
|
||||||
|
return antragsantwort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antragsantwort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezAntragLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntragsantwort(SpezAntragLebenType value) {
|
||||||
|
this.antragsantwort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.CreateOfferRequestGenType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ des Requestobjekts für eine Erstellung eines Leben-Offerts
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CreateOfferLebenRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CreateOfferLebenRequest_Type">
|
||||||
|
* <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-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CreateOfferLebenRequest_Type", propOrder = {
|
||||||
|
"offertanfrage"
|
||||||
|
})
|
||||||
|
public class CreateOfferLebenRequestType
|
||||||
|
extends CreateOfferRequestGenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Offertanfrage", required = true)
|
||||||
|
protected SpezOffertLebenType offertanfrage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der offertanfrage-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezOffertLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezOffertLebenType getOffertanfrage() {
|
||||||
|
return offertanfrage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der offertanfrage-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezOffertLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOffertanfrage(SpezOffertLebenType value) {
|
||||||
|
this.offertanfrage = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.CreateOfferResponseGenType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type des Responseobjekts für eine Erstellung eines Leben-Offerts
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CreateOfferLebenResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CreateOfferLebenResponse_Type">
|
||||||
|
* <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-5-0.on2antrag.leben}SpezOffertLeben_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CreateOfferLebenResponse_Type", propOrder = {
|
||||||
|
"offertantwort"
|
||||||
|
})
|
||||||
|
public class CreateOfferLebenResponseType
|
||||||
|
extends CreateOfferResponseGenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Offertantwort", required = true)
|
||||||
|
protected SpezOffertLebenType offertantwort;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der offertantwort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezOffertLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezOffertLebenType getOffertantwort() {
|
||||||
|
return offertantwort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der offertantwort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezOffertLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOffertantwort(SpezOffertLebenType value) {
|
||||||
|
this.offertantwort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,318 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
import javax.xml.bind.JAXBElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementDecl;
|
||||||
|
import javax.xml.bind.annotation.XmlRegistry;
|
||||||
|
import javax.xml.namespace.QName;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This object contains factory methods for each
|
||||||
|
* Java content interface and Java element interface
|
||||||
|
* generated in the leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at package.
|
||||||
|
* <p>An ObjectFactory allows you to programatically
|
||||||
|
* construct new instances of the Java representation
|
||||||
|
* for XML content. The Java representation of XML
|
||||||
|
* content can consist of schema derived interfaces
|
||||||
|
* and classes representing the binding of schema
|
||||||
|
* type definitions, element declarations and model
|
||||||
|
* groups. Factory methods for each of these are
|
||||||
|
* provided in this class.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlRegistry
|
||||||
|
public class ObjectFactory {
|
||||||
|
|
||||||
|
private final static QName _CalculateLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenRequest");
|
||||||
|
private final static QName _CalculateLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CalculateLebenResponse");
|
||||||
|
private final static QName _CreateOfferLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenRequest");
|
||||||
|
private final static QName _CreateOfferLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateOfferLebenResponse");
|
||||||
|
private final static QName _CreateApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenRequest");
|
||||||
|
private final static QName _CreateApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "CreateApplicationLebenResponse");
|
||||||
|
private final static QName _SubmitApplicationLebenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenRequest");
|
||||||
|
private final static QName _SubmitApplicationLebenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "SubmitApplicationLebenResponse");
|
||||||
|
private final static QName _ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", "Versicherungssumme");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjectFactory() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CalculateLebenRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CalculateLebenRequestType createCalculateLebenRequestType() {
|
||||||
|
return new CalculateLebenRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CalculateLebenResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CalculateLebenResponseType createCalculateLebenResponseType() {
|
||||||
|
return new CalculateLebenResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CreateOfferLebenRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CreateOfferLebenRequestType createCreateOfferLebenRequestType() {
|
||||||
|
return new CreateOfferLebenRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CreateOfferLebenResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CreateOfferLebenResponseType createCreateOfferLebenResponseType() {
|
||||||
|
return new CreateOfferLebenResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CreateApplicationLebenRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CreateApplicationLebenRequestType createCreateApplicationLebenRequestType() {
|
||||||
|
return new CreateApplicationLebenRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CreateApplicationLebenResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CreateApplicationLebenResponseType createCreateApplicationLebenResponseType() {
|
||||||
|
return new CreateApplicationLebenResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SubmitApplicationLebenRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SubmitApplicationLebenRequestType createSubmitApplicationLebenRequestType() {
|
||||||
|
return new SubmitApplicationLebenRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SubmitApplicationLebenResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SubmitApplicationLebenResponseType createSubmitApplicationLebenResponseType() {
|
||||||
|
return new SubmitApplicationLebenResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VerkaufsproduktLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerkaufsproduktLebenType createVerkaufsproduktLebenType() {
|
||||||
|
return new VerkaufsproduktLebenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ProduktLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ProduktLebenType createProduktLebenType() {
|
||||||
|
return new ProduktLebenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link TarifLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public TarifLebenType createTarifLebenType() {
|
||||||
|
return new TarifLebenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZusatzversicherungLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZusatzversicherungLebenType createZusatzversicherungLebenType() {
|
||||||
|
return new ZusatzversicherungLebenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZusatzversicherungBerufsunfaehigkeitType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZusatzversicherungBerufsunfaehigkeitType createZusatzversicherungBerufsunfaehigkeitType() {
|
||||||
|
return new ZusatzversicherungBerufsunfaehigkeitType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZusatzversicherungErwerbsunfaehigkeitType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZusatzversicherungErwerbsunfaehigkeitType createZusatzversicherungErwerbsunfaehigkeitType() {
|
||||||
|
return new ZusatzversicherungErwerbsunfaehigkeitType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZusatzversicherungPraemienuebernahmeAblebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZusatzversicherungPraemienuebernahmeAblebenType createZusatzversicherungPraemienuebernahmeAblebenType() {
|
||||||
|
return new ZusatzversicherungPraemienuebernahmeAblebenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZusatzversicherungUnfalltodType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZusatzversicherungUnfalltodType createZusatzversicherungUnfalltodType() {
|
||||||
|
return new ZusatzversicherungUnfalltodType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZusatzversicherungUnfallinvaliditaetType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZusatzversicherungUnfallinvaliditaetType createZusatzversicherungUnfallinvaliditaetType() {
|
||||||
|
return new ZusatzversicherungUnfallinvaliditaetType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZusatzproduktLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZusatzproduktLebenType createZusatzproduktLebenType() {
|
||||||
|
return new ZusatzproduktLebenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link RentenoptionType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public RentenoptionType createRentenoptionType() {
|
||||||
|
return new RentenoptionType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VersicherungssummeZusatzbausteinType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VersicherungssummeZusatzbausteinType createVersicherungssummeZusatzbausteinType() {
|
||||||
|
return new VersicherungssummeZusatzbausteinType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SpezBerechnungLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezBerechnungLebenType createSpezBerechnungLebenType() {
|
||||||
|
return new SpezBerechnungLebenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SpezOffertLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezOffertLebenType createSpezOffertLebenType() {
|
||||||
|
return new SpezOffertLebenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SpezAntragLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezAntragLebenType createSpezAntragLebenType() {
|
||||||
|
return new SpezAntragLebenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenRequestType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenRequest")
|
||||||
|
public JAXBElement<CalculateLebenRequestType> createCalculateLebenRequest(CalculateLebenRequestType value) {
|
||||||
|
return new JAXBElement<CalculateLebenRequestType>(_CalculateLebenRequest_QNAME, CalculateLebenRequestType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateLebenResponseType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CalculateLebenResponse")
|
||||||
|
public JAXBElement<CalculateLebenResponseType> createCalculateLebenResponse(CalculateLebenResponseType value) {
|
||||||
|
return new JAXBElement<CalculateLebenResponseType>(_CalculateLebenResponse_QNAME, CalculateLebenResponseType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenRequestType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenRequest")
|
||||||
|
public JAXBElement<CreateOfferLebenRequestType> createCreateOfferLebenRequest(CreateOfferLebenRequestType value) {
|
||||||
|
return new JAXBElement<CreateOfferLebenRequestType>(_CreateOfferLebenRequest_QNAME, CreateOfferLebenRequestType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferLebenResponseType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateOfferLebenResponse")
|
||||||
|
public JAXBElement<CreateOfferLebenResponseType> createCreateOfferLebenResponse(CreateOfferLebenResponseType value) {
|
||||||
|
return new JAXBElement<CreateOfferLebenResponseType>(_CreateOfferLebenResponse_QNAME, CreateOfferLebenResponseType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenRequestType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenRequest")
|
||||||
|
public JAXBElement<CreateApplicationLebenRequestType> createCreateApplicationLebenRequest(CreateApplicationLebenRequestType value) {
|
||||||
|
return new JAXBElement<CreateApplicationLebenRequestType>(_CreateApplicationLebenRequest_QNAME, CreateApplicationLebenRequestType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationLebenResponseType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "CreateApplicationLebenResponse")
|
||||||
|
public JAXBElement<CreateApplicationLebenResponseType> createCreateApplicationLebenResponse(CreateApplicationLebenResponseType value) {
|
||||||
|
return new JAXBElement<CreateApplicationLebenResponseType>(_CreateApplicationLebenResponse_QNAME, CreateApplicationLebenResponseType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenRequestType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenRequest")
|
||||||
|
public JAXBElement<SubmitApplicationLebenRequestType> createSubmitApplicationLebenRequest(SubmitApplicationLebenRequestType value) {
|
||||||
|
return new JAXBElement<SubmitApplicationLebenRequestType>(_SubmitApplicationLebenRequest_QNAME, SubmitApplicationLebenRequestType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationLebenResponseType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "SubmitApplicationLebenResponse")
|
||||||
|
public JAXBElement<SubmitApplicationLebenResponseType> createSubmitApplicationLebenResponse(SubmitApplicationLebenResponseType value) {
|
||||||
|
return new JAXBElement<SubmitApplicationLebenResponseType>(_SubmitApplicationLebenResponse_QNAME, SubmitApplicationLebenResponseType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfallinvaliditaetType.class)
|
||||||
|
public JAXBElement<VersicherungssummeZusatzbausteinType> createZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) {
|
||||||
|
return new JAXBElement<VersicherungssummeZusatzbausteinType>(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfallinvaliditaetType.class, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link VersicherungssummeZusatzbausteinType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", name = "Versicherungssumme", scope = ZusatzversicherungUnfalltodType.class)
|
||||||
|
public JAXBElement<VersicherungssummeZusatzbausteinType> createZusatzversicherungUnfalltodTypeVersicherungssumme(VersicherungssummeZusatzbausteinType value) {
|
||||||
|
return new JAXBElement<VersicherungssummeZusatzbausteinType>(_ZusatzversicherungUnfallinvaliditaetTypeVersicherungssumme_QNAME, VersicherungssummeZusatzbausteinType.class, ZusatzversicherungUnfalltodType.class, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.common.ProduktMitVpType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für ein Produkt in der Sparte Leben.
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ProduktLeben_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ProduktLeben_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktMitVp_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Tarife" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}TarifLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ProduktLeben_Type", propOrder = {
|
||||||
|
"tarife"
|
||||||
|
})
|
||||||
|
public class ProduktLebenType
|
||||||
|
extends ProduktMitVpType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Tarife")
|
||||||
|
protected List<TarifLebenType> tarife;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the tarife 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 tarife property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getTarife().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link TarifLebenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<TarifLebenType> getTarife() {
|
||||||
|
if (tarife == null) {
|
||||||
|
tarife = new ArrayList<TarifLebenType>();
|
||||||
|
}
|
||||||
|
return this.tarife;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vorgefertigter Typ für eine Rentenoption
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Rentenoption_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Rentenoption_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Rentenoption_Type")
|
||||||
|
public class RentenoptionType {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.SpezAntragPersonenType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für den Schritt Antrags-Erzeugung
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für SpezAntragLeben_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SpezAntragLeben_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragPersonen_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SpezAntragLeben_Type", propOrder = {
|
||||||
|
"verkaufsprodukt"
|
||||||
|
})
|
||||||
|
public class SpezAntragLebenType
|
||||||
|
extends SpezAntragPersonenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||||
|
protected VerkaufsproduktLebenType verkaufsprodukt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VerkaufsproduktLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerkaufsproduktLebenType getVerkaufsprodukt() {
|
||||||
|
return verkaufsprodukt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VerkaufsproduktLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsprodukt(VerkaufsproduktLebenType value) {
|
||||||
|
this.verkaufsprodukt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.SpezBerechnungType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für den Schritt Berechnung
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für SpezBerechnungLeben_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SpezBerechnungLeben_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-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SpezBerechnungLeben_Type", propOrder = {
|
||||||
|
"verkaufsprodukt"
|
||||||
|
})
|
||||||
|
public class SpezBerechnungLebenType
|
||||||
|
extends SpezBerechnungType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||||
|
protected VerkaufsproduktLebenType verkaufsprodukt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VerkaufsproduktLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerkaufsproduktLebenType getVerkaufsprodukt() {
|
||||||
|
return verkaufsprodukt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VerkaufsproduktLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsprodukt(VerkaufsproduktLebenType value) {
|
||||||
|
this.verkaufsprodukt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.SpezOffertType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für den Schritt Offert-Erzeugung
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für SpezOffertLeben_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SpezOffertLeben_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-5-0.on2antrag.leben}VerkaufsproduktLeben_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SpezOffertLeben_Type", propOrder = {
|
||||||
|
"verkaufsprodukt"
|
||||||
|
})
|
||||||
|
public class SpezOffertLebenType
|
||||||
|
extends SpezOffertType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||||
|
protected VerkaufsproduktLebenType verkaufsprodukt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VerkaufsproduktLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerkaufsproduktLebenType getVerkaufsprodukt() {
|
||||||
|
return verkaufsprodukt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VerkaufsproduktLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsprodukt(VerkaufsproduktLebenType value) {
|
||||||
|
this.verkaufsprodukt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.SubmitApplicationRequestGenType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type des Requests, um den Antrag einzureichen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für SubmitApplicationLebenRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SubmitApplicationLebenRequest_Type">
|
||||||
|
* <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-5-0.on2antrag.leben}SpezAntragLeben_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SubmitApplicationLebenRequest_Type", propOrder = {
|
||||||
|
"antragsanfrage"
|
||||||
|
})
|
||||||
|
public class SubmitApplicationLebenRequestType
|
||||||
|
extends SubmitApplicationRequestGenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Antragsanfrage")
|
||||||
|
protected SpezAntragLebenType antragsanfrage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezAntragLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezAntragLebenType getAntragsanfrage() {
|
||||||
|
return antragsanfrage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antragsanfrage-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezAntragLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntragsanfrage(SpezAntragLebenType value) {
|
||||||
|
this.antragsanfrage = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.on2antrag.common.SubmitApplicationResponseGenType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type des Response, um den Antrag einzureichen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für SubmitApplicationLebenResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SubmitApplicationLebenResponse_Type">
|
||||||
|
* <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-5-0.on2antrag.leben}SpezAntragLeben_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SubmitApplicationLebenResponse_Type", propOrder = {
|
||||||
|
"antragsantwort"
|
||||||
|
})
|
||||||
|
public class SubmitApplicationLebenResponseType
|
||||||
|
extends SubmitApplicationResponseGenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Antragsantwort", required = true)
|
||||||
|
protected SpezAntragLebenType antragsantwort;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antragsantwort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezAntragLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezAntragLebenType getAntragsantwort() {
|
||||||
|
return antragsantwort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antragsantwort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezAntragLebenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntragsantwort(SpezAntragLebenType value) {
|
||||||
|
this.antragsantwort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,164 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.common.ElementFondsauswahlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementarproduktGenerischType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für ein Elementarprodukt in der Sparte Leben.
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für TarifLeben_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="TarifLeben_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="GarantierteAblebenssumme" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}VersicherungssummeZusatzbaustein_Type" minOccurs="0"/>
|
||||||
|
* <element name="Rentenoption" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Rentenoption_Type" minOccurs="0"/>
|
||||||
|
* <element name="Fondsauswahl" type="{urn:omds3CommonServiceTypes-1-1-0}ElementFondsauswahl_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Zusatzbausteine" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "TarifLeben_Type", propOrder = {
|
||||||
|
"garantierteAblebenssumme",
|
||||||
|
"rentenoption",
|
||||||
|
"fondsauswahl",
|
||||||
|
"zusatzbausteine"
|
||||||
|
})
|
||||||
|
public class TarifLebenType
|
||||||
|
extends ElementarproduktGenerischType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "GarantierteAblebenssumme")
|
||||||
|
protected VersicherungssummeZusatzbausteinType garantierteAblebenssumme;
|
||||||
|
@XmlElement(name = "Rentenoption")
|
||||||
|
protected RentenoptionType rentenoption;
|
||||||
|
@XmlElement(name = "Fondsauswahl")
|
||||||
|
protected List<ElementFondsauswahlType> fondsauswahl;
|
||||||
|
@XmlElement(name = "Zusatzbausteine")
|
||||||
|
protected List<ZusatzversicherungLebenType> zusatzbausteine;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der garantierteAblebenssumme-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VersicherungssummeZusatzbausteinType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VersicherungssummeZusatzbausteinType getGarantierteAblebenssumme() {
|
||||||
|
return garantierteAblebenssumme;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der garantierteAblebenssumme-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VersicherungssummeZusatzbausteinType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGarantierteAblebenssumme(VersicherungssummeZusatzbausteinType value) {
|
||||||
|
this.garantierteAblebenssumme = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der rentenoption-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link RentenoptionType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public RentenoptionType getRentenoption() {
|
||||||
|
return rentenoption;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der rentenoption-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link RentenoptionType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRentenoption(RentenoptionType value) {
|
||||||
|
this.rentenoption = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the fondsauswahl 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 fondsauswahl property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getFondsauswahl().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ElementFondsauswahlType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ElementFondsauswahlType> getFondsauswahl() {
|
||||||
|
if (fondsauswahl == null) {
|
||||||
|
fondsauswahl = new ArrayList<ElementFondsauswahlType>();
|
||||||
|
}
|
||||||
|
return this.fondsauswahl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the zusatzbausteine 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 zusatzbausteine property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getZusatzbausteine().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ZusatzversicherungLebenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ZusatzversicherungLebenType> getZusatzbausteine() {
|
||||||
|
if (zusatzbausteine == null) {
|
||||||
|
zusatzbausteine = new ArrayList<ZusatzversicherungLebenType>();
|
||||||
|
}
|
||||||
|
return this.zusatzbausteine;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,172 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.common.ProduktGenerischType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.VerkaufsproduktGenerischType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertePersonType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für ein Verkaufsprodukt in der Sparte Leben
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für VerkaufsproduktLeben_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VerkaufsproduktLeben_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VerkaufsproduktGenerisch_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="LebenProdukte" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ProduktLeben_Type" maxOccurs="unbounded"/>
|
||||||
|
* <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="VersichertePersonen" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertePerson_Type" maxOccurs="unbounded"/>
|
||||||
|
* <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VerkaufsproduktLeben_Type", propOrder = {
|
||||||
|
"lebenProdukte",
|
||||||
|
"zusatzprodukte",
|
||||||
|
"versichertePersonen",
|
||||||
|
"refSicherstellungLfnr"
|
||||||
|
})
|
||||||
|
public class VerkaufsproduktLebenType
|
||||||
|
extends VerkaufsproduktGenerischType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "LebenProdukte", required = true)
|
||||||
|
protected List<ProduktLebenType> lebenProdukte;
|
||||||
|
@XmlElement(name = "Zusatzprodukte")
|
||||||
|
protected List<ProduktGenerischType> zusatzprodukte;
|
||||||
|
@XmlElement(name = "VersichertePersonen", required = true)
|
||||||
|
protected List<VersichertePersonType> versichertePersonen;
|
||||||
|
@XmlElement(name = "RefSicherstellungLfnr")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer refSicherstellungLfnr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the lebenProdukte 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 lebenProdukte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getLebenProdukte().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ProduktLebenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ProduktLebenType> getLebenProdukte() {
|
||||||
|
if (lebenProdukte == null) {
|
||||||
|
lebenProdukte = new ArrayList<ProduktLebenType>();
|
||||||
|
}
|
||||||
|
return this.lebenProdukte;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the zusatzprodukte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the zusatzprodukte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getZusatzprodukte().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ProduktGenerischType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ProduktGenerischType> getZusatzprodukte() {
|
||||||
|
if (zusatzprodukte == null) {
|
||||||
|
zusatzprodukte = new ArrayList<ProduktGenerischType>();
|
||||||
|
}
|
||||||
|
return this.zusatzprodukte;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the versichertePersonen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the versichertePersonen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVersichertePersonen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link VersichertePersonType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<VersichertePersonType> getVersichertePersonen() {
|
||||||
|
if (versichertePersonen == null) {
|
||||||
|
versichertePersonen = new ArrayList<VersichertePersonType>();
|
||||||
|
}
|
||||||
|
return this.versichertePersonen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getRefSicherstellungLfnr() {
|
||||||
|
return refSicherstellungLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRefSicherstellungLfnr(Integer value) {
|
||||||
|
this.refSicherstellungLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,94 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
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_7_0.common.AttributDezimalType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_7_0.common.AttributDoubleType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Definition einer Versicherungssumme in einem Zusatzbaustein
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für VersicherungssummeZusatzbaustein_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VersicherungssummeZusatzbaustein_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <choice>
|
||||||
|
* <element name="ProzentVersicherungssumme" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDouble_Type" minOccurs="0"/>
|
||||||
|
* <element name="Betrag" type="{urn:omds3CommonServiceTypes-1-1-0}AttributDezimal_Type" minOccurs="0"/>
|
||||||
|
* </choice>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VersicherungssummeZusatzbaustein_Type", propOrder = {
|
||||||
|
"prozentVersicherungssumme",
|
||||||
|
"betrag"
|
||||||
|
})
|
||||||
|
public class VersicherungssummeZusatzbausteinType {
|
||||||
|
|
||||||
|
@XmlElement(name = "ProzentVersicherungssumme")
|
||||||
|
protected AttributDoubleType prozentVersicherungssumme;
|
||||||
|
@XmlElement(name = "Betrag")
|
||||||
|
protected AttributDezimalType betrag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AttributDoubleType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributDoubleType getProzentVersicherungssumme() {
|
||||||
|
return prozentVersicherungssumme;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der prozentVersicherungssumme-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AttributDoubleType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProzentVersicherungssumme(AttributDoubleType value) {
|
||||||
|
this.prozentVersicherungssumme = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der betrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AttributDezimalType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributDezimalType getBetrag() {
|
||||||
|
return betrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der betrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AttributDezimalType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBetrag(AttributDezimalType value) {
|
||||||
|
this.betrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstraktes Element zur Abbildung einer Wartefrist
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Wartefrist_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Wartefrist_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Wartefrist_Type")
|
||||||
|
public abstract class WartefristType {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Typ um Zusatzprodukte (Ebene Produkt) im Verkausfprodukt Leben zu definieren
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ZusatzproduktLeben_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ZusatzproduktLeben_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ZusatzproduktLeben_Type")
|
||||||
|
public class ZusatzproduktLebenType {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vorgefertigter Typ für eine Zusatzversicherung Berufsunfähigkeit
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ZusatzversicherungBerufsunfaehigkeit_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ZusatzversicherungBerufsunfaehigkeit_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}ZusatzversicherungLeben_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Wartefrist" type="{urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben}Wartefrist_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ZusatzversicherungBerufsunfaehigkeit_Type", propOrder = {
|
||||||
|
"wartefrist"
|
||||||
|
})
|
||||||
|
public class ZusatzversicherungBerufsunfaehigkeitType
|
||||||
|
extends ZusatzversicherungLebenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Wartefrist")
|
||||||
|
protected WartefristType wartefrist;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der wartefrist-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link WartefristType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public WartefristType getWartefrist() {
|
||||||
|
return wartefrist;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wartefrist-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link WartefristType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWartefrist(WartefristType value) {
|
||||||
|
this.wartefrist = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user