Typen OMDS 2.12-01 generiert
This commit is contained in:
@@ -0,0 +1,221 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.RisikoAdresseType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für ADRESSE_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ADRESSE_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attGroup ref="{urn:omds20}Adresse_Attribute"/>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ADRESSE_Type")
|
||||||
|
@XmlSeeAlso({
|
||||||
|
RisikoAdresseType.class
|
||||||
|
})
|
||||||
|
public class ADRESSEType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Pac")
|
||||||
|
@XmlSchemaType(name = "unsignedInt")
|
||||||
|
protected Long pac;
|
||||||
|
@XmlAttribute(name = "LandesCd")
|
||||||
|
protected String landesCd;
|
||||||
|
@XmlAttribute(name = "PLZ")
|
||||||
|
protected String plz;
|
||||||
|
@XmlAttribute(name = "Ort")
|
||||||
|
protected String ort;
|
||||||
|
@XmlAttribute(name = "Strasse")
|
||||||
|
protected String strasse;
|
||||||
|
@XmlAttribute(name = "Hausnr")
|
||||||
|
protected String hausnr;
|
||||||
|
@XmlAttribute(name = "Zusatz")
|
||||||
|
protected String zusatz;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der pac-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Long getPac() {
|
||||||
|
return pac;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der pac-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPac(Long value) {
|
||||||
|
this.pac = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der landesCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getLandesCd() {
|
||||||
|
return landesCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der landesCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLandesCd(String value) {
|
||||||
|
this.landesCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der plz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPLZ() {
|
||||||
|
return plz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der plz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPLZ(String value) {
|
||||||
|
this.plz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getOrt() {
|
||||||
|
return ort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOrt(String value) {
|
||||||
|
this.ort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der strasse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getStrasse() {
|
||||||
|
return strasse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der strasse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStrasse(String value) {
|
||||||
|
this.strasse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hausnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getHausnr() {
|
||||||
|
return hausnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hausnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHausnr(String value) {
|
||||||
|
this.hausnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zusatz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZusatz() {
|
||||||
|
return zusatz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zusatz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZusatz(String value) {
|
||||||
|
this.zusatz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für BBArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="BBArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="ABL"/>
|
||||||
|
* <enumeration value="ERL"/>
|
||||||
|
* <enumeration value="SLF"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "BBArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum BBArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ablebensfall
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ABL,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Erlebensfall
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ERL,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sonstiger Leistungsfall
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SLF;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static BBArtCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Antrag_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Antrag_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Nummer" use="required" type="{urn:omds20}Polizzennr" />
|
||||||
|
* <attribute name="Datum" type="{urn:omds20}Datum" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Antrag_Type")
|
||||||
|
public class ELAntragType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Nummer", required = true)
|
||||||
|
protected String nummer;
|
||||||
|
@XmlAttribute(name = "Datum")
|
||||||
|
protected XMLGregorianCalendar datum;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der nummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getNummer() {
|
||||||
|
return nummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der nummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNummer(String value) {
|
||||||
|
this.nummer = 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,93 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
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-Anzahl_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Anzahl_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Bezeichnung" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Anzahl_Type")
|
||||||
|
public class ELAnzahlType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Bezeichnung", required = true)
|
||||||
|
protected String bezeichnung;
|
||||||
|
@XmlAttribute(name = "Wert", required = true)
|
||||||
|
protected BigDecimal wert;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 wert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getWert() {
|
||||||
|
return wert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWert(BigDecimal value) {
|
||||||
|
this.wert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,175 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Betrag_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Betrag_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="BetragArtCd" type="{urn:omds20}BetragArtCd_Type" />
|
||||||
|
* <attribute name="Datum" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="Bezeichnung" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
|
||||||
|
* <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Betrag_Type")
|
||||||
|
public class ELBetragType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "BetragArtCd")
|
||||||
|
protected String betragArtCd;
|
||||||
|
@XmlAttribute(name = "Datum")
|
||||||
|
protected XMLGregorianCalendar datum;
|
||||||
|
@XmlAttribute(name = "Bezeichnung", required = true)
|
||||||
|
protected String bezeichnung;
|
||||||
|
@XmlAttribute(name = "WaehrungsCd")
|
||||||
|
protected WaehrungsCdType waehrungsCd;
|
||||||
|
@XmlAttribute(name = "Wert", required = true)
|
||||||
|
protected BigDecimal wert;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der betragArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBetragArtCd() {
|
||||||
|
return betragArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der betragArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBetragArtCd(String value) {
|
||||||
|
this.betragArtCd = 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 waehrungsCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public WaehrungsCdType getWaehrungsCd() {
|
||||||
|
return waehrungsCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der waehrungsCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWaehrungsCd(WaehrungsCdType value) {
|
||||||
|
this.waehrungsCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der wert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getWert() {
|
||||||
|
return wert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWert(BigDecimal value) {
|
||||||
|
this.wert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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-Bezugsberechtigung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Bezugsberechtigung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="BBArtCd" use="required" type="{urn:omds20}BBArtCd_Type" />
|
||||||
|
* <attribute name="BBTxt" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="255"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Bezugsberechtigung_Type")
|
||||||
|
public class ELBezugsberechtigungType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "BBArtCd", required = true)
|
||||||
|
protected BBArtCdType bbArtCd;
|
||||||
|
@XmlAttribute(name = "BBTxt", required = true)
|
||||||
|
protected String bbTxt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bbArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BBArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BBArtCdType getBBArtCd() {
|
||||||
|
return bbArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bbArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BBArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBBArtCd(BBArtCdType value) {
|
||||||
|
this.bbArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bbTxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBBTxt() {
|
||||||
|
return bbTxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bbTxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBBTxt(String value) {
|
||||||
|
this.bbTxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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-Einstufung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Einstufung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="EstArtCd" use="required" type="{urn:omds20}EstArtCd_Type" />
|
||||||
|
* <attribute name="EstWert" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="5"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Einstufung_Type")
|
||||||
|
public class ELEinstufungType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "EstArtCd", required = true)
|
||||||
|
protected EstArtCdType estArtCd;
|
||||||
|
@XmlAttribute(name = "EstWert", required = true)
|
||||||
|
protected String estWert;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der estArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link EstArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public EstArtCdType getEstArtCd() {
|
||||||
|
return estArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der estArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link EstArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEstArtCd(EstArtCdType value) {
|
||||||
|
this.estArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der estWert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getEstWert() {
|
||||||
|
return estWert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der estWert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEstWert(String value) {
|
||||||
|
this.estWert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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-Entscheidungsfrage_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Entscheidungsfrage_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="EFrageCd" use="required" type="{urn:omds20}EFrageCd_Type" />
|
||||||
|
* <attribute name="EFrageAntw" use="required" type="{urn:omds20}Entsch3_Type" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Entscheidungsfrage_Type")
|
||||||
|
public class ELEntscheidungsfrageType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "EFrageCd", required = true)
|
||||||
|
protected String eFrageCd;
|
||||||
|
@XmlAttribute(name = "EFrageAntw", required = true)
|
||||||
|
protected String eFrageAntw;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der eFrageCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getEFrageCd() {
|
||||||
|
return eFrageCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der eFrageCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEFrageCd(String value) {
|
||||||
|
this.eFrageCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der eFrageAntw-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getEFrageAntw() {
|
||||||
|
return eFrageAntw;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der eFrageAntw-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEFrageAntw(String value) {
|
||||||
|
this.eFrageAntw = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,146 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
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-Flaeche_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Flaeche_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="FlaechenAttributCd" use="required" type="{urn:omds20}FlaechenAttributCd_Type" />
|
||||||
|
* <attribute name="Nummer">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="2"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="InnenFlaeche" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="VerbauteFlaeche" type="{urn:omds20}decimal" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Flaeche_Type")
|
||||||
|
public class ELFlaecheType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "FlaechenAttributCd", required = true)
|
||||||
|
protected FlaechenAttributCdType flaechenAttributCd;
|
||||||
|
@XmlAttribute(name = "Nummer")
|
||||||
|
protected String nummer;
|
||||||
|
@XmlAttribute(name = "InnenFlaeche")
|
||||||
|
protected BigDecimal innenFlaeche;
|
||||||
|
@XmlAttribute(name = "VerbauteFlaeche")
|
||||||
|
protected BigDecimal verbauteFlaeche;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der flaechenAttributCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link FlaechenAttributCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FlaechenAttributCdType getFlaechenAttributCd() {
|
||||||
|
return flaechenAttributCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der flaechenAttributCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link FlaechenAttributCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFlaechenAttributCd(FlaechenAttributCdType value) {
|
||||||
|
this.flaechenAttributCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der nummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getNummer() {
|
||||||
|
return nummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der nummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNummer(String value) {
|
||||||
|
this.nummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der innenFlaeche-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getInnenFlaeche() {
|
||||||
|
return innenFlaeche;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der innenFlaeche-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setInnenFlaeche(BigDecimal value) {
|
||||||
|
this.innenFlaeche = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verbauteFlaeche-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getVerbauteFlaeche() {
|
||||||
|
return verbauteFlaeche;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verbauteFlaeche-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerbauteFlaeche(BigDecimal value) {
|
||||||
|
this.verbauteFlaeche = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,87 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Gewinnbeteiligung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Gewinnbeteiligung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Datum" use="required" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="Wert" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Gewinnbeteiligung_Type")
|
||||||
|
public class ELGewinnbeteiligungType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Datum", required = true)
|
||||||
|
protected XMLGregorianCalendar datum;
|
||||||
|
@XmlAttribute(name = "Wert", required = true)
|
||||||
|
protected BigDecimal wert;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der wert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getWert() {
|
||||||
|
return wert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWert(BigDecimal value) {
|
||||||
|
this.wert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,119 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
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-Grenzwert_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Grenzwert_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="GrwArtCd" use="required" type="{urn:omds20}GrwArtCd_Type" />
|
||||||
|
* <attribute name="GrWert" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="GrwTyp">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Grenzwert_Type")
|
||||||
|
public class ELGrenzwertType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "GrwArtCd", required = true)
|
||||||
|
protected GrwArtCdType grwArtCd;
|
||||||
|
@XmlAttribute(name = "GrWert", required = true)
|
||||||
|
protected BigDecimal grWert;
|
||||||
|
@XmlAttribute(name = "GrwTyp")
|
||||||
|
protected String grwTyp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der grwArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link GrwArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GrwArtCdType getGrwArtCd() {
|
||||||
|
return grwArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der grwArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link GrwArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGrwArtCd(GrwArtCdType value) {
|
||||||
|
this.grwArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der grWert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getGrWert() {
|
||||||
|
return grWert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der grWert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGrWert(BigDecimal value) {
|
||||||
|
this.grWert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der grwTyp-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getGrwTyp() {
|
||||||
|
return grwTyp;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der grwTyp-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGrwTyp(String value) {
|
||||||
|
this.grwTyp = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Identifizierung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Identifizierung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="IdfArtCd" use="required" type="{urn:omds20}IdfArtCd_Type" />
|
||||||
|
* <attribute name="IdfSchluessel" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="IdfDatum" type="{urn:omds20}Datum" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Identifizierung_Type")
|
||||||
|
public class ELIdentifizierungType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "IdfArtCd", required = true)
|
||||||
|
protected IdfArtCdType idfArtCd;
|
||||||
|
@XmlAttribute(name = "IdfSchluessel", required = true)
|
||||||
|
protected String idfSchluessel;
|
||||||
|
@XmlAttribute(name = "IdfDatum")
|
||||||
|
protected XMLGregorianCalendar idfDatum;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der idfArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link IdfArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public IdfArtCdType getIdfArtCd() {
|
||||||
|
return idfArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der idfArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link IdfArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setIdfArtCd(IdfArtCdType value) {
|
||||||
|
this.idfArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der idfSchluessel-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getIdfSchluessel() {
|
||||||
|
return idfSchluessel;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der idfSchluessel-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setIdfSchluessel(String value) {
|
||||||
|
this.idfSchluessel = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der idfDatum-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getIdfDatum() {
|
||||||
|
return idfDatum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der idfDatum-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setIdfDatum(XMLGregorianCalendar value) {
|
||||||
|
this.idfDatum = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,116 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Index_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Index_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="IndexArtCd" use="required" type="{urn:omds20}IndexArtCd_Type" />
|
||||||
|
* <attribute name="Datum" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" />
|
||||||
|
* <attribute name="Wert" type="{urn:omds20}decimal" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Index_Type")
|
||||||
|
public class ELIndexType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "IndexArtCd", required = true)
|
||||||
|
protected String indexArtCd;
|
||||||
|
@XmlAttribute(name = "Datum")
|
||||||
|
@XmlSchemaType(name = "gYearMonth")
|
||||||
|
protected XMLGregorianCalendar datum;
|
||||||
|
@XmlAttribute(name = "Wert")
|
||||||
|
protected BigDecimal wert;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der indexArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getIndexArtCd() {
|
||||||
|
return indexArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der indexArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setIndexArtCd(String value) {
|
||||||
|
this.indexArtCd = 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der wert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getWert() {
|
||||||
|
return wert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWert(BigDecimal value) {
|
||||||
|
this.wert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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-KFZ-Kennzeichen_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-KFZ-Kennzeichen_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Pol_Kennz" use="required" type="{urn:omds20}Pol_Kennz_Type" />
|
||||||
|
* <attribute name="Fahrgestnr" type="{urn:omds20}Fahrgestnr_Type" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-KFZ-Kennzeichen_Type")
|
||||||
|
public class ELKFZKennzeichenType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Pol_Kennz", required = true)
|
||||||
|
protected String polKennz;
|
||||||
|
@XmlAttribute(name = "Fahrgestnr")
|
||||||
|
protected String fahrgestnr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polKennz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolKennz() {
|
||||||
|
return polKennz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polKennz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolKennz(String value) {
|
||||||
|
this.polKennz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der fahrgestnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFahrgestnr() {
|
||||||
|
return fahrgestnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der fahrgestnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFahrgestnr(String value) {
|
||||||
|
this.fahrgestnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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-Klausel_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Klausel_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Klauselnr" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="26"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Klausel_Type")
|
||||||
|
public class ELKlauselType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Klauselnr", required = true)
|
||||||
|
protected String klauselnr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der klauselnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKlauselnr() {
|
||||||
|
return klauselnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der klauselnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKlauselnr(String value) {
|
||||||
|
this.klauselnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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-Kommunikation_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Kommunikation_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="KomArtCd" use="required" type="{urn:omds20}KomArtCd_Type" />
|
||||||
|
* <attribute name="Kennung" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="255"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Kommunikation_Type")
|
||||||
|
public class ELKommunikationType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "KomArtCd", required = true)
|
||||||
|
protected String komArtCd;
|
||||||
|
@XmlAttribute(name = "Kennung", required = true)
|
||||||
|
protected String kennung;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der komArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKomArtCd() {
|
||||||
|
return komArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der komArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKomArtCd(String value) {
|
||||||
|
this.komArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kennung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKennung() {
|
||||||
|
return kennung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kennung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKennung(String value) {
|
||||||
|
this.kennung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,158 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.LegitimationType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Legitimation_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Legitimation_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="LegArtCd" use="required" type="{urn:omds20}LegArtCd_Type" />
|
||||||
|
* <attribute name="Ausstellungsbehoerde">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Datum" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="Nummer" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Legitimation_Type")
|
||||||
|
@XmlSeeAlso({
|
||||||
|
LegitimationType.class
|
||||||
|
})
|
||||||
|
public class ELLegitimationType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "LegArtCd", required = true)
|
||||||
|
protected String legArtCd;
|
||||||
|
@XmlAttribute(name = "Ausstellungsbehoerde")
|
||||||
|
protected String ausstellungsbehoerde;
|
||||||
|
@XmlAttribute(name = "Datum")
|
||||||
|
protected XMLGregorianCalendar datum;
|
||||||
|
@XmlAttribute(name = "Nummer", required = true)
|
||||||
|
protected String nummer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der legArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getLegArtCd() {
|
||||||
|
return legArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der legArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLegArtCd(String value) {
|
||||||
|
this.legArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ausstellungsbehoerde-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAusstellungsbehoerde() {
|
||||||
|
return ausstellungsbehoerde;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ausstellungsbehoerde-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAusstellungsbehoerde(String value) {
|
||||||
|
this.ausstellungsbehoerde = 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der nummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getNummer() {
|
||||||
|
return nummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der nummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNummer(String value) {
|
||||||
|
this.nummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Objekt_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Objekt_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Objekt_Type")
|
||||||
|
public class ELObjektType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "ObjLfnr", required = true)
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int objLfnr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der objLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getObjLfnr() {
|
||||||
|
return objLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der objLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setObjLfnr(int value) {
|
||||||
|
this.objLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,125 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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-Objektdaten_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Objektdaten_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="ObjektdatenCd" use="required" type="{urn:omds20}ObjektdatenCd_Type" />
|
||||||
|
* <attribute name="Wert" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="10"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="ObjektdatenInfo">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="60"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Objektdaten_Type")
|
||||||
|
public class ELObjektdatenType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "ObjektdatenCd", required = true)
|
||||||
|
protected String objektdatenCd;
|
||||||
|
@XmlAttribute(name = "Wert", required = true)
|
||||||
|
protected String wert;
|
||||||
|
@XmlAttribute(name = "ObjektdatenInfo")
|
||||||
|
protected String objektdatenInfo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der objektdatenCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getObjektdatenCd() {
|
||||||
|
return objektdatenCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der objektdatenCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setObjektdatenCd(String value) {
|
||||||
|
this.objektdatenCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der wert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getWert() {
|
||||||
|
return wert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWert(String value) {
|
||||||
|
this.wert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der objektdatenInfo-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getObjektdatenInfo() {
|
||||||
|
return objektdatenInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der objektdatenInfo-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setObjektdatenInfo(String value) {
|
||||||
|
this.objektdatenInfo = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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-Polizzennummer_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Polizzennummer_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="PolArtCd" use="required" type="{urn:omds20}PolArtCd_Type" />
|
||||||
|
* <attribute name="PolNr" use="required" type="{urn:omds20}Polizzennr" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Polizzennummer_Type")
|
||||||
|
public class ELPolizzennummerType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "PolArtCd", required = true)
|
||||||
|
protected PolArtCdType polArtCd;
|
||||||
|
@XmlAttribute(name = "PolNr", required = true)
|
||||||
|
protected String polNr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link PolArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PolArtCdType getPolArtCd() {
|
||||||
|
return polArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link PolArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolArtCd(PolArtCdType value) {
|
||||||
|
this.polArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polNr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolNr() {
|
||||||
|
return polNr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polNr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolNr(String value) {
|
||||||
|
this.polNr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,113 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Praemienfreistellung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Praemienfreistellung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="PfrArtCd" use="required" type="{urn:omds20}PfrArtCd_Type" />
|
||||||
|
* <attribute name="PfrBeg" use="required" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="PfrEnde" type="{urn:omds20}Datum" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Praemienfreistellung_Type")
|
||||||
|
public class ELPraemienfreistellungType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "PfrArtCd", required = true)
|
||||||
|
protected String pfrArtCd;
|
||||||
|
@XmlAttribute(name = "PfrBeg", required = true)
|
||||||
|
protected XMLGregorianCalendar pfrBeg;
|
||||||
|
@XmlAttribute(name = "PfrEnde")
|
||||||
|
protected XMLGregorianCalendar pfrEnde;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der pfrArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPfrArtCd() {
|
||||||
|
return pfrArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der pfrArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPfrArtCd(String value) {
|
||||||
|
this.pfrArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der pfrBeg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getPfrBeg() {
|
||||||
|
return pfrBeg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der pfrBeg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPfrBeg(XMLGregorianCalendar value) {
|
||||||
|
this.pfrBeg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der pfrEnde-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getPfrEnde() {
|
||||||
|
return pfrEnde;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der pfrEnde-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPfrEnde(XMLGregorianCalendar value) {
|
||||||
|
this.pfrEnde = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,146 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
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-Praemienkorrektur_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Praemienkorrektur_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="PraemKorrArtCd" use="required" type="{urn:omds20}PraemKorrArtCd_Type" />
|
||||||
|
* <attribute name="PraemKorrWert" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="PraemKorrProz" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="PraemKorrText">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="80"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Praemienkorrektur_Type")
|
||||||
|
public class ELPraemienkorrekturType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "PraemKorrArtCd", required = true)
|
||||||
|
protected String praemKorrArtCd;
|
||||||
|
@XmlAttribute(name = "PraemKorrWert")
|
||||||
|
protected BigDecimal praemKorrWert;
|
||||||
|
@XmlAttribute(name = "PraemKorrProz")
|
||||||
|
protected BigDecimal praemKorrProz;
|
||||||
|
@XmlAttribute(name = "PraemKorrText")
|
||||||
|
protected String praemKorrText;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemKorrArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPraemKorrArtCd() {
|
||||||
|
return praemKorrArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemKorrArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemKorrArtCd(String value) {
|
||||||
|
this.praemKorrArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemKorrWert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getPraemKorrWert() {
|
||||||
|
return praemKorrWert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemKorrWert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemKorrWert(BigDecimal value) {
|
||||||
|
this.praemKorrWert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemKorrProz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getPraemKorrProz() {
|
||||||
|
return praemKorrProz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemKorrProz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemKorrProz(BigDecimal value) {
|
||||||
|
this.praemKorrProz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemKorrText-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPraemKorrText() {
|
||||||
|
return praemKorrText;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemKorrText-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemKorrText(String value) {
|
||||||
|
this.praemKorrText = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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-Rahmenvereinbarung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Rahmenvereinbarung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="RahmenVebnr" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Rahmenvereinbarung_Type")
|
||||||
|
public class ELRahmenvereinbarungType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "RahmenVebnr", required = true)
|
||||||
|
protected String rahmenVebnr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der rahmenVebnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRahmenVebnr() {
|
||||||
|
return rahmenVebnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der rahmenVebnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRahmenVebnr(String value) {
|
||||||
|
this.rahmenVebnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Rente_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Rente_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="RntRhythmCd" use="required" type="{urn:omds20}RntRhythmCd_Type" />
|
||||||
|
* <attribute name="RntBeg" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="RntBetrag" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Rente_Type")
|
||||||
|
public class ELRenteType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "RntRhythmCd", required = true)
|
||||||
|
protected String rntRhythmCd;
|
||||||
|
@XmlAttribute(name = "RntBeg")
|
||||||
|
protected XMLGregorianCalendar rntBeg;
|
||||||
|
@XmlAttribute(name = "RntBetrag", required = true)
|
||||||
|
protected BigDecimal rntBetrag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der rntRhythmCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRntRhythmCd() {
|
||||||
|
return rntRhythmCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der rntRhythmCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRntRhythmCd(String value) {
|
||||||
|
this.rntRhythmCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der rntBeg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getRntBeg() {
|
||||||
|
return rntBeg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der rntBeg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRntBeg(XMLGregorianCalendar value) {
|
||||||
|
this.rntBeg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der rntBetrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getRntBetrag() {
|
||||||
|
return rntBetrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der rntBetrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRntBetrag(BigDecimal value) {
|
||||||
|
this.rntBetrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
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>
|
||||||
|
* <extension base="{urn:omds20}EL-Selbstbehalt_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "")
|
||||||
|
@XmlRootElement(name = "EL-Selbstbehalt")
|
||||||
|
public class ELSelbstbehalt
|
||||||
|
extends ELSelbstbehaltType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,150 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Selbstbehalt_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Selbstbehalt_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="SbhArtCd" use="required" type="{urn:omds20}SbhArtCd_Type" />
|
||||||
|
* <attribute name="SbhBetrag" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="SbhProzent" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="SbhText">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="80"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Selbstbehalt_Type")
|
||||||
|
@XmlSeeAlso({
|
||||||
|
ELSelbstbehalt.class
|
||||||
|
})
|
||||||
|
public class ELSelbstbehaltType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "SbhArtCd", required = true)
|
||||||
|
protected SbhArtCdType sbhArtCd;
|
||||||
|
@XmlAttribute(name = "SbhBetrag")
|
||||||
|
protected BigDecimal sbhBetrag;
|
||||||
|
@XmlAttribute(name = "SbhProzent")
|
||||||
|
protected BigDecimal sbhProzent;
|
||||||
|
@XmlAttribute(name = "SbhText")
|
||||||
|
protected String sbhText;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sbhArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SbhArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SbhArtCdType getSbhArtCd() {
|
||||||
|
return sbhArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sbhArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SbhArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSbhArtCd(SbhArtCdType value) {
|
||||||
|
this.sbhArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sbhBetrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getSbhBetrag() {
|
||||||
|
return sbhBetrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sbhBetrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSbhBetrag(BigDecimal value) {
|
||||||
|
this.sbhBetrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sbhProzent-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getSbhProzent() {
|
||||||
|
return sbhProzent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sbhProzent-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSbhProzent(BigDecimal value) {
|
||||||
|
this.sbhProzent = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sbhText-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSbhText() {
|
||||||
|
return sbhText;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sbhText-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSbhText(String value) {
|
||||||
|
this.sbhText = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
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-Steuer_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Steuer_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="StArtCd" use="required" type="{urn:omds20}StArtCd_Type" />
|
||||||
|
* <attribute name="StBetrag" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Steuer_Type")
|
||||||
|
public class ELSteuerType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "StArtCd", required = true)
|
||||||
|
protected String stArtCd;
|
||||||
|
@XmlAttribute(name = "StBetrag", required = true)
|
||||||
|
protected BigDecimal stBetrag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der stArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getStArtCd() {
|
||||||
|
return stArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der stArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStArtCd(String value) {
|
||||||
|
this.stArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der stBetrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getStBetrag() {
|
||||||
|
return stBetrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der stBetrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStBetrag(BigDecimal value) {
|
||||||
|
this.stBetrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,91 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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-Text_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Text_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="TxtArtCd" use="required" type="{urn:omds20}TxtArtCd_Type" />
|
||||||
|
* <attribute name="TxtInhalt" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Text_Type")
|
||||||
|
public class ELTextType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "TxtArtCd", required = true)
|
||||||
|
protected TxtArtCdType txtArtCd;
|
||||||
|
@XmlAttribute(name = "TxtInhalt", required = true)
|
||||||
|
protected String txtInhalt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der txtArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link TxtArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public TxtArtCdType getTxtArtCd() {
|
||||||
|
return txtArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der txtArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link TxtArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setTxtArtCd(TxtArtCdType value) {
|
||||||
|
this.txtArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der txtInhalt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getTxtInhalt() {
|
||||||
|
return txtInhalt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der txtInhalt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setTxtInhalt(String value) {
|
||||||
|
this.txtInhalt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,119 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
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-Versicherungssumme_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Versicherungssumme_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="VSArtCd" use="required" type="{urn:omds20}VSArtCd_Type" />
|
||||||
|
* <attribute name="VSBetrag" use="required" type="{urn:omds20}decimal14_2" />
|
||||||
|
* <attribute name="VSBez">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="255"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Versicherungssumme_Type")
|
||||||
|
public class ELVersicherungssummeType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "VSArtCd", required = true)
|
||||||
|
protected VSArtCdType vsArtCd;
|
||||||
|
@XmlAttribute(name = "VSBetrag", required = true)
|
||||||
|
protected BigDecimal vsBetrag;
|
||||||
|
@XmlAttribute(name = "VSBez")
|
||||||
|
protected String vsBez;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vsArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VSArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VSArtCdType getVSArtCd() {
|
||||||
|
return vsArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vsArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VSArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVSArtCd(VSArtCdType value) {
|
||||||
|
this.vsArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vsBetrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getVSBetrag() {
|
||||||
|
return vsBetrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vsBetrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVSBetrag(BigDecimal value) {
|
||||||
|
this.vsBetrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vsBez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVSBez() {
|
||||||
|
return vsBez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vsBez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVSBez(String value) {
|
||||||
|
this.vsBez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,113 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EL-Zeitraum_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EL-Zeitraum_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="ZRArtCd" use="required" type="{urn:omds20}ZRArtCd_Type" />
|
||||||
|
* <attribute name="ZRBeg" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="ZREnd" type="{urn:omds20}Datum" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EL-Zeitraum_Type")
|
||||||
|
public class ELZeitraumType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "ZRArtCd", required = true)
|
||||||
|
protected String zrArtCd;
|
||||||
|
@XmlAttribute(name = "ZRBeg")
|
||||||
|
protected XMLGregorianCalendar zrBeg;
|
||||||
|
@XmlAttribute(name = "ZREnd")
|
||||||
|
protected XMLGregorianCalendar zrEnd;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zrArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZRArtCd() {
|
||||||
|
return zrArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zrArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZRArtCd(String value) {
|
||||||
|
this.zrArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zrBeg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getZRBeg() {
|
||||||
|
return zrBeg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zrBeg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZRBeg(XMLGregorianCalendar value) {
|
||||||
|
this.zrBeg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zrEnd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getZREnd() {
|
||||||
|
return zrEnd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zrEnd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZREnd(XMLGregorianCalendar value) {
|
||||||
|
this.zrEnd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für Entsch2_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="Entsch2_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="1"/>
|
||||||
|
* <enumeration value="J"/>
|
||||||
|
* <enumeration value="N"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "Entsch2_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum Entsch2Type {
|
||||||
|
|
||||||
|
J,
|
||||||
|
N;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Entsch2Type fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für EstArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="EstArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="G"/>
|
||||||
|
* <enumeration value="T"/>
|
||||||
|
* <enumeration value="TVU"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "EstArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum EstArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gefahrenklasse
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
G,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tarif-, Bonus/Malus-Stufe offiziell
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
T,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tarif-, Bonus/Malus-Stufe VU-intern
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
TVU;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static EstArtCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,276 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für FONDS_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="FONDS_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="ISIN" use="required" type="{urn:omds20}ISIN_Type" />
|
||||||
|
* <attribute name="WKN" type="{urn:omds20}WKN_Type" />
|
||||||
|
* <attribute name="Bezeichnung" use="required" type="{urn:omds20}FondsBez_Type" />
|
||||||
|
* <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
|
||||||
|
* <attribute name="AnteilWertpapier" type="{urn:omds20}FondsAnteil_Type" />
|
||||||
|
* <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
|
||||||
|
* <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
|
||||||
|
* <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
|
||||||
|
* <attribute name="Stichtag" type="{urn:omds20}Datum" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "FONDS_Type")
|
||||||
|
public class FONDSType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "ISIN", required = true)
|
||||||
|
protected String isin;
|
||||||
|
@XmlAttribute(name = "WKN")
|
||||||
|
protected String wkn;
|
||||||
|
@XmlAttribute(name = "Bezeichnung", required = true)
|
||||||
|
protected String bezeichnung;
|
||||||
|
@XmlAttribute(name = "Kurs")
|
||||||
|
protected BigDecimal kurs;
|
||||||
|
@XmlAttribute(name = "AnteilWertpapier")
|
||||||
|
protected BigDecimal anteilWertpapier;
|
||||||
|
@XmlAttribute(name = "Prozentsatz", required = true)
|
||||||
|
protected BigDecimal prozentsatz;
|
||||||
|
@XmlAttribute(name = "Wert")
|
||||||
|
protected BigDecimal wert;
|
||||||
|
@XmlAttribute(name = "WaehrungsCd")
|
||||||
|
protected WaehrungsCdType waehrungsCd;
|
||||||
|
@XmlAttribute(name = "Stichtag")
|
||||||
|
protected XMLGregorianCalendar stichtag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der isin-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getISIN() {
|
||||||
|
return isin;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der isin-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setISIN(String value) {
|
||||||
|
this.isin = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der wkn-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getWKN() {
|
||||||
|
return wkn;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wkn-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWKN(String value) {
|
||||||
|
this.wkn = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBezeichnung() {
|
||||||
|
return bezeichnung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBezeichnung(String value) {
|
||||||
|
this.bezeichnung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kurs-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getKurs() {
|
||||||
|
return kurs;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kurs-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKurs(BigDecimal value) {
|
||||||
|
this.kurs = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der anteilWertpapier-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getAnteilWertpapier() {
|
||||||
|
return anteilWertpapier;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der anteilWertpapier-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAnteilWertpapier(BigDecimal value) {
|
||||||
|
this.anteilWertpapier = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der prozentsatz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getProzentsatz() {
|
||||||
|
return prozentsatz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der prozentsatz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProzentsatz(BigDecimal value) {
|
||||||
|
this.prozentsatz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der wert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getWert() {
|
||||||
|
return wert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWert(BigDecimal value) {
|
||||||
|
this.wert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der waehrungsCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public WaehrungsCdType getWaehrungsCd() {
|
||||||
|
return waehrungsCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der waehrungsCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWaehrungsCd(WaehrungsCdType value) {
|
||||||
|
this.waehrungsCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der stichtag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getStichtag() {
|
||||||
|
return stichtag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der stichtag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStichtag(XMLGregorianCalendar value) {
|
||||||
|
this.stichtag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für FlaechenAttributCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="FlaechenAttributCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="EG"/>
|
||||||
|
* <enumeration value="SW"/>
|
||||||
|
* <enumeration value="MA"/>
|
||||||
|
* <enumeration value="KM"/>
|
||||||
|
* <enumeration value="KO"/>
|
||||||
|
* <enumeration value="WF"/>
|
||||||
|
* <enumeration value="GF"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "FlaechenAttributCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum FlaechenAttributCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Erdgeschoß
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
EG,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stockwerk
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SW,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mansarde
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
MA,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Keller mit Wohnnutzung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
KM,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Keller ohne Wohnnutzung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
KO,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wohnfläche
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
WF,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Grundfläche
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
GF;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static FlaechenAttributCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,265 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für GESCHAEDIGTES_OBJEKT_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="GESCHAEDIGTES_OBJEKT_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="GeschObjektLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="SchadenBeschreibung">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="100"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="VUNrGesch" type="{urn:omds20}VUNr" />
|
||||||
|
* <attribute name="VUNameGesch">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="PolNrGesch" type="{urn:omds20}Polizzennr" />
|
||||||
|
* <attribute name="SchadennrGesch">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{urn:omds20}Schadennr">
|
||||||
|
* <maxLength value="35"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" />
|
||||||
|
* <attribute name="Kennz_GeschKfz">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="12"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "GESCHAEDIGTES_OBJEKT_Type")
|
||||||
|
public class GESCHAEDIGTESOBJEKTType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "GeschObjektLfnr", required = true)
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int geschObjektLfnr;
|
||||||
|
@XmlAttribute(name = "SchadenBeschreibung")
|
||||||
|
protected String schadenBeschreibung;
|
||||||
|
@XmlAttribute(name = "VUNrGesch")
|
||||||
|
protected String vuNrGesch;
|
||||||
|
@XmlAttribute(name = "VUNameGesch")
|
||||||
|
protected String vuNameGesch;
|
||||||
|
@XmlAttribute(name = "PolNrGesch")
|
||||||
|
protected String polNrGesch;
|
||||||
|
@XmlAttribute(name = "SchadennrGesch")
|
||||||
|
protected String schadennrGesch;
|
||||||
|
@XmlAttribute(name = "LandesCd_GeschKfz")
|
||||||
|
protected String landesCdGeschKfz;
|
||||||
|
@XmlAttribute(name = "Kennz_GeschKfz")
|
||||||
|
protected String kennzGeschKfz;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der geschObjektLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getGeschObjektLfnr() {
|
||||||
|
return geschObjektLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der geschObjektLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGeschObjektLfnr(int value) {
|
||||||
|
this.geschObjektLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schadenBeschreibung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchadenBeschreibung() {
|
||||||
|
return schadenBeschreibung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schadenBeschreibung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchadenBeschreibung(String value) {
|
||||||
|
this.schadenBeschreibung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vuNrGesch-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVUNrGesch() {
|
||||||
|
return vuNrGesch;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vuNrGesch-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVUNrGesch(String value) {
|
||||||
|
this.vuNrGesch = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vuNameGesch-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVUNameGesch() {
|
||||||
|
return vuNameGesch;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vuNameGesch-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVUNameGesch(String value) {
|
||||||
|
this.vuNameGesch = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polNrGesch-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolNrGesch() {
|
||||||
|
return polNrGesch;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polNrGesch-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolNrGesch(String value) {
|
||||||
|
this.polNrGesch = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schadennrGesch-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchadennrGesch() {
|
||||||
|
return schadennrGesch;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schadennrGesch-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchadennrGesch(String value) {
|
||||||
|
this.schadennrGesch = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der landesCdGeschKfz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getLandesCdGeschKfz() {
|
||||||
|
return landesCdGeschKfz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der landesCdGeschKfz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLandesCdGeschKfz(String value) {
|
||||||
|
this.landesCdGeschKfz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kennzGeschKfz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKennzGeschKfz() {
|
||||||
|
return kennzGeschKfz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kennzGeschKfz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKennzGeschKfz(String value) {
|
||||||
|
this.kennzGeschKfz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für GrwArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="GrwArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="DFP"/>
|
||||||
|
* <enumeration value="KAM"/>
|
||||||
|
* <enumeration value="KAT"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "GrwArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum GrwArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DauerfolgenProz(UV)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
DFP,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Karenzmonate
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
KAM,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Karenztage
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
KAT;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GrwArtCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für IdfArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="IdfArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="FB"/>
|
||||||
|
* <enumeration value="SV"/>
|
||||||
|
* <enumeration value="VB"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "IdfArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum IdfArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Firmenbuchnummer
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
FB,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sozialversicherungsnr
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SV,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Versicherungsbestätigung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VB;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static IdfArtCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,187 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für KLAUSEL_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="KLAUSEL_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Klauselnr" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="26"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Klauselbez" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="80"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Klauseltxt">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="7998"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="GueltigVon" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="GueltigBis" type="{urn:omds20}Datum" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "KLAUSEL_Type")
|
||||||
|
public class KLAUSELType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Klauselnr", required = true)
|
||||||
|
protected String klauselnr;
|
||||||
|
@XmlAttribute(name = "Klauselbez", required = true)
|
||||||
|
protected String klauselbez;
|
||||||
|
@XmlAttribute(name = "Klauseltxt")
|
||||||
|
protected String klauseltxt;
|
||||||
|
@XmlAttribute(name = "GueltigVon")
|
||||||
|
protected XMLGregorianCalendar gueltigVon;
|
||||||
|
@XmlAttribute(name = "GueltigBis")
|
||||||
|
protected XMLGregorianCalendar gueltigBis;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der klauselnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKlauselnr() {
|
||||||
|
return klauselnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der klauselnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKlauselnr(String value) {
|
||||||
|
this.klauselnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der klauselbez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKlauselbez() {
|
||||||
|
return klauselbez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der klauselbez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKlauselbez(String value) {
|
||||||
|
this.klauselbez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der klauseltxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKlauseltxt() {
|
||||||
|
return klauseltxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der klauseltxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKlauseltxt(String value) {
|
||||||
|
this.klauseltxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gueltigVon-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getGueltigVon() {
|
||||||
|
return gueltigVon;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gueltigVon-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGueltigVon(XMLGregorianCalendar value) {
|
||||||
|
this.gueltigVon = 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,327 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für LOESCHANSTOSS_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="LOESCHANSTOSS_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="LoeschID" use="required" type="{urn:omds20}Datum-Zeit2" />
|
||||||
|
* <attribute name="SystemQuelle" default=" ">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="2"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="GueltigAb" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
|
||||||
|
* <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
|
||||||
|
* <attribute name="Personennr" type="{urn:omds20}Personennr" />
|
||||||
|
* <attribute name="Schadennr" type="{urn:omds20}Schadennr" />
|
||||||
|
* <attribute name="ProvisionsID">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="26"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="MahnverfahrenNr">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="32"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="LoeschCd" use="required" type="{urn:omds20}LoeschCd_Type" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "LOESCHANSTOSS_Type")
|
||||||
|
public class LOESCHANSTOSSType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "LoeschID", required = true)
|
||||||
|
protected XMLGregorianCalendar loeschID;
|
||||||
|
@XmlAttribute(name = "SystemQuelle")
|
||||||
|
protected String systemQuelle;
|
||||||
|
@XmlAttribute(name = "GueltigAb")
|
||||||
|
protected XMLGregorianCalendar gueltigAb;
|
||||||
|
@XmlAttribute(name = "Polizzennr")
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlAttribute(name = "VertragsID")
|
||||||
|
protected String vertragsID;
|
||||||
|
@XmlAttribute(name = "Personennr")
|
||||||
|
protected String personennr;
|
||||||
|
@XmlAttribute(name = "Schadennr")
|
||||||
|
protected String schadennr;
|
||||||
|
@XmlAttribute(name = "ProvisionsID")
|
||||||
|
protected String provisionsID;
|
||||||
|
@XmlAttribute(name = "MahnverfahrenNr")
|
||||||
|
protected String mahnverfahrenNr;
|
||||||
|
@XmlAttribute(name = "LoeschCd", required = true)
|
||||||
|
protected LoeschCdType loeschCd;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der loeschID-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getLoeschID() {
|
||||||
|
return loeschID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der loeschID-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLoeschID(XMLGregorianCalendar value) {
|
||||||
|
this.loeschID = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der systemQuelle-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSystemQuelle() {
|
||||||
|
if (systemQuelle == null) {
|
||||||
|
return " ";
|
||||||
|
} else {
|
||||||
|
return systemQuelle;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der systemQuelle-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSystemQuelle(String value) {
|
||||||
|
this.systemQuelle = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gueltigAb-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getGueltigAb() {
|
||||||
|
return gueltigAb;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gueltigAb-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGueltigAb(XMLGregorianCalendar value) {
|
||||||
|
this.gueltigAb = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der personennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPersonennr() {
|
||||||
|
return personennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der personennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPersonennr(String value) {
|
||||||
|
this.personennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schadennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchadennr() {
|
||||||
|
return schadennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schadennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchadennr(String value) {
|
||||||
|
this.schadennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der provisionsID-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getProvisionsID() {
|
||||||
|
return provisionsID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der provisionsID-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProvisionsID(String value) {
|
||||||
|
this.provisionsID = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnverfahrenNr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMahnverfahrenNr() {
|
||||||
|
return mahnverfahrenNr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnverfahrenNr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnverfahrenNr(String value) {
|
||||||
|
this.mahnverfahrenNr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der loeschCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link LoeschCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public LoeschCdType getLoeschCd() {
|
||||||
|
return loeschCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der loeschCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link LoeschCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLoeschCd(LoeschCdType value) {
|
||||||
|
this.loeschCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für LoeschCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="LoeschCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="M"/>
|
||||||
|
* <enumeration value="L"/>
|
||||||
|
* <enumeration value="G"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "LoeschCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum LoeschCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Markieren als nichtmehrversorgt
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
M,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Löschen wg.z.B.Falschlieferung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
L,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gesetzlich: Hinweis an Makler - Person/Vertrag/Schaden wurden bei der VU wegen DSG gelöscht
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
G;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static LoeschCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,707 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.math.BigInteger;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für MAHNUNG_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="MAHNUNG_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <element ref="{urn:omds20}EL-Text"/>
|
||||||
|
* </choice>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="MahnverfahrenNr" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="32"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="MahnungNr" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
|
||||||
|
* <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
|
||||||
|
* <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
|
||||||
|
* <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
|
||||||
|
* <attribute name="MahnBetrag" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="MahnSpesen" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="MahnStufeCd" use="required" type="{urn:omds20}MahnStufeCd_Type" />
|
||||||
|
* <attribute name="MahnStufeTextVU">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="MahnStelleVU">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="80"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="MahnStelleBeauftragt">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="80"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="MahnStufeGueltigAb" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="MahnStufeGueltigBis" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="MahnStufeCdNext" type="{urn:omds20}MahnStufeCd_Type" />
|
||||||
|
* <attribute name="MahnStufeTextVUNext">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="MahnStufeGueltigAbNext" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="MahnLetzteZahlung" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="MahnAeltesteFaelligkeit" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="MahnAnzahlFaelligkeiten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="GrundRuecklaufCd" type="{urn:omds20}GrundRuecklaufCd_Type" />
|
||||||
|
* <attribute name="MahnDeckungBis" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "MAHNUNG_Type", propOrder = {
|
||||||
|
"elText"
|
||||||
|
})
|
||||||
|
public class MAHNUNGType {
|
||||||
|
|
||||||
|
@XmlElement(name = "EL-Text")
|
||||||
|
protected List<ELTextType> elText;
|
||||||
|
@XmlAttribute(name = "MahnverfahrenNr", required = true)
|
||||||
|
protected String mahnverfahrenNr;
|
||||||
|
@XmlAttribute(name = "MahnungNr")
|
||||||
|
@XmlSchemaType(name = "positiveInteger")
|
||||||
|
protected BigInteger mahnungNr;
|
||||||
|
@XmlAttribute(name = "Polizzennr", required = true)
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlAttribute(name = "VertragsID")
|
||||||
|
protected String vertragsID;
|
||||||
|
@XmlAttribute(name = "Vermnr", required = true)
|
||||||
|
protected String vermnr;
|
||||||
|
@XmlAttribute(name = "MahnBetrag", required = true)
|
||||||
|
protected BigDecimal mahnBetrag;
|
||||||
|
@XmlAttribute(name = "MahnSpesen")
|
||||||
|
protected BigDecimal mahnSpesen;
|
||||||
|
@XmlAttribute(name = "MahnStufeCd", required = true)
|
||||||
|
protected String mahnStufeCd;
|
||||||
|
@XmlAttribute(name = "MahnStufeTextVU")
|
||||||
|
protected String mahnStufeTextVU;
|
||||||
|
@XmlAttribute(name = "MahnStelleVU")
|
||||||
|
protected String mahnStelleVU;
|
||||||
|
@XmlAttribute(name = "MahnStelleBeauftragt")
|
||||||
|
protected String mahnStelleBeauftragt;
|
||||||
|
@XmlAttribute(name = "MahnStufeGueltigAb")
|
||||||
|
protected XMLGregorianCalendar mahnStufeGueltigAb;
|
||||||
|
@XmlAttribute(name = "MahnStufeGueltigBis")
|
||||||
|
protected XMLGregorianCalendar mahnStufeGueltigBis;
|
||||||
|
@XmlAttribute(name = "MahnStufeCdNext")
|
||||||
|
protected String mahnStufeCdNext;
|
||||||
|
@XmlAttribute(name = "MahnStufeTextVUNext")
|
||||||
|
protected String mahnStufeTextVUNext;
|
||||||
|
@XmlAttribute(name = "MahnStufeGueltigAbNext")
|
||||||
|
protected XMLGregorianCalendar mahnStufeGueltigAbNext;
|
||||||
|
@XmlAttribute(name = "MahnLetzteZahlung")
|
||||||
|
protected XMLGregorianCalendar mahnLetzteZahlung;
|
||||||
|
@XmlAttribute(name = "MahnAeltesteFaelligkeit")
|
||||||
|
protected XMLGregorianCalendar mahnAeltesteFaelligkeit;
|
||||||
|
@XmlAttribute(name = "MahnAnzahlFaelligkeiten")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer mahnAnzahlFaelligkeiten;
|
||||||
|
@XmlAttribute(name = "GrundRuecklaufCd")
|
||||||
|
protected String grundRuecklaufCd;
|
||||||
|
@XmlAttribute(name = "MahnDeckungBis")
|
||||||
|
protected XMLGregorianCalendar mahnDeckungBis;
|
||||||
|
@XmlAttribute(name = "VtgSparteCd")
|
||||||
|
protected String vtgSparteCd;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elText 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 elText property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELText().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELTextType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELTextType> getELText() {
|
||||||
|
if (elText == null) {
|
||||||
|
elText = new ArrayList<ELTextType>();
|
||||||
|
}
|
||||||
|
return this.elText;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnverfahrenNr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMahnverfahrenNr() {
|
||||||
|
return mahnverfahrenNr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnverfahrenNr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnverfahrenNr(String value) {
|
||||||
|
this.mahnverfahrenNr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnungNr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigInteger getMahnungNr() {
|
||||||
|
return mahnungNr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnungNr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnungNr(BigInteger value) {
|
||||||
|
this.mahnungNr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vermnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVermnr() {
|
||||||
|
return vermnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vermnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVermnr(String value) {
|
||||||
|
this.vermnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnBetrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getMahnBetrag() {
|
||||||
|
return mahnBetrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnBetrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnBetrag(BigDecimal value) {
|
||||||
|
this.mahnBetrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnSpesen-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getMahnSpesen() {
|
||||||
|
return mahnSpesen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnSpesen-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnSpesen(BigDecimal value) {
|
||||||
|
this.mahnSpesen = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnStufeCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMahnStufeCd() {
|
||||||
|
return mahnStufeCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnStufeCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnStufeCd(String value) {
|
||||||
|
this.mahnStufeCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnStufeTextVU-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMahnStufeTextVU() {
|
||||||
|
return mahnStufeTextVU;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnStufeTextVU-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnStufeTextVU(String value) {
|
||||||
|
this.mahnStufeTextVU = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnStelleVU-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMahnStelleVU() {
|
||||||
|
return mahnStelleVU;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnStelleVU-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnStelleVU(String value) {
|
||||||
|
this.mahnStelleVU = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnStelleBeauftragt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMahnStelleBeauftragt() {
|
||||||
|
return mahnStelleBeauftragt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnStelleBeauftragt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnStelleBeauftragt(String value) {
|
||||||
|
this.mahnStelleBeauftragt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnStufeGueltigAb-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMahnStufeGueltigAb() {
|
||||||
|
return mahnStufeGueltigAb;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnStufeGueltigAb-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnStufeGueltigAb(XMLGregorianCalendar value) {
|
||||||
|
this.mahnStufeGueltigAb = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnStufeGueltigBis-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMahnStufeGueltigBis() {
|
||||||
|
return mahnStufeGueltigBis;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnStufeGueltigBis-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnStufeGueltigBis(XMLGregorianCalendar value) {
|
||||||
|
this.mahnStufeGueltigBis = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnStufeCdNext-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMahnStufeCdNext() {
|
||||||
|
return mahnStufeCdNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnStufeCdNext-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnStufeCdNext(String value) {
|
||||||
|
this.mahnStufeCdNext = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnStufeTextVUNext-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMahnStufeTextVUNext() {
|
||||||
|
return mahnStufeTextVUNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnStufeTextVUNext-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnStufeTextVUNext(String value) {
|
||||||
|
this.mahnStufeTextVUNext = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnStufeGueltigAbNext-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMahnStufeGueltigAbNext() {
|
||||||
|
return mahnStufeGueltigAbNext;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnStufeGueltigAbNext-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnStufeGueltigAbNext(XMLGregorianCalendar value) {
|
||||||
|
this.mahnStufeGueltigAbNext = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnLetzteZahlung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMahnLetzteZahlung() {
|
||||||
|
return mahnLetzteZahlung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnLetzteZahlung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnLetzteZahlung(XMLGregorianCalendar value) {
|
||||||
|
this.mahnLetzteZahlung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnAeltesteFaelligkeit-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMahnAeltesteFaelligkeit() {
|
||||||
|
return mahnAeltesteFaelligkeit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnAeltesteFaelligkeit-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnAeltesteFaelligkeit(XMLGregorianCalendar value) {
|
||||||
|
this.mahnAeltesteFaelligkeit = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnAnzahlFaelligkeiten-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMahnAnzahlFaelligkeiten() {
|
||||||
|
return mahnAnzahlFaelligkeiten;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnAnzahlFaelligkeiten-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnAnzahlFaelligkeiten(Integer value) {
|
||||||
|
this.mahnAnzahlFaelligkeiten = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der grundRuecklaufCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getGrundRuecklaufCd() {
|
||||||
|
return grundRuecklaufCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der grundRuecklaufCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGrundRuecklaufCd(String value) {
|
||||||
|
this.grundRuecklaufCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mahnDeckungBis-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMahnDeckungBis() {
|
||||||
|
return mahnDeckungBis;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mahnDeckungBis-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMahnDeckungBis(XMLGregorianCalendar value) {
|
||||||
|
this.mahnDeckungBis = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgSparteCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVtgSparteCd() {
|
||||||
|
return vtgSparteCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgSparteCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgSparteCd(String value) {
|
||||||
|
this.vtgSparteCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,207 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für NATUERLICHE_PERSON_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="NATUERLICHE_PERSON_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Familienname" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="80"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Vorname">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
|
||||||
|
* <attribute name="Gebdat" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="LandesCd" use="required" type="{urn:omds20}LandesCd_Type" />
|
||||||
|
* <attribute name="FamilienstandCd" use="required" type="{urn:omds20}FamilienstandCd_Type" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "NATUERLICHE_PERSON_Type")
|
||||||
|
public class NATUERLICHEPERSONType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Familienname", required = true)
|
||||||
|
protected String familienname;
|
||||||
|
@XmlAttribute(name = "Vorname")
|
||||||
|
protected String vorname;
|
||||||
|
@XmlAttribute(name = "GeschlechtCd", required = true)
|
||||||
|
protected String geschlechtCd;
|
||||||
|
@XmlAttribute(name = "Gebdat")
|
||||||
|
protected XMLGregorianCalendar gebdat;
|
||||||
|
@XmlAttribute(name = "LandesCd", required = true)
|
||||||
|
protected String landesCd;
|
||||||
|
@XmlAttribute(name = "FamilienstandCd", required = true)
|
||||||
|
protected String familienstandCd;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der familienname-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFamilienname() {
|
||||||
|
return familienname;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der familienname-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFamilienname(String value) {
|
||||||
|
this.familienname = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vorname-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVorname() {
|
||||||
|
return vorname;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vorname-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVorname(String value) {
|
||||||
|
this.vorname = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der geschlechtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getGeschlechtCd() {
|
||||||
|
return geschlechtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der geschlechtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGeschlechtCd(String value) {
|
||||||
|
this.geschlechtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gebdat-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getGebdat() {
|
||||||
|
return gebdat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gebdat-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGebdat(XMLGregorianCalendar value) {
|
||||||
|
this.gebdat = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der landesCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getLandesCd() {
|
||||||
|
return landesCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der landesCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLandesCd(String value) {
|
||||||
|
this.landesCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der familienstandCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFamilienstandCd() {
|
||||||
|
return familienstandCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der familienstandCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFamilienstandCd(String value) {
|
||||||
|
this.familienstandCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,99 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.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 ref="{urn:omds20}PAKET" maxOccurs="unbounded"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="version" type="{urn:omds20}version" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"paket"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "OMDS")
|
||||||
|
public class OMDS {
|
||||||
|
|
||||||
|
@XmlElement(name = "PAKET", required = true)
|
||||||
|
protected List<PAKET> paket;
|
||||||
|
@XmlAttribute(name = "version")
|
||||||
|
protected String version;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the paket 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 paket property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getPAKET().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link PAKET }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<PAKET> getPAKET() {
|
||||||
|
if (paket == null) {
|
||||||
|
paket = new ArrayList<PAKET>();
|
||||||
|
}
|
||||||
|
return this.paket;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der version-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVersion() {
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der version-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersion(String value) {
|
||||||
|
this.version = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,957 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.JAXBElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementDecl;
|
||||||
|
import javax.xml.bind.annotation.XmlRegistry;
|
||||||
|
import javax.xml.namespace.QName;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This object contains factory methods for each
|
||||||
|
* Java content interface and Java element interface
|
||||||
|
* generated in the at.vvo.omds.types.omds2Types.v2_12_01 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 _ELKommunikation_QNAME = new QName("urn:omds20", "EL-Kommunikation");
|
||||||
|
private final static QName _KLAUSEL_QNAME = new QName("urn:omds20", "KLAUSEL");
|
||||||
|
private final static QName _LOESCHANSTOSS_QNAME = new QName("urn:omds20", "LOESCHANSTOSS");
|
||||||
|
private final static QName _PERSON_QNAME = new QName("urn:omds20", "PERSON");
|
||||||
|
private final static QName _ELAntrag_QNAME = new QName("urn:omds20", "EL-Antrag");
|
||||||
|
private final static QName _ELAnzahl_QNAME = new QName("urn:omds20", "EL-Anzahl");
|
||||||
|
private final static QName _ELBetrag_QNAME = new QName("urn:omds20", "EL-Betrag");
|
||||||
|
private final static QName _ELBezugsberechtigung_QNAME = new QName("urn:omds20", "EL-Bezugsberechtigung");
|
||||||
|
private final static QName _ELEinstufung_QNAME = new QName("urn:omds20", "EL-Einstufung");
|
||||||
|
private final static QName _ELEntscheidungsfrage_QNAME = new QName("urn:omds20", "EL-Entscheidungsfrage");
|
||||||
|
private final static QName _ELIdentifizierung_QNAME = new QName("urn:omds20", "EL-Identifizierung");
|
||||||
|
private final static QName _ELKlausel_QNAME = new QName("urn:omds20", "EL-Klausel");
|
||||||
|
private final static QName _ELPolizzennummer_QNAME = new QName("urn:omds20", "EL-Polizzennummer");
|
||||||
|
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 _ELRahmenvereinbarung_QNAME = new QName("urn:omds20", "EL-Rahmenvereinbarung");
|
||||||
|
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 _VERSOBJEKT_QNAME = new QName("urn:omds20", "VERS_OBJEKT");
|
||||||
|
private final static QName _SPARTE_QNAME = new QName("urn:omds20", "SPARTE");
|
||||||
|
private final static QName _SCHADEN_QNAME = new QName("urn:omds20", "SCHADEN");
|
||||||
|
private final static QName _PROVISION_QNAME = new QName("urn:omds20", "PROVISION");
|
||||||
|
private final static QName _MAHNUNG_QNAME = new QName("urn:omds20", "MAHNUNG");
|
||||||
|
private final static QName _VERTRAGSFONDS_QNAME = new QName("urn:omds20", "VERTRAGSFONDS");
|
||||||
|
private final static QName _NATUERLICHEPERSON_QNAME = new QName("urn:omds20", "NATUERLICHE_PERSON");
|
||||||
|
private final static QName _SONSTIGEPERSON_QNAME = new QName("urn:omds20", "SONSTIGE_PERSON");
|
||||||
|
private final static QName _VERSPERSON_QNAME = new QName("urn:omds20", "VERS_PERSON");
|
||||||
|
private final static QName _VERSSACHE_QNAME = new QName("urn:omds20", "VERS_SACHE");
|
||||||
|
private final static QName _RISIKO_QNAME = new QName("urn:omds20", "RISIKO");
|
||||||
|
private final static QName _FONDS_QNAME = new QName("urn:omds20", "FONDS");
|
||||||
|
private final static QName _SCHADENBETEILIGTER_QNAME = new QName("urn:omds20", "SCHADEN_BETEILIGTER");
|
||||||
|
private final static QName _GESCHAEDIGTESOBJEKT_QNAME = new QName("urn:omds20", "GESCHAEDIGTES_OBJEKT");
|
||||||
|
private final static QName _ZAHLUNG_QNAME = new QName("urn:omds20", "ZAHLUNG");
|
||||||
|
private final static QName _ELGewinnbeteiligung_QNAME = new QName("urn:omds20", "EL-Gewinnbeteiligung");
|
||||||
|
private final static QName _ELGrenzwert_QNAME = new QName("urn:omds20", "EL-Grenzwert");
|
||||||
|
private final static QName _ELIndex_QNAME = new QName("urn:omds20", "EL-Index");
|
||||||
|
private final static QName _ELLegitimation_QNAME = new QName("urn:omds20", "EL-Legitimation");
|
||||||
|
private final static QName _ELObjekt_QNAME = new QName("urn:omds20", "EL-Objekt");
|
||||||
|
private final static QName _ELObjektdaten_QNAME = new QName("urn:omds20", "EL-Objektdaten");
|
||||||
|
private final static QName _ELFlaeche_QNAME = new QName("urn:omds20", "EL-Flaeche");
|
||||||
|
private final static QName _ELRente_QNAME = new QName("urn:omds20", "EL-Rente");
|
||||||
|
private final static QName _ELSteuer_QNAME = new QName("urn:omds20", "EL-Steuer");
|
||||||
|
private final static QName _ELVersicherungssumme_QNAME = new QName("urn:omds20", "EL-Versicherungssumme");
|
||||||
|
private final static QName _ELZeitraum_QNAME = new QName("urn:omds20", "EL-Zeitraum");
|
||||||
|
private final static QName _ELKFZKennzeichen_QNAME = new QName("urn:omds20", "EL-KFZ-Kennzeichen");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds2Types.v2_12_01
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjectFactory() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link OMDS }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public OMDS createOMDS() {
|
||||||
|
return new OMDS();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PAKET }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PAKET createPAKET() {
|
||||||
|
return new PAKET();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VERSUNTERNEHMEN }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERSUNTERNEHMEN createVERSUNTERNEHMEN() {
|
||||||
|
return new VERSUNTERNEHMEN();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELKommunikationType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELKommunikationType createELKommunikationType() {
|
||||||
|
return new ELKommunikationType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SCHLUESSELART }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SCHLUESSELART createSCHLUESSELART() {
|
||||||
|
return new SCHLUESSELART();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SCHLUESSEL }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SCHLUESSEL createSCHLUESSEL() {
|
||||||
|
return new SCHLUESSEL();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link KLAUSELType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public KLAUSELType createKLAUSELType() {
|
||||||
|
return new KLAUSELType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link LOESCHANSTOSSType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public LOESCHANSTOSSType createLOESCHANSTOSSType() {
|
||||||
|
return new LOESCHANSTOSSType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PERSONType createPERSONType() {
|
||||||
|
return new PERSONType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VERTRAG }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERTRAG createVERTRAG() {
|
||||||
|
return new VERTRAG();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VERTRAGType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERTRAGType createVERTRAGType() {
|
||||||
|
return new VERTRAGType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELAntragType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELAntragType createELAntragType() {
|
||||||
|
return new ELAntragType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELAnzahlType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELAnzahlType createELAnzahlType() {
|
||||||
|
return new ELAnzahlType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELBetragType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELBetragType createELBetragType() {
|
||||||
|
return new ELBetragType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELBezugsberechtigungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELBezugsberechtigungType createELBezugsberechtigungType() {
|
||||||
|
return new ELBezugsberechtigungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELEinstufungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELEinstufungType createELEinstufungType() {
|
||||||
|
return new ELEinstufungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELEntscheidungsfrageType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELEntscheidungsfrageType createELEntscheidungsfrageType() {
|
||||||
|
return new ELEntscheidungsfrageType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELIdentifizierungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELIdentifizierungType createELIdentifizierungType() {
|
||||||
|
return new ELIdentifizierungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELKlauselType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELKlauselType createELKlauselType() {
|
||||||
|
return new ELKlauselType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELPolizzennummerType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELPolizzennummerType createELPolizzennummerType() {
|
||||||
|
return new ELPolizzennummerType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELPraemienfreistellungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELPraemienfreistellungType createELPraemienfreistellungType() {
|
||||||
|
return new ELPraemienfreistellungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELPraemienkorrekturType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELPraemienkorrekturType createELPraemienkorrekturType() {
|
||||||
|
return new ELPraemienkorrekturType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELRahmenvereinbarungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELRahmenvereinbarungType createELRahmenvereinbarungType() {
|
||||||
|
return new ELRahmenvereinbarungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELSelbstbehalt }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELSelbstbehalt createELSelbstbehalt() {
|
||||||
|
return new ELSelbstbehalt();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELSelbstbehaltType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELSelbstbehaltType createELSelbstbehaltType() {
|
||||||
|
return new ELSelbstbehaltType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELTextType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELTextType createELTextType() {
|
||||||
|
return new ELTextType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VERTRAGSPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERTRAGSPERSONType createVERTRAGSPERSONType() {
|
||||||
|
return new VERTRAGSPERSONType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VERSOBJEKTType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERSOBJEKTType createVERSOBJEKTType() {
|
||||||
|
return new VERSOBJEKTType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SPARTEType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SPARTEType createSPARTEType() {
|
||||||
|
return new SPARTEType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SCHADENType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SCHADENType createSCHADENType() {
|
||||||
|
return new SCHADENType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PROVISIONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PROVISIONType createPROVISIONType() {
|
||||||
|
return new PROVISIONType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link MAHNUNGType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public MAHNUNGType createMAHNUNGType() {
|
||||||
|
return new MAHNUNGType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VERTRAGSFONDSType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERTRAGSFONDSType createVERTRAGSFONDSType() {
|
||||||
|
return new VERTRAGSFONDSType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link NATUERLICHEPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public NATUERLICHEPERSONType createNATUERLICHEPERSONType() {
|
||||||
|
return new NATUERLICHEPERSONType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SONSTIGEPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SONSTIGEPERSONType createSONSTIGEPERSONType() {
|
||||||
|
return new SONSTIGEPERSONType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VERSPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERSPERSONType createVERSPERSONType() {
|
||||||
|
return new VERSPERSONType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VERSKFZ }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERSKFZ createVERSKFZ() {
|
||||||
|
return new VERSKFZ();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VERSKFZType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERSKFZType createVERSKFZType() {
|
||||||
|
return new VERSKFZType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VERSSACHEType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERSSACHEType createVERSSACHEType() {
|
||||||
|
return new VERSSACHEType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link RISIKOType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public RISIKOType createRISIKOType() {
|
||||||
|
return new RISIKOType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link FONDSType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FONDSType createFONDSType() {
|
||||||
|
return new FONDSType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PORTFOLIO }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PORTFOLIO createPORTFOLIO() {
|
||||||
|
return new PORTFOLIO();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PORTFOLIOTYPE }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PORTFOLIOTYPE createPORTFOLIOTYPE() {
|
||||||
|
return new PORTFOLIOTYPE();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SCHADENBETEILIGTERType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SCHADENBETEILIGTERType createSCHADENBETEILIGTERType() {
|
||||||
|
return new SCHADENBETEILIGTERType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link GESCHAEDIGTESOBJEKTType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GESCHAEDIGTESOBJEKTType createGESCHAEDIGTESOBJEKTType() {
|
||||||
|
return new GESCHAEDIGTESOBJEKTType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZAHLUNGType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZAHLUNGType createZAHLUNGType() {
|
||||||
|
return new ZAHLUNGType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELGewinnbeteiligungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELGewinnbeteiligungType createELGewinnbeteiligungType() {
|
||||||
|
return new ELGewinnbeteiligungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELGrenzwertType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELGrenzwertType createELGrenzwertType() {
|
||||||
|
return new ELGrenzwertType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELIndexType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELIndexType createELIndexType() {
|
||||||
|
return new ELIndexType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELLegitimationType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELLegitimationType createELLegitimationType() {
|
||||||
|
return new ELLegitimationType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELObjektType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELObjektType createELObjektType() {
|
||||||
|
return new ELObjektType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELObjektdatenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELObjektdatenType createELObjektdatenType() {
|
||||||
|
return new ELObjektdatenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELFlaecheType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELFlaecheType createELFlaecheType() {
|
||||||
|
return new ELFlaecheType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELRenteType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELRenteType createELRenteType() {
|
||||||
|
return new ELRenteType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELSteuerType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELSteuerType createELSteuerType() {
|
||||||
|
return new ELSteuerType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELVersicherungssummeType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELVersicherungssummeType createELVersicherungssummeType() {
|
||||||
|
return new ELVersicherungssummeType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELZeitraumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELZeitraumType createELZeitraumType() {
|
||||||
|
return new ELZeitraumType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ELKFZKennzeichenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELKFZKennzeichenType createELKFZKennzeichenType() {
|
||||||
|
return new ELKFZKennzeichenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ADRESSEType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ADRESSEType createADRESSEType() {
|
||||||
|
return new ADRESSEType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Kommunikation")
|
||||||
|
public JAXBElement<ELKommunikationType> createELKommunikation(ELKommunikationType value) {
|
||||||
|
return new JAXBElement<ELKommunikationType>(_ELKommunikation_QNAME, ELKommunikationType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link KLAUSELType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "KLAUSEL")
|
||||||
|
public JAXBElement<KLAUSELType> createKLAUSEL(KLAUSELType value) {
|
||||||
|
return new JAXBElement<KLAUSELType>(_KLAUSEL_QNAME, KLAUSELType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link LOESCHANSTOSSType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "LOESCHANSTOSS")
|
||||||
|
public JAXBElement<LOESCHANSTOSSType> createLOESCHANSTOSS(LOESCHANSTOSSType value) {
|
||||||
|
return new JAXBElement<LOESCHANSTOSSType>(_LOESCHANSTOSS_QNAME, LOESCHANSTOSSType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link PERSONType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "PERSON")
|
||||||
|
public JAXBElement<PERSONType> createPERSON(PERSONType value) {
|
||||||
|
return new JAXBElement<PERSONType>(_PERSON_QNAME, PERSONType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELAntragType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Antrag")
|
||||||
|
public JAXBElement<ELAntragType> createELAntrag(ELAntragType value) {
|
||||||
|
return new JAXBElement<ELAntragType>(_ELAntrag_QNAME, ELAntragType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELAnzahlType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Anzahl")
|
||||||
|
public JAXBElement<ELAnzahlType> createELAnzahl(ELAnzahlType value) {
|
||||||
|
return new JAXBElement<ELAnzahlType>(_ELAnzahl_QNAME, ELAnzahlType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELBetragType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Betrag")
|
||||||
|
public JAXBElement<ELBetragType> createELBetrag(ELBetragType value) {
|
||||||
|
return new JAXBElement<ELBetragType>(_ELBetrag_QNAME, ELBetragType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELBezugsberechtigungType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Bezugsberechtigung")
|
||||||
|
public JAXBElement<ELBezugsberechtigungType> createELBezugsberechtigung(ELBezugsberechtigungType value) {
|
||||||
|
return new JAXBElement<ELBezugsberechtigungType>(_ELBezugsberechtigung_QNAME, ELBezugsberechtigungType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELEinstufungType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Einstufung")
|
||||||
|
public JAXBElement<ELEinstufungType> createELEinstufung(ELEinstufungType value) {
|
||||||
|
return new JAXBElement<ELEinstufungType>(_ELEinstufung_QNAME, ELEinstufungType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELEntscheidungsfrageType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Entscheidungsfrage")
|
||||||
|
public JAXBElement<ELEntscheidungsfrageType> createELEntscheidungsfrage(ELEntscheidungsfrageType value) {
|
||||||
|
return new JAXBElement<ELEntscheidungsfrageType>(_ELEntscheidungsfrage_QNAME, ELEntscheidungsfrageType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELIdentifizierungType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Identifizierung")
|
||||||
|
public JAXBElement<ELIdentifizierungType> createELIdentifizierung(ELIdentifizierungType value) {
|
||||||
|
return new JAXBElement<ELIdentifizierungType>(_ELIdentifizierung_QNAME, ELIdentifizierungType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELKlauselType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Klausel")
|
||||||
|
public JAXBElement<ELKlauselType> createELKlausel(ELKlauselType value) {
|
||||||
|
return new JAXBElement<ELKlauselType>(_ELKlausel_QNAME, ELKlauselType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELPolizzennummerType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Polizzennummer")
|
||||||
|
public JAXBElement<ELPolizzennummerType> createELPolizzennummer(ELPolizzennummerType value) {
|
||||||
|
return new JAXBElement<ELPolizzennummerType>(_ELPolizzennummer_QNAME, ELPolizzennummerType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELPraemienfreistellungType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Praemienfreistellung")
|
||||||
|
public JAXBElement<ELPraemienfreistellungType> createELPraemienfreistellung(ELPraemienfreistellungType value) {
|
||||||
|
return new JAXBElement<ELPraemienfreistellungType>(_ELPraemienfreistellung_QNAME, ELPraemienfreistellungType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELPraemienkorrekturType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Praemienkorrektur")
|
||||||
|
public JAXBElement<ELPraemienkorrekturType> createELPraemienkorrektur(ELPraemienkorrekturType value) {
|
||||||
|
return new JAXBElement<ELPraemienkorrekturType>(_ELPraemienkorrektur_QNAME, ELPraemienkorrekturType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELRahmenvereinbarungType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Rahmenvereinbarung")
|
||||||
|
public JAXBElement<ELRahmenvereinbarungType> createELRahmenvereinbarung(ELRahmenvereinbarungType value) {
|
||||||
|
return new JAXBElement<ELRahmenvereinbarungType>(_ELRahmenvereinbarung_QNAME, ELRahmenvereinbarungType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELTextType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Text")
|
||||||
|
public JAXBElement<ELTextType> createELText(ELTextType value) {
|
||||||
|
return new JAXBElement<ELTextType>(_ELText_QNAME, ELTextType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link VERTRAGSPERSONType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "VERTRAGSPERSON")
|
||||||
|
public JAXBElement<VERTRAGSPERSONType> createVERTRAGSPERSON(VERTRAGSPERSONType value) {
|
||||||
|
return new JAXBElement<VERTRAGSPERSONType>(_VERTRAGSPERSON_QNAME, VERTRAGSPERSONType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link VERSOBJEKTType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "VERS_OBJEKT")
|
||||||
|
public JAXBElement<VERSOBJEKTType> createVERSOBJEKT(VERSOBJEKTType value) {
|
||||||
|
return new JAXBElement<VERSOBJEKTType>(_VERSOBJEKT_QNAME, VERSOBJEKTType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link SPARTEType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "SPARTE")
|
||||||
|
public JAXBElement<SPARTEType> createSPARTE(SPARTEType value) {
|
||||||
|
return new JAXBElement<SPARTEType>(_SPARTE_QNAME, SPARTEType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link SCHADENType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "SCHADEN")
|
||||||
|
public JAXBElement<SCHADENType> createSCHADEN(SCHADENType value) {
|
||||||
|
return new JAXBElement<SCHADENType>(_SCHADEN_QNAME, SCHADENType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link PROVISIONType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "PROVISION")
|
||||||
|
public JAXBElement<PROVISIONType> createPROVISION(PROVISIONType value) {
|
||||||
|
return new JAXBElement<PROVISIONType>(_PROVISION_QNAME, PROVISIONType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link MAHNUNGType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "MAHNUNG")
|
||||||
|
public JAXBElement<MAHNUNGType> createMAHNUNG(MAHNUNGType value) {
|
||||||
|
return new JAXBElement<MAHNUNGType>(_MAHNUNG_QNAME, MAHNUNGType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link VERTRAGSFONDSType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "VERTRAGSFONDS")
|
||||||
|
public JAXBElement<VERTRAGSFONDSType> createVERTRAGSFONDS(VERTRAGSFONDSType value) {
|
||||||
|
return new JAXBElement<VERTRAGSFONDSType>(_VERTRAGSFONDS_QNAME, VERTRAGSFONDSType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link NATUERLICHEPERSONType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "NATUERLICHE_PERSON")
|
||||||
|
public JAXBElement<NATUERLICHEPERSONType> createNATUERLICHEPERSON(NATUERLICHEPERSONType value) {
|
||||||
|
return new JAXBElement<NATUERLICHEPERSONType>(_NATUERLICHEPERSON_QNAME, NATUERLICHEPERSONType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link SONSTIGEPERSONType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "SONSTIGE_PERSON")
|
||||||
|
public JAXBElement<SONSTIGEPERSONType> createSONSTIGEPERSON(SONSTIGEPERSONType value) {
|
||||||
|
return new JAXBElement<SONSTIGEPERSONType>(_SONSTIGEPERSON_QNAME, SONSTIGEPERSONType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link VERSPERSONType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "VERS_PERSON")
|
||||||
|
public JAXBElement<VERSPERSONType> createVERSPERSON(VERSPERSONType value) {
|
||||||
|
return new JAXBElement<VERSPERSONType>(_VERSPERSON_QNAME, VERSPERSONType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link VERSSACHEType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "VERS_SACHE")
|
||||||
|
public JAXBElement<VERSSACHEType> createVERSSACHE(VERSSACHEType value) {
|
||||||
|
return new JAXBElement<VERSSACHEType>(_VERSSACHE_QNAME, VERSSACHEType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link RISIKOType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "RISIKO")
|
||||||
|
public JAXBElement<RISIKOType> createRISIKO(RISIKOType value) {
|
||||||
|
return new JAXBElement<RISIKOType>(_RISIKO_QNAME, RISIKOType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link FONDSType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "FONDS")
|
||||||
|
public JAXBElement<FONDSType> createFONDS(FONDSType value) {
|
||||||
|
return new JAXBElement<FONDSType>(_FONDS_QNAME, FONDSType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link SCHADENBETEILIGTERType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "SCHADEN_BETEILIGTER")
|
||||||
|
public JAXBElement<SCHADENBETEILIGTERType> createSCHADENBETEILIGTER(SCHADENBETEILIGTERType value) {
|
||||||
|
return new JAXBElement<SCHADENBETEILIGTERType>(_SCHADENBETEILIGTER_QNAME, SCHADENBETEILIGTERType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link GESCHAEDIGTESOBJEKTType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "GESCHAEDIGTES_OBJEKT")
|
||||||
|
public JAXBElement<GESCHAEDIGTESOBJEKTType> createGESCHAEDIGTESOBJEKT(GESCHAEDIGTESOBJEKTType value) {
|
||||||
|
return new JAXBElement<GESCHAEDIGTESOBJEKTType>(_GESCHAEDIGTESOBJEKT_QNAME, GESCHAEDIGTESOBJEKTType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ZAHLUNGType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "ZAHLUNG")
|
||||||
|
public JAXBElement<ZAHLUNGType> createZAHLUNG(ZAHLUNGType value) {
|
||||||
|
return new JAXBElement<ZAHLUNGType>(_ZAHLUNG_QNAME, ZAHLUNGType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELGewinnbeteiligungType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Gewinnbeteiligung")
|
||||||
|
public JAXBElement<ELGewinnbeteiligungType> createELGewinnbeteiligung(ELGewinnbeteiligungType value) {
|
||||||
|
return new JAXBElement<ELGewinnbeteiligungType>(_ELGewinnbeteiligung_QNAME, ELGewinnbeteiligungType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELGrenzwertType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Grenzwert")
|
||||||
|
public JAXBElement<ELGrenzwertType> createELGrenzwert(ELGrenzwertType value) {
|
||||||
|
return new JAXBElement<ELGrenzwertType>(_ELGrenzwert_QNAME, ELGrenzwertType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELIndexType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Index")
|
||||||
|
public JAXBElement<ELIndexType> createELIndex(ELIndexType value) {
|
||||||
|
return new JAXBElement<ELIndexType>(_ELIndex_QNAME, ELIndexType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELLegitimationType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Legitimation")
|
||||||
|
public JAXBElement<ELLegitimationType> createELLegitimation(ELLegitimationType value) {
|
||||||
|
return new JAXBElement<ELLegitimationType>(_ELLegitimation_QNAME, ELLegitimationType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELObjektType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Objekt")
|
||||||
|
public JAXBElement<ELObjektType> createELObjekt(ELObjektType value) {
|
||||||
|
return new JAXBElement<ELObjektType>(_ELObjekt_QNAME, ELObjektType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELObjektdatenType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Objektdaten")
|
||||||
|
public JAXBElement<ELObjektdatenType> createELObjektdaten(ELObjektdatenType value) {
|
||||||
|
return new JAXBElement<ELObjektdatenType>(_ELObjektdaten_QNAME, ELObjektdatenType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELFlaecheType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Flaeche")
|
||||||
|
public JAXBElement<ELFlaecheType> createELFlaeche(ELFlaecheType value) {
|
||||||
|
return new JAXBElement<ELFlaecheType>(_ELFlaeche_QNAME, ELFlaecheType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELRenteType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Rente")
|
||||||
|
public JAXBElement<ELRenteType> createELRente(ELRenteType value) {
|
||||||
|
return new JAXBElement<ELRenteType>(_ELRente_QNAME, ELRenteType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELSteuerType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Steuer")
|
||||||
|
public JAXBElement<ELSteuerType> createELSteuer(ELSteuerType value) {
|
||||||
|
return new JAXBElement<ELSteuerType>(_ELSteuer_QNAME, ELSteuerType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELVersicherungssummeType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Versicherungssumme")
|
||||||
|
public JAXBElement<ELVersicherungssummeType> createELVersicherungssumme(ELVersicherungssummeType value) {
|
||||||
|
return new JAXBElement<ELVersicherungssummeType>(_ELVersicherungssumme_QNAME, ELVersicherungssummeType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELZeitraumType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Zeitraum")
|
||||||
|
public JAXBElement<ELZeitraumType> createELZeitraum(ELZeitraumType value) {
|
||||||
|
return new JAXBElement<ELZeitraumType>(_ELZeitraum_QNAME, ELZeitraumType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELKFZKennzeichenType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-KFZ-Kennzeichen")
|
||||||
|
public JAXBElement<ELKFZKennzeichenType> createELKFZKennzeichen(ELKFZKennzeichenType value) {
|
||||||
|
return new JAXBElement<ELKFZKennzeichenType>(_ELKFZKennzeichen_QNAME, ELKFZKennzeichenType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,678 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <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">
|
||||||
|
* <choice>
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds20}VERS_UNTERNEHMEN" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}SCHLUESSELART" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds20}KLAUSEL" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* <group ref="{urn:omds20}bestand"/>
|
||||||
|
* </choice>
|
||||||
|
* <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
|
||||||
|
* <attribute name="MaklerID" use="required" type="{urn:omds20}MaklerID_Type" />
|
||||||
|
* <attribute name="PaketZpktErstell" use="required" type="{urn:omds20}Datum-Zeit" />
|
||||||
|
* <attribute name="PaketZpktLetztErstell" type="{urn:omds20}Datum-Zeit" />
|
||||||
|
* <attribute name="PaketInhCd" use="required" type="{urn:omds20}PaketInhCd_Type" />
|
||||||
|
* <attribute name="PaketUmfCd" use="required" type="{urn:omds20}PaketUmfCd_Type" />
|
||||||
|
* <attribute name="OMDSVersion" use="required" type="{urn:omds20}OMDSVersion_Type" />
|
||||||
|
* <attribute name="VUVersion" type="{urn:omds20}OMDSVersion_Type" />
|
||||||
|
* <attribute name="DVRNrAbs" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="8"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="PaketKommentar">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="80"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="SprachCd" type="{urn:omds20}SprachCd_Type" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"versunternehmen",
|
||||||
|
"schluesselart",
|
||||||
|
"klausel",
|
||||||
|
"loeschanstoss",
|
||||||
|
"person",
|
||||||
|
"vertrag",
|
||||||
|
"schaden",
|
||||||
|
"provision",
|
||||||
|
"mahnung",
|
||||||
|
"vertragsfonds"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "PAKET")
|
||||||
|
public class PAKET {
|
||||||
|
|
||||||
|
@XmlElement(name = "VERS_UNTERNEHMEN")
|
||||||
|
protected List<VERSUNTERNEHMEN> versunternehmen;
|
||||||
|
@XmlElement(name = "SCHLUESSELART")
|
||||||
|
protected List<SCHLUESSELART> schluesselart;
|
||||||
|
@XmlElement(name = "KLAUSEL")
|
||||||
|
protected List<KLAUSELType> klausel;
|
||||||
|
@XmlElement(name = "LOESCHANSTOSS")
|
||||||
|
protected List<LOESCHANSTOSSType> loeschanstoss;
|
||||||
|
@XmlElement(name = "PERSON")
|
||||||
|
protected List<PERSONType> person;
|
||||||
|
@XmlElement(name = "VERTRAG")
|
||||||
|
protected List<VERTRAG> vertrag;
|
||||||
|
@XmlElement(name = "SCHADEN")
|
||||||
|
protected List<SCHADENType> schaden;
|
||||||
|
@XmlElement(name = "PROVISION")
|
||||||
|
protected List<PROVISIONType> provision;
|
||||||
|
@XmlElement(name = "MAHNUNG")
|
||||||
|
protected List<MAHNUNGType> mahnung;
|
||||||
|
@XmlElement(name = "VERTRAGSFONDS")
|
||||||
|
protected List<VERTRAGSFONDSType> vertragsfonds;
|
||||||
|
@XmlAttribute(name = "VUNr", required = true)
|
||||||
|
protected String vuNr;
|
||||||
|
@XmlAttribute(name = "MaklerID", required = true)
|
||||||
|
protected String maklerID;
|
||||||
|
@XmlAttribute(name = "PaketZpktErstell", required = true)
|
||||||
|
protected XMLGregorianCalendar paketZpktErstell;
|
||||||
|
@XmlAttribute(name = "PaketZpktLetztErstell")
|
||||||
|
protected XMLGregorianCalendar paketZpktLetztErstell;
|
||||||
|
@XmlAttribute(name = "PaketInhCd", required = true)
|
||||||
|
protected PaketInhCdType paketInhCd;
|
||||||
|
@XmlAttribute(name = "PaketUmfCd", required = true)
|
||||||
|
protected PaketUmfCdType paketUmfCd;
|
||||||
|
@XmlAttribute(name = "OMDSVersion", required = true)
|
||||||
|
protected String omdsVersion;
|
||||||
|
@XmlAttribute(name = "VUVersion")
|
||||||
|
protected String vuVersion;
|
||||||
|
@XmlAttribute(name = "DVRNrAbs", required = true)
|
||||||
|
protected String dvrNrAbs;
|
||||||
|
@XmlAttribute(name = "PaketKommentar")
|
||||||
|
protected String paketKommentar;
|
||||||
|
@XmlAttribute(name = "SprachCd")
|
||||||
|
protected SprachCdType sprachCd;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the versunternehmen 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 versunternehmen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVERSUNTERNEHMEN().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link VERSUNTERNEHMEN }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<VERSUNTERNEHMEN> getVERSUNTERNEHMEN() {
|
||||||
|
if (versunternehmen == null) {
|
||||||
|
versunternehmen = new ArrayList<VERSUNTERNEHMEN>();
|
||||||
|
}
|
||||||
|
return this.versunternehmen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the schluesselart 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 schluesselart property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getSCHLUESSELART().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link SCHLUESSELART }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<SCHLUESSELART> getSCHLUESSELART() {
|
||||||
|
if (schluesselart == null) {
|
||||||
|
schluesselart = new ArrayList<SCHLUESSELART>();
|
||||||
|
}
|
||||||
|
return this.schluesselart;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the klausel 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 klausel property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getKLAUSEL().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link KLAUSELType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<KLAUSELType> getKLAUSEL() {
|
||||||
|
if (klausel == null) {
|
||||||
|
klausel = new ArrayList<KLAUSELType>();
|
||||||
|
}
|
||||||
|
return this.klausel;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the loeschanstoss 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 loeschanstoss property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getLOESCHANSTOSS().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link LOESCHANSTOSSType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<LOESCHANSTOSSType> getLOESCHANSTOSS() {
|
||||||
|
if (loeschanstoss == null) {
|
||||||
|
loeschanstoss = new ArrayList<LOESCHANSTOSSType>();
|
||||||
|
}
|
||||||
|
return this.loeschanstoss;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the person 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 person property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getPERSON().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link PERSONType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<PERSONType> getPERSON() {
|
||||||
|
if (person == null) {
|
||||||
|
person = new ArrayList<PERSONType>();
|
||||||
|
}
|
||||||
|
return this.person;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 VERTRAG }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<VERTRAG> getVERTRAG() {
|
||||||
|
if (vertrag == null) {
|
||||||
|
vertrag = new ArrayList<VERTRAG>();
|
||||||
|
}
|
||||||
|
return this.vertrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the schaden 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 schaden property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getSCHADEN().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link SCHADENType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<SCHADENType> getSCHADEN() {
|
||||||
|
if (schaden == null) {
|
||||||
|
schaden = new ArrayList<SCHADENType>();
|
||||||
|
}
|
||||||
|
return this.schaden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the provision 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 provision property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getPROVISION().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link PROVISIONType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<PROVISIONType> getPROVISION() {
|
||||||
|
if (provision == null) {
|
||||||
|
provision = new ArrayList<PROVISIONType>();
|
||||||
|
}
|
||||||
|
return this.provision;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the mahnung 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 mahnung property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getMAHNUNG().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link MAHNUNGType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<MAHNUNGType> getMAHNUNG() {
|
||||||
|
if (mahnung == null) {
|
||||||
|
mahnung = new ArrayList<MAHNUNGType>();
|
||||||
|
}
|
||||||
|
return this.mahnung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the vertragsfonds 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 vertragsfonds property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVERTRAGSFONDS().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link VERTRAGSFONDSType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<VERTRAGSFONDSType> getVERTRAGSFONDS() {
|
||||||
|
if (vertragsfonds == null) {
|
||||||
|
vertragsfonds = new ArrayList<VERTRAGSFONDSType>();
|
||||||
|
}
|
||||||
|
return this.vertragsfonds;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vuNr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVUNr() {
|
||||||
|
return vuNr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vuNr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVUNr(String value) {
|
||||||
|
this.vuNr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der maklerID-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMaklerID() {
|
||||||
|
return maklerID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der maklerID-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMaklerID(String value) {
|
||||||
|
this.maklerID = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der paketZpktErstell-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getPaketZpktErstell() {
|
||||||
|
return paketZpktErstell;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der paketZpktErstell-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPaketZpktErstell(XMLGregorianCalendar value) {
|
||||||
|
this.paketZpktErstell = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der paketZpktLetztErstell-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getPaketZpktLetztErstell() {
|
||||||
|
return paketZpktLetztErstell;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der paketZpktLetztErstell-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPaketZpktLetztErstell(XMLGregorianCalendar value) {
|
||||||
|
this.paketZpktLetztErstell = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der paketInhCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link PaketInhCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PaketInhCdType getPaketInhCd() {
|
||||||
|
return paketInhCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der paketInhCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link PaketInhCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPaketInhCd(PaketInhCdType value) {
|
||||||
|
this.paketInhCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der paketUmfCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link PaketUmfCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PaketUmfCdType getPaketUmfCd() {
|
||||||
|
return paketUmfCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der paketUmfCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link PaketUmfCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPaketUmfCd(PaketUmfCdType value) {
|
||||||
|
this.paketUmfCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der omdsVersion-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getOMDSVersion() {
|
||||||
|
return omdsVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der omdsVersion-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOMDSVersion(String value) {
|
||||||
|
this.omdsVersion = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vuVersion-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVUVersion() {
|
||||||
|
return vuVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vuVersion-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVUVersion(String value) {
|
||||||
|
this.vuVersion = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dvrNrAbs-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getDVRNrAbs() {
|
||||||
|
return dvrNrAbs;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dvrNrAbs-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDVRNrAbs(String value) {
|
||||||
|
this.dvrNrAbs = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der paketKommentar-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPaketKommentar() {
|
||||||
|
return paketKommentar;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der paketKommentar-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPaketKommentar(String value) {
|
||||||
|
this.paketKommentar = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sprachCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SprachCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SprachCdType getSprachCd() {
|
||||||
|
return sprachCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sprachCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SprachCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSprachCd(SprachCdType value) {
|
||||||
|
this.sprachCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,396 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElements;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PERSON_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="PERSON_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <choice>
|
||||||
|
* <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
|
||||||
|
* <element ref="{urn:omds20}SONSTIGE_PERSON"/>
|
||||||
|
* </choice>
|
||||||
|
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <element ref="{urn:omds20}EL-Anzahl"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Einstufung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Identifizierung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Kommunikation"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Legitimation"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Text"/>
|
||||||
|
* </choice>
|
||||||
|
* </sequence>
|
||||||
|
* <attGroup ref="{urn:omds20}Adresse_Attribute"/>
|
||||||
|
* <attribute name="Personennr" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{urn:omds20}Personennr">
|
||||||
|
* <maxLength value="26"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "PERSON_Type", propOrder = {
|
||||||
|
"natuerlicheperson",
|
||||||
|
"sonstigeperson",
|
||||||
|
"elAnzahlOrELEinstufungOrELEntscheidungsfrage"
|
||||||
|
})
|
||||||
|
public class PERSONType {
|
||||||
|
|
||||||
|
@XmlElement(name = "NATUERLICHE_PERSON")
|
||||||
|
protected NATUERLICHEPERSONType natuerlicheperson;
|
||||||
|
@XmlElement(name = "SONSTIGE_PERSON")
|
||||||
|
protected SONSTIGEPERSONType sonstigeperson;
|
||||||
|
@XmlElements({
|
||||||
|
@XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class),
|
||||||
|
@XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class),
|
||||||
|
@XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class),
|
||||||
|
@XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class),
|
||||||
|
@XmlElement(name = "EL-Kommunikation", type = ELKommunikationType.class),
|
||||||
|
@XmlElement(name = "EL-Legitimation", type = ELLegitimationType.class),
|
||||||
|
@XmlElement(name = "EL-Text", type = ELTextType.class)
|
||||||
|
})
|
||||||
|
protected List<Object> elAnzahlOrELEinstufungOrELEntscheidungsfrage;
|
||||||
|
@XmlAttribute(name = "Personennr", required = true)
|
||||||
|
protected String personennr;
|
||||||
|
@XmlAttribute(name = "PersArtCd", required = true)
|
||||||
|
protected PersArtCdType persArtCd;
|
||||||
|
@XmlAttribute(name = "Pac")
|
||||||
|
@XmlSchemaType(name = "unsignedInt")
|
||||||
|
protected Long pac;
|
||||||
|
@XmlAttribute(name = "LandesCd")
|
||||||
|
protected String landesCd;
|
||||||
|
@XmlAttribute(name = "PLZ")
|
||||||
|
protected String plz;
|
||||||
|
@XmlAttribute(name = "Ort")
|
||||||
|
protected String ort;
|
||||||
|
@XmlAttribute(name = "Strasse")
|
||||||
|
protected String strasse;
|
||||||
|
@XmlAttribute(name = "Hausnr")
|
||||||
|
protected String hausnr;
|
||||||
|
@XmlAttribute(name = "Zusatz")
|
||||||
|
protected String zusatz;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der natuerlicheperson-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link NATUERLICHEPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public NATUERLICHEPERSONType getNATUERLICHEPERSON() {
|
||||||
|
return natuerlicheperson;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der natuerlicheperson-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link NATUERLICHEPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) {
|
||||||
|
this.natuerlicheperson = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sonstigeperson-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SONSTIGEPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SONSTIGEPERSONType getSONSTIGEPERSON() {
|
||||||
|
return sonstigeperson;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sonstigeperson-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SONSTIGEPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSONSTIGEPERSON(SONSTIGEPERSONType value) {
|
||||||
|
this.sonstigeperson = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage 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 elAnzahlOrELEinstufungOrELEntscheidungsfrage property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELAnzahlOrELEinstufungOrELEntscheidungsfrage().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELAnzahlType }
|
||||||
|
* {@link ELEinstufungType }
|
||||||
|
* {@link ELEntscheidungsfrageType }
|
||||||
|
* {@link ELIdentifizierungType }
|
||||||
|
* {@link ELKommunikationType }
|
||||||
|
* {@link ELLegitimationType }
|
||||||
|
* {@link ELTextType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<Object> getELAnzahlOrELEinstufungOrELEntscheidungsfrage() {
|
||||||
|
if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) {
|
||||||
|
elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList<Object>();
|
||||||
|
}
|
||||||
|
return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der personennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPersonennr() {
|
||||||
|
return personennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der personennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPersonennr(String value) {
|
||||||
|
this.personennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der persArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link PersArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PersArtCdType getPersArtCd() {
|
||||||
|
return persArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der persArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link PersArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPersArtCd(PersArtCdType value) {
|
||||||
|
this.persArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der pac-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Long getPac() {
|
||||||
|
return pac;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der pac-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPac(Long value) {
|
||||||
|
this.pac = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der landesCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getLandesCd() {
|
||||||
|
return landesCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der landesCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLandesCd(String value) {
|
||||||
|
this.landesCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der plz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPLZ() {
|
||||||
|
return plz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der plz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPLZ(String value) {
|
||||||
|
this.plz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getOrt() {
|
||||||
|
return ort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOrt(String value) {
|
||||||
|
this.ort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der strasse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getStrasse() {
|
||||||
|
return strasse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der strasse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStrasse(String value) {
|
||||||
|
this.strasse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hausnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getHausnr() {
|
||||||
|
return hausnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hausnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHausnr(String value) {
|
||||||
|
this.hausnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zusatz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZusatz() {
|
||||||
|
return zusatz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zusatz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZusatz(String value) {
|
||||||
|
this.zusatz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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>
|
||||||
|
* <extension base="{urn:omds20}PORTFOLIO_TYPE">
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"fonds"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "PORTFOLIO")
|
||||||
|
public class PORTFOLIO
|
||||||
|
extends PORTFOLIOTYPE
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "FONDS")
|
||||||
|
protected List<FONDSType> fonds;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the fonds 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 fonds property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getFONDS().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link FONDSType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<FONDSType> getFONDS() {
|
||||||
|
if (fonds == null) {
|
||||||
|
fonds = new ArrayList<FONDSType>();
|
||||||
|
}
|
||||||
|
return this.fonds;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,307 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PORTFOLIO_TYPE complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="PORTFOLIO_TYPE">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="PortfolioID" use="required" type="{urn:omds20}PortfolioID_Type" />
|
||||||
|
* <attribute name="ISIN" type="{urn:omds20}ISIN_Type" />
|
||||||
|
* <attribute name="WKN" type="{urn:omds20}WKN_Type" />
|
||||||
|
* <attribute name="Bezeichnung" use="required" type="{urn:omds20}FondsBez_Type" />
|
||||||
|
* <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
|
||||||
|
* <attribute name="AnteilWertpapier" type="{urn:omds20}FondsAnteil_Type" />
|
||||||
|
* <attribute name="Prozentsatz" use="required" type="{urn:omds20}Prozentsatz_Type" />
|
||||||
|
* <attribute name="Wert" type="{urn:omds20}FondsBetrag_Type" />
|
||||||
|
* <attribute name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" />
|
||||||
|
* <attribute name="Stichtag" type="{urn:omds20}Datum" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "PORTFOLIO_TYPE")
|
||||||
|
@XmlSeeAlso({
|
||||||
|
PORTFOLIO.class
|
||||||
|
})
|
||||||
|
public class PORTFOLIOTYPE {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "PortfolioID", required = true)
|
||||||
|
protected String portfolioID;
|
||||||
|
@XmlAttribute(name = "ISIN")
|
||||||
|
protected String isin;
|
||||||
|
@XmlAttribute(name = "WKN")
|
||||||
|
protected String wkn;
|
||||||
|
@XmlAttribute(name = "Bezeichnung", required = true)
|
||||||
|
protected String bezeichnung;
|
||||||
|
@XmlAttribute(name = "Kurs")
|
||||||
|
protected BigDecimal kurs;
|
||||||
|
@XmlAttribute(name = "AnteilWertpapier")
|
||||||
|
protected BigDecimal anteilWertpapier;
|
||||||
|
@XmlAttribute(name = "Prozentsatz", required = true)
|
||||||
|
protected BigDecimal prozentsatz;
|
||||||
|
@XmlAttribute(name = "Wert")
|
||||||
|
protected BigDecimal wert;
|
||||||
|
@XmlAttribute(name = "WaehrungsCd")
|
||||||
|
protected WaehrungsCdType waehrungsCd;
|
||||||
|
@XmlAttribute(name = "Stichtag")
|
||||||
|
protected XMLGregorianCalendar stichtag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der portfolioID-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPortfolioID() {
|
||||||
|
return portfolioID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der portfolioID-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPortfolioID(String value) {
|
||||||
|
this.portfolioID = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der isin-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getISIN() {
|
||||||
|
return isin;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der isin-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setISIN(String value) {
|
||||||
|
this.isin = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der wkn-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getWKN() {
|
||||||
|
return wkn;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wkn-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWKN(String value) {
|
||||||
|
this.wkn = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBezeichnung() {
|
||||||
|
return bezeichnung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBezeichnung(String value) {
|
||||||
|
this.bezeichnung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kurs-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getKurs() {
|
||||||
|
return kurs;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kurs-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKurs(BigDecimal value) {
|
||||||
|
this.kurs = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der anteilWertpapier-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getAnteilWertpapier() {
|
||||||
|
return anteilWertpapier;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der anteilWertpapier-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAnteilWertpapier(BigDecimal value) {
|
||||||
|
this.anteilWertpapier = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der prozentsatz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getProzentsatz() {
|
||||||
|
return prozentsatz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der prozentsatz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProzentsatz(BigDecimal value) {
|
||||||
|
this.prozentsatz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der wert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getWert() {
|
||||||
|
return wert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWert(BigDecimal value) {
|
||||||
|
this.wert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der waehrungsCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public WaehrungsCdType getWaehrungsCd() {
|
||||||
|
return waehrungsCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der waehrungsCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWaehrungsCd(WaehrungsCdType value) {
|
||||||
|
this.waehrungsCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der stichtag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getStichtag() {
|
||||||
|
return stichtag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der stichtag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStichtag(XMLGregorianCalendar value) {
|
||||||
|
this.stichtag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,544 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PROVISION_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="PROVISION_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="ProvisionsID" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="26"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
|
||||||
|
* <attribute name="Polizzennr" type="{urn:omds20}Polizzennr" />
|
||||||
|
* <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
|
||||||
|
* <attribute name="VerbandSparteCd" type="{urn:omds20}VerbandSparteCd_Type" />
|
||||||
|
* <attribute name="SpartenCd" type="{urn:omds20}SpartenCd_Type" />
|
||||||
|
* <attribute name="SpartenErweiterung">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="10"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="BuchDat" use="required" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="ProvVon" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="ProvBis" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="ProvArtCd" use="required" type="{urn:omds20}ProvArtCd_Type" />
|
||||||
|
* <attribute name="ProvTxt">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="90"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="ProvGrdlg" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="ProvSatz" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="ProvBetrag" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
|
||||||
|
* <attribute name="ProvArtText">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="90"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Vorpolizze" type="{urn:omds20}Polizzennr" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "PROVISION_Type")
|
||||||
|
public class PROVISIONType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "ProvisionsID", required = true)
|
||||||
|
protected String provisionsID;
|
||||||
|
@XmlAttribute(name = "Vermnr", required = true)
|
||||||
|
protected String vermnr;
|
||||||
|
@XmlAttribute(name = "Polizzennr")
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlAttribute(name = "VertragsID")
|
||||||
|
protected String vertragsID;
|
||||||
|
@XmlAttribute(name = "VerbandSparteCd")
|
||||||
|
protected String verbandSparteCd;
|
||||||
|
@XmlAttribute(name = "SpartenCd")
|
||||||
|
protected String spartenCd;
|
||||||
|
@XmlAttribute(name = "SpartenErweiterung")
|
||||||
|
protected String spartenErweiterung;
|
||||||
|
@XmlAttribute(name = "BuchDat", required = true)
|
||||||
|
protected XMLGregorianCalendar buchDat;
|
||||||
|
@XmlAttribute(name = "ProvVon")
|
||||||
|
protected XMLGregorianCalendar provVon;
|
||||||
|
@XmlAttribute(name = "ProvBis")
|
||||||
|
protected XMLGregorianCalendar provBis;
|
||||||
|
@XmlAttribute(name = "ProvArtCd", required = true)
|
||||||
|
protected String provArtCd;
|
||||||
|
@XmlAttribute(name = "ProvTxt")
|
||||||
|
protected String provTxt;
|
||||||
|
@XmlAttribute(name = "ProvGrdlg")
|
||||||
|
protected BigDecimal provGrdlg;
|
||||||
|
@XmlAttribute(name = "ProvSatz")
|
||||||
|
protected BigDecimal provSatz;
|
||||||
|
@XmlAttribute(name = "ProvBetrag", required = true)
|
||||||
|
protected BigDecimal provBetrag;
|
||||||
|
@XmlAttribute(name = "WaehrungsCd", required = true)
|
||||||
|
protected WaehrungsCdType waehrungsCd;
|
||||||
|
@XmlAttribute(name = "ProvArtText")
|
||||||
|
protected String provArtText;
|
||||||
|
@XmlAttribute(name = "Vorpolizze")
|
||||||
|
protected String vorpolizze;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der provisionsID-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getProvisionsID() {
|
||||||
|
return provisionsID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der provisionsID-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProvisionsID(String value) {
|
||||||
|
this.provisionsID = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vermnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVermnr() {
|
||||||
|
return vermnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vermnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVermnr(String value) {
|
||||||
|
this.vermnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verbandSparteCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVerbandSparteCd() {
|
||||||
|
return verbandSparteCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verbandSparteCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerbandSparteCd(String value) {
|
||||||
|
this.verbandSparteCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 spartenErweiterung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSpartenErweiterung() {
|
||||||
|
return spartenErweiterung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der spartenErweiterung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSpartenErweiterung(String value) {
|
||||||
|
this.spartenErweiterung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der buchDat-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getBuchDat() {
|
||||||
|
return buchDat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der buchDat-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBuchDat(XMLGregorianCalendar value) {
|
||||||
|
this.buchDat = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der provVon-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getProvVon() {
|
||||||
|
return provVon;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der provVon-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProvVon(XMLGregorianCalendar value) {
|
||||||
|
this.provVon = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der provBis-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getProvBis() {
|
||||||
|
return provBis;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der provBis-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProvBis(XMLGregorianCalendar value) {
|
||||||
|
this.provBis = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der provArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getProvArtCd() {
|
||||||
|
return provArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der provArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProvArtCd(String value) {
|
||||||
|
this.provArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der provTxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getProvTxt() {
|
||||||
|
return provTxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der provTxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProvTxt(String value) {
|
||||||
|
this.provTxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der provGrdlg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getProvGrdlg() {
|
||||||
|
return provGrdlg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der provGrdlg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProvGrdlg(BigDecimal value) {
|
||||||
|
this.provGrdlg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der provSatz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getProvSatz() {
|
||||||
|
return provSatz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der provSatz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProvSatz(BigDecimal value) {
|
||||||
|
this.provSatz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der provBetrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getProvBetrag() {
|
||||||
|
return provBetrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der provBetrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProvBetrag(BigDecimal value) {
|
||||||
|
this.provBetrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der waehrungsCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public WaehrungsCdType getWaehrungsCd() {
|
||||||
|
return waehrungsCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der waehrungsCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWaehrungsCd(WaehrungsCdType value) {
|
||||||
|
this.waehrungsCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der provArtText-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getProvArtText() {
|
||||||
|
return provArtText;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der provArtText-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProvArtText(String value) {
|
||||||
|
this.provArtText = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vorpolizze-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVorpolizze() {
|
||||||
|
return vorpolizze;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vorpolizze-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVorpolizze(String value) {
|
||||||
|
this.vorpolizze = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PaketInhCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="PaketInhCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="AI"/>
|
||||||
|
* <enumeration value="VF"/>
|
||||||
|
* <enumeration value="VI"/>
|
||||||
|
* <enumeration value="VK"/>
|
||||||
|
* <enumeration value="VM"/>
|
||||||
|
* <enumeration value="VP"/>
|
||||||
|
* <enumeration value="VS"/>
|
||||||
|
* <enumeration value="VV"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "PaketInhCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum PaketInhCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allgem. Initialbestand (generelle Schlüssel)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
AI,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VU Fondsbestand
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VF,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VU Initialbestand (VU Schlüssel)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VI,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VU Mahn/Klagebestand
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VK,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VU Mischbestand
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VM,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VU Provisionen
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VP,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VU Schadenbestand
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VU Vertragsbestand
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VV;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static PaketInhCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PaketUmfCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="PaketUmfCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="D"/>
|
||||||
|
* <enumeration value="G"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "PaketUmfCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum PaketUmfCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Differenz
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
D,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gesamt
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
G;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static PaketUmfCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PersArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="PersArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="N"/>
|
||||||
|
* <enumeration value="S"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "PersArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum PersArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* natürliche Person
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
N,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sonstige Person
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
S;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static PersArtCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PolArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="PolArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="E"/>
|
||||||
|
* <enumeration value="N"/>
|
||||||
|
* <enumeration value="V"/>
|
||||||
|
* <enumeration value="X"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "PolArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum PolArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ersatzpolizze bei Ersatz/Konv.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
E,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Nachversicherung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
N,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vorpolizze bei Ersatz/Konv.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
V,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vorpolizze bei Migration
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
X;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static PolArtCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PraemFristCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="PraemFristCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="E"/>
|
||||||
|
* <enumeration value="J"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "PraemFristCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum PraemFristCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Einmal
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
E,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Jahr
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
J;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static PraemFristCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,263 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElements;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für RISIKO_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="RISIKO_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <element ref="{urn:omds20}EL-Anzahl"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Betrag"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Einstufung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Grenzwert"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Index"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Identifizierung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Klausel"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Objekt"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Praemienkorrektur"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Rente"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Selbstbehalt"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Steuer"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Text"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Versicherungssumme"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Zeitraum"/>
|
||||||
|
* </choice>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="RisikoLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="RisikoArtCd" type="{urn:omds20}RisikoArtCd_Type" />
|
||||||
|
* <attribute name="RisikoBez" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="80"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="PraemFristCd" type="{urn:omds20}PraemFristCd_Type" />
|
||||||
|
* <attribute name="PraemieNto" type="{urn:omds20}decimal" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "RISIKO_Type", propOrder = {
|
||||||
|
"elAnzahlOrELBetragOrELBezugsberechtigung"
|
||||||
|
})
|
||||||
|
public class RISIKOType {
|
||||||
|
|
||||||
|
@XmlElements({
|
||||||
|
@XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class),
|
||||||
|
@XmlElement(name = "EL-Betrag", type = ELBetragType.class),
|
||||||
|
@XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class),
|
||||||
|
@XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class),
|
||||||
|
@XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class),
|
||||||
|
@XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class),
|
||||||
|
@XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class),
|
||||||
|
@XmlElement(name = "EL-Index", type = ELIndexType.class),
|
||||||
|
@XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class),
|
||||||
|
@XmlElement(name = "EL-Klausel", type = ELKlauselType.class),
|
||||||
|
@XmlElement(name = "EL-Objekt", type = ELObjektType.class),
|
||||||
|
@XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class),
|
||||||
|
@XmlElement(name = "EL-Rente", type = ELRenteType.class),
|
||||||
|
@XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class),
|
||||||
|
@XmlElement(name = "EL-Steuer", type = ELSteuerType.class),
|
||||||
|
@XmlElement(name = "EL-Text", type = ELTextType.class),
|
||||||
|
@XmlElement(name = "EL-Versicherungssumme", type = ELVersicherungssummeType.class),
|
||||||
|
@XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class)
|
||||||
|
})
|
||||||
|
protected List<Object> elAnzahlOrELBetragOrELBezugsberechtigung;
|
||||||
|
@XmlAttribute(name = "RisikoLfnr", required = true)
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int risikoLfnr;
|
||||||
|
@XmlAttribute(name = "RisikoArtCd")
|
||||||
|
protected RisikoArtCdType risikoArtCd;
|
||||||
|
@XmlAttribute(name = "RisikoBez", required = true)
|
||||||
|
protected String risikoBez;
|
||||||
|
@XmlAttribute(name = "PraemFristCd")
|
||||||
|
protected PraemFristCdType praemFristCd;
|
||||||
|
@XmlAttribute(name = "PraemieNto")
|
||||||
|
protected BigDecimal praemieNto;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung 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 elAnzahlOrELBetragOrELBezugsberechtigung property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELAnzahlType }
|
||||||
|
* {@link ELBetragType }
|
||||||
|
* {@link ELBezugsberechtigungType }
|
||||||
|
* {@link ELEinstufungType }
|
||||||
|
* {@link ELEntscheidungsfrageType }
|
||||||
|
* {@link ELGewinnbeteiligungType }
|
||||||
|
* {@link ELGrenzwertType }
|
||||||
|
* {@link ELIndexType }
|
||||||
|
* {@link ELIdentifizierungType }
|
||||||
|
* {@link ELKlauselType }
|
||||||
|
* {@link ELObjektType }
|
||||||
|
* {@link ELPraemienkorrekturType }
|
||||||
|
* {@link ELRenteType }
|
||||||
|
* {@link ELSelbstbehalt }
|
||||||
|
* {@link ELSteuerType }
|
||||||
|
* {@link ELTextType }
|
||||||
|
* {@link ELVersicherungssummeType }
|
||||||
|
* {@link ELZeitraumType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<Object> getELAnzahlOrELBetragOrELBezugsberechtigung() {
|
||||||
|
if (elAnzahlOrELBetragOrELBezugsberechtigung == null) {
|
||||||
|
elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList<Object>();
|
||||||
|
}
|
||||||
|
return this.elAnzahlOrELBetragOrELBezugsberechtigung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der risikoLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getRisikoLfnr() {
|
||||||
|
return risikoLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der risikoLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRisikoLfnr(int value) {
|
||||||
|
this.risikoLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der risikoArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link RisikoArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public RisikoArtCdType getRisikoArtCd() {
|
||||||
|
return risikoArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der risikoArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link RisikoArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRisikoArtCd(RisikoArtCdType value) {
|
||||||
|
this.risikoArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der risikoBez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRisikoBez() {
|
||||||
|
return risikoBez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der risikoBez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRisikoBez(String value) {
|
||||||
|
this.risikoBez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemFristCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link PraemFristCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PraemFristCdType getPraemFristCd() {
|
||||||
|
return praemFristCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemFristCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link PraemFristCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemFristCd(PraemFristCdType value) {
|
||||||
|
this.praemFristCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemieNto-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getPraemieNto() {
|
||||||
|
return praemieNto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemieNto-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemieNto(BigDecimal value) {
|
||||||
|
this.praemieNto = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,211 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für SCHADEN_BETEILIGTER_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SCHADEN_BETEILIGTER_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence minOccurs="0">
|
||||||
|
* <element ref="{urn:omds20}GESCHAEDIGTES_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}ZAHLUNG" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Personennr" type="{urn:omds20}Personennr" />
|
||||||
|
* <attribute name="BetRolleCd" use="required" type="{urn:omds20}BetRolleCd_Type" />
|
||||||
|
* <attribute name="BetTxt">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="100"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SCHADEN_BETEILIGTER_Type", propOrder = {
|
||||||
|
"geschaedigtesobjekt",
|
||||||
|
"zahlung"
|
||||||
|
})
|
||||||
|
public class SCHADENBETEILIGTERType {
|
||||||
|
|
||||||
|
@XmlElement(name = "GESCHAEDIGTES_OBJEKT")
|
||||||
|
protected List<GESCHAEDIGTESOBJEKTType> geschaedigtesobjekt;
|
||||||
|
@XmlElement(name = "ZAHLUNG")
|
||||||
|
protected List<ZAHLUNGType> zahlung;
|
||||||
|
@XmlAttribute(name = "BetLfnr", required = true)
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int betLfnr;
|
||||||
|
@XmlAttribute(name = "Personennr")
|
||||||
|
protected String personennr;
|
||||||
|
@XmlAttribute(name = "BetRolleCd", required = true)
|
||||||
|
protected String betRolleCd;
|
||||||
|
@XmlAttribute(name = "BetTxt")
|
||||||
|
protected String betTxt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the geschaedigtesobjekt 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 geschaedigtesobjekt property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getGESCHAEDIGTESOBJEKT().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link GESCHAEDIGTESOBJEKTType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<GESCHAEDIGTESOBJEKTType> getGESCHAEDIGTESOBJEKT() {
|
||||||
|
if (geschaedigtesobjekt == null) {
|
||||||
|
geschaedigtesobjekt = new ArrayList<GESCHAEDIGTESOBJEKTType>();
|
||||||
|
}
|
||||||
|
return this.geschaedigtesobjekt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the zahlung 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 zahlung property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getZAHLUNG().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ZAHLUNGType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ZAHLUNGType> getZAHLUNG() {
|
||||||
|
if (zahlung == null) {
|
||||||
|
zahlung = new ArrayList<ZAHLUNGType>();
|
||||||
|
}
|
||||||
|
return this.zahlung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der betLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getBetLfnr() {
|
||||||
|
return betLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der betLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBetLfnr(int value) {
|
||||||
|
this.betLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der personennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPersonennr() {
|
||||||
|
return personennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der personennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPersonennr(String value) {
|
||||||
|
this.personennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der betRolleCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBetRolleCd() {
|
||||||
|
return betRolleCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der betRolleCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBetRolleCd(String value) {
|
||||||
|
this.betRolleCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der betTxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBetTxt() {
|
||||||
|
return betTxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der betTxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBetTxt(String value) {
|
||||||
|
this.betTxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,658 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElements;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für SCHADEN_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SCHADEN_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence minOccurs="0">
|
||||||
|
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <element ref="{urn:omds20}EL-Anzahl"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Betrag"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Einstufung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Polizzennummer"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Text"/>
|
||||||
|
* </choice>
|
||||||
|
* <element ref="{urn:omds20}SCHADEN_BETEILIGTER" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-KFZ-Kennzeichen" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="Schadennr" use="required" type="{urn:omds20}Schadennr" />
|
||||||
|
* <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
|
||||||
|
* <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
|
||||||
|
* <attribute name="Vermnr" type="{urn:omds20}Vermnr" />
|
||||||
|
* <attribute name="VerbandSparteCd" type="{urn:omds20}VerbandSparteCd_Type" />
|
||||||
|
* <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
|
||||||
|
* <attribute name="SpartenErweiterung" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="10"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Ereigniszpkt" use="required" type="{urn:omds20}Datum-Zeit" />
|
||||||
|
* <attribute name="Meldedat" use="required" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="SchadUrsCd" type="{urn:omds20}SchadUrsCd_Type" />
|
||||||
|
* <attribute name="SchadUrsTxt">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" />
|
||||||
|
* <attribute name="MalusWirksamKz" type="{urn:omds20}Entsch2_Type" />
|
||||||
|
* <attribute name="BearbStandCd" use="required" type="{urn:omds20}BearbStandCd_Type" />
|
||||||
|
* <attribute name="ErledDat" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="SachbearbVU">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="30"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="LeistungGeschaetzt" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SCHADEN_Type", propOrder = {
|
||||||
|
"elAnzahlOrELBetragOrELEinstufung",
|
||||||
|
"schadenbeteiligter",
|
||||||
|
"elkfzKennzeichen"
|
||||||
|
})
|
||||||
|
public class SCHADENType {
|
||||||
|
|
||||||
|
@XmlElements({
|
||||||
|
@XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class),
|
||||||
|
@XmlElement(name = "EL-Betrag", type = ELBetragType.class),
|
||||||
|
@XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class),
|
||||||
|
@XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class),
|
||||||
|
@XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class),
|
||||||
|
@XmlElement(name = "EL-Text", type = ELTextType.class)
|
||||||
|
})
|
||||||
|
protected List<Object> elAnzahlOrELBetragOrELEinstufung;
|
||||||
|
@XmlElement(name = "SCHADEN_BETEILIGTER")
|
||||||
|
protected List<SCHADENBETEILIGTERType> schadenbeteiligter;
|
||||||
|
@XmlElement(name = "EL-KFZ-Kennzeichen")
|
||||||
|
protected ELKFZKennzeichenType elkfzKennzeichen;
|
||||||
|
@XmlAttribute(name = "Schadennr", required = true)
|
||||||
|
protected String schadennr;
|
||||||
|
@XmlAttribute(name = "Polizzennr", required = true)
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlAttribute(name = "VertragsID")
|
||||||
|
protected String vertragsID;
|
||||||
|
@XmlAttribute(name = "Vermnr")
|
||||||
|
protected String vermnr;
|
||||||
|
@XmlAttribute(name = "VerbandSparteCd")
|
||||||
|
protected String verbandSparteCd;
|
||||||
|
@XmlAttribute(name = "SpartenCd", required = true)
|
||||||
|
protected String spartenCd;
|
||||||
|
@XmlAttribute(name = "SpartenErweiterung", required = true)
|
||||||
|
protected String spartenErweiterung;
|
||||||
|
@XmlAttribute(name = "Ereigniszpkt", required = true)
|
||||||
|
protected XMLGregorianCalendar ereigniszpkt;
|
||||||
|
@XmlAttribute(name = "Meldedat", required = true)
|
||||||
|
protected XMLGregorianCalendar meldedat;
|
||||||
|
@XmlAttribute(name = "SchadUrsCd")
|
||||||
|
protected String schadUrsCd;
|
||||||
|
@XmlAttribute(name = "SchadUrsTxt")
|
||||||
|
protected String schadUrsTxt;
|
||||||
|
@XmlAttribute(name = "VerschuldenCd")
|
||||||
|
protected String verschuldenCd;
|
||||||
|
@XmlAttribute(name = "MalusWirksamKz")
|
||||||
|
protected Entsch2Type malusWirksamKz;
|
||||||
|
@XmlAttribute(name = "BearbStandCd", required = true)
|
||||||
|
protected String bearbStandCd;
|
||||||
|
@XmlAttribute(name = "ErledDat")
|
||||||
|
protected XMLGregorianCalendar erledDat;
|
||||||
|
@XmlAttribute(name = "SachbearbVU")
|
||||||
|
protected String sachbearbVU;
|
||||||
|
@XmlAttribute(name = "LeistungGeschaetzt")
|
||||||
|
protected BigDecimal leistungGeschaetzt;
|
||||||
|
@XmlAttribute(name = "WaehrungsCd", required = true)
|
||||||
|
protected WaehrungsCdType waehrungsCd;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elAnzahlOrELBetragOrELEinstufung 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 elAnzahlOrELBetragOrELEinstufung property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELAnzahlOrELBetragOrELEinstufung().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELAnzahlType }
|
||||||
|
* {@link ELBetragType }
|
||||||
|
* {@link ELEinstufungType }
|
||||||
|
* {@link ELEntscheidungsfrageType }
|
||||||
|
* {@link ELPolizzennummerType }
|
||||||
|
* {@link ELTextType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<Object> getELAnzahlOrELBetragOrELEinstufung() {
|
||||||
|
if (elAnzahlOrELBetragOrELEinstufung == null) {
|
||||||
|
elAnzahlOrELBetragOrELEinstufung = new ArrayList<Object>();
|
||||||
|
}
|
||||||
|
return this.elAnzahlOrELBetragOrELEinstufung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the schadenbeteiligter 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 schadenbeteiligter property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getSCHADENBETEILIGTER().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link SCHADENBETEILIGTERType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<SCHADENBETEILIGTERType> getSCHADENBETEILIGTER() {
|
||||||
|
if (schadenbeteiligter == null) {
|
||||||
|
schadenbeteiligter = new ArrayList<SCHADENBETEILIGTERType>();
|
||||||
|
}
|
||||||
|
return this.schadenbeteiligter;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der elkfzKennzeichen-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ELKFZKennzeichenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELKFZKennzeichenType getELKFZKennzeichen() {
|
||||||
|
return elkfzKennzeichen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der elkfzKennzeichen-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ELKFZKennzeichenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setELKFZKennzeichen(ELKFZKennzeichenType value) {
|
||||||
|
this.elkfzKennzeichen = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schadennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchadennr() {
|
||||||
|
return schadennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schadennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchadennr(String value) {
|
||||||
|
this.schadennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vermnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVermnr() {
|
||||||
|
return vermnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vermnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVermnr(String value) {
|
||||||
|
this.vermnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verbandSparteCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVerbandSparteCd() {
|
||||||
|
return verbandSparteCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verbandSparteCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerbandSparteCd(String value) {
|
||||||
|
this.verbandSparteCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 spartenErweiterung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSpartenErweiterung() {
|
||||||
|
return spartenErweiterung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der spartenErweiterung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSpartenErweiterung(String value) {
|
||||||
|
this.spartenErweiterung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ereigniszpkt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getEreigniszpkt() {
|
||||||
|
return ereigniszpkt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ereigniszpkt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEreigniszpkt(XMLGregorianCalendar value) {
|
||||||
|
this.ereigniszpkt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der meldedat-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMeldedat() {
|
||||||
|
return meldedat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der meldedat-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMeldedat(XMLGregorianCalendar value) {
|
||||||
|
this.meldedat = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schadUrsCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchadUrsCd() {
|
||||||
|
return schadUrsCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schadUrsCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchadUrsCd(String value) {
|
||||||
|
this.schadUrsCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schadUrsTxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchadUrsTxt() {
|
||||||
|
return schadUrsTxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schadUrsTxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchadUrsTxt(String value) {
|
||||||
|
this.schadUrsTxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verschuldenCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVerschuldenCd() {
|
||||||
|
return verschuldenCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verschuldenCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerschuldenCd(String value) {
|
||||||
|
this.verschuldenCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der malusWirksamKz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Entsch2Type getMalusWirksamKz() {
|
||||||
|
return malusWirksamKz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der malusWirksamKz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMalusWirksamKz(Entsch2Type value) {
|
||||||
|
this.malusWirksamKz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bearbStandCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBearbStandCd() {
|
||||||
|
return bearbStandCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bearbStandCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBearbStandCd(String value) {
|
||||||
|
this.bearbStandCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der erledDat-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getErledDat() {
|
||||||
|
return erledDat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der erledDat-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setErledDat(XMLGregorianCalendar value) {
|
||||||
|
this.erledDat = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sachbearbVU-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSachbearbVU() {
|
||||||
|
return sachbearbVU;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sachbearbVU-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSachbearbVU(String value) {
|
||||||
|
this.sachbearbVU = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der leistungGeschaetzt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getLeistungGeschaetzt() {
|
||||||
|
return leistungGeschaetzt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der leistungGeschaetzt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLeistungGeschaetzt(BigDecimal value) {
|
||||||
|
this.leistungGeschaetzt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der waehrungsCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public WaehrungsCdType getWaehrungsCd() {
|
||||||
|
return waehrungsCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der waehrungsCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWaehrungsCd(WaehrungsCdType value) {
|
||||||
|
this.waehrungsCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,132 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
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">
|
||||||
|
* <attribute name="SchlWert" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="3"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Schlbez">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="50"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="SchlWert_generell">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="3"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "")
|
||||||
|
@XmlRootElement(name = "SCHLUESSEL")
|
||||||
|
public class SCHLUESSEL {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "SchlWert", required = true)
|
||||||
|
protected String schlWert;
|
||||||
|
@XmlAttribute(name = "Schlbez")
|
||||||
|
protected String schlbez;
|
||||||
|
@XmlAttribute(name = "SchlWert_generell")
|
||||||
|
protected String schlWertGenerell;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schlWert-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchlWert() {
|
||||||
|
return schlWert;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schlWert-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchlWert(String value) {
|
||||||
|
this.schlWert = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schlbez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchlbez() {
|
||||||
|
return schlbez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schlbez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchlbez(String value) {
|
||||||
|
this.schlbez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schlWertGenerell-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchlWertGenerell() {
|
||||||
|
return schlWertGenerell;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schlWertGenerell-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchlWertGenerell(String value) {
|
||||||
|
this.schlWertGenerell = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,159 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.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 maxOccurs="unbounded">
|
||||||
|
* <element ref="{urn:omds20}SCHLUESSEL"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="SchlArtCd" use="required" type="{urn:omds20}SchlArtCd_Type" />
|
||||||
|
* <attribute name="VUWertErlaubtKz" use="required" type="{urn:omds20}Entsch2_Type" />
|
||||||
|
* <attribute name="SchlArtBez">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="30"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"schluessel"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "SCHLUESSELART")
|
||||||
|
public class SCHLUESSELART {
|
||||||
|
|
||||||
|
@XmlElement(name = "SCHLUESSEL", required = true)
|
||||||
|
protected List<SCHLUESSEL> schluessel;
|
||||||
|
@XmlAttribute(name = "SchlArtCd", required = true)
|
||||||
|
protected SchlArtCdType schlArtCd;
|
||||||
|
@XmlAttribute(name = "VUWertErlaubtKz", required = true)
|
||||||
|
protected Entsch2Type vuWertErlaubtKz;
|
||||||
|
@XmlAttribute(name = "SchlArtBez")
|
||||||
|
protected String schlArtBez;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the schluessel 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 schluessel property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getSCHLUESSEL().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link SCHLUESSEL }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<SCHLUESSEL> getSCHLUESSEL() {
|
||||||
|
if (schluessel == null) {
|
||||||
|
schluessel = new ArrayList<SCHLUESSEL>();
|
||||||
|
}
|
||||||
|
return this.schluessel;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schlArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SchlArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SchlArtCdType getSchlArtCd() {
|
||||||
|
return schlArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schlArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SchlArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchlArtCd(SchlArtCdType value) {
|
||||||
|
this.schlArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vuWertErlaubtKz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Entsch2Type getVUWertErlaubtKz() {
|
||||||
|
return vuWertErlaubtKz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vuWertErlaubtKz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVUWertErlaubtKz(Entsch2Type value) {
|
||||||
|
this.vuWertErlaubtKz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schlArtBez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchlArtBez() {
|
||||||
|
return schlArtBez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schlArtBez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchlArtBez(String value) {
|
||||||
|
this.schlArtBez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,125 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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 SONSTIGE_PERSON_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SONSTIGE_PERSON_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Name" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="120"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Kurzname">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="15"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="SonstPersArtCd" use="required" type="{urn:omds20}SonstPersArtCd_Type" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SONSTIGE_PERSON_Type")
|
||||||
|
public class SONSTIGEPERSONType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Name", required = true)
|
||||||
|
protected String name;
|
||||||
|
@XmlAttribute(name = "Kurzname")
|
||||||
|
protected String kurzname;
|
||||||
|
@XmlAttribute(name = "SonstPersArtCd", required = true)
|
||||||
|
protected String sonstPersArtCd;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der name-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der name-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setName(String value) {
|
||||||
|
this.name = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kurzname-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKurzname() {
|
||||||
|
return kurzname;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kurzname-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKurzname(String value) {
|
||||||
|
this.kurzname = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sonstPersArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSonstPersArtCd() {
|
||||||
|
return sonstPersArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sonstPersArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSonstPersArtCd(String value) {
|
||||||
|
this.sonstPersArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,556 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElements;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für SPARTE_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SPARTE_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <element ref="{urn:omds20}EL-Anzahl"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Betrag"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Einstufung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Gewinnbeteiligung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Grenzwert"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Index"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Klausel"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Praemienkorrektur"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Rente"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Selbstbehalt"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Steuer"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Text"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Zeitraum"/>
|
||||||
|
* </choice>
|
||||||
|
* <element ref="{urn:omds20}RISIKO" maxOccurs="unbounded"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="SpartenCd" use="required" type="{urn:omds20}SpartenCd_Type" />
|
||||||
|
* <attribute name="SpartenErweiterung" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="10"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="SpartenID">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="VerbandSparteCd" use="required" type="{urn:omds20}VerbandSparteCd_Type" />
|
||||||
|
* <attribute name="Spartentxt">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="80"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="SpartenBeg" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="SpartenEnd" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="StatusCd" type="{urn:omds20}StatusCd_Type" />
|
||||||
|
* <attribute name="HauptTarifBez">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="25"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
|
||||||
|
* <attribute name="DirBeteiligtKz" type="{urn:omds20}Entsch3_Type" />
|
||||||
|
* <attribute name="SondervereinbarungKz" type="{urn:omds20}Entsch3_Type" />
|
||||||
|
* <attribute name="PraemieNtoSp" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="PraemieBtoSp" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SPARTE_Type", propOrder = {
|
||||||
|
"elAnzahlOrELBetragOrELBezugsberechtigung",
|
||||||
|
"risiko"
|
||||||
|
})
|
||||||
|
public class SPARTEType {
|
||||||
|
|
||||||
|
@XmlElements({
|
||||||
|
@XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class),
|
||||||
|
@XmlElement(name = "EL-Betrag", type = ELBetragType.class),
|
||||||
|
@XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class),
|
||||||
|
@XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class),
|
||||||
|
@XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class),
|
||||||
|
@XmlElement(name = "EL-Gewinnbeteiligung", type = ELGewinnbeteiligungType.class),
|
||||||
|
@XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class),
|
||||||
|
@XmlElement(name = "EL-Index", type = ELIndexType.class),
|
||||||
|
@XmlElement(name = "EL-Klausel", type = ELKlauselType.class),
|
||||||
|
@XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class),
|
||||||
|
@XmlElement(name = "EL-Rente", type = ELRenteType.class),
|
||||||
|
@XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class),
|
||||||
|
@XmlElement(name = "EL-Steuer", type = ELSteuerType.class),
|
||||||
|
@XmlElement(name = "EL-Text", type = ELTextType.class),
|
||||||
|
@XmlElement(name = "EL-Zeitraum", type = ELZeitraumType.class)
|
||||||
|
})
|
||||||
|
protected List<Object> elAnzahlOrELBetragOrELBezugsberechtigung;
|
||||||
|
@XmlElement(name = "RISIKO", required = true)
|
||||||
|
protected List<RISIKOType> risiko;
|
||||||
|
@XmlAttribute(name = "SpartenCd", required = true)
|
||||||
|
protected String spartenCd;
|
||||||
|
@XmlAttribute(name = "SpartenErweiterung", required = true)
|
||||||
|
protected String spartenErweiterung;
|
||||||
|
@XmlAttribute(name = "SpartenID")
|
||||||
|
protected String spartenID;
|
||||||
|
@XmlAttribute(name = "VerbandSparteCd", required = true)
|
||||||
|
protected String verbandSparteCd;
|
||||||
|
@XmlAttribute(name = "Spartentxt")
|
||||||
|
protected String spartentxt;
|
||||||
|
@XmlAttribute(name = "SpartenBeg")
|
||||||
|
protected XMLGregorianCalendar spartenBeg;
|
||||||
|
@XmlAttribute(name = "SpartenEnd")
|
||||||
|
protected XMLGregorianCalendar spartenEnd;
|
||||||
|
@XmlAttribute(name = "StatusCd")
|
||||||
|
protected String statusCd;
|
||||||
|
@XmlAttribute(name = "HauptTarifBez")
|
||||||
|
protected String hauptTarifBez;
|
||||||
|
@XmlAttribute(name = "SichergKz")
|
||||||
|
protected Entsch2Type sichergKz;
|
||||||
|
@XmlAttribute(name = "DirBeteiligtKz")
|
||||||
|
protected String dirBeteiligtKz;
|
||||||
|
@XmlAttribute(name = "SondervereinbarungKz")
|
||||||
|
protected String sondervereinbarungKz;
|
||||||
|
@XmlAttribute(name = "PraemieNtoSp", required = true)
|
||||||
|
protected BigDecimal praemieNtoSp;
|
||||||
|
@XmlAttribute(name = "PraemieBtoSp", required = true)
|
||||||
|
protected BigDecimal praemieBtoSp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung 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 elAnzahlOrELBetragOrELBezugsberechtigung property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELAnzahlOrELBetragOrELBezugsberechtigung().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELAnzahlType }
|
||||||
|
* {@link ELBetragType }
|
||||||
|
* {@link ELBezugsberechtigungType }
|
||||||
|
* {@link ELEinstufungType }
|
||||||
|
* {@link ELEntscheidungsfrageType }
|
||||||
|
* {@link ELGewinnbeteiligungType }
|
||||||
|
* {@link ELGrenzwertType }
|
||||||
|
* {@link ELIndexType }
|
||||||
|
* {@link ELKlauselType }
|
||||||
|
* {@link ELPraemienkorrekturType }
|
||||||
|
* {@link ELRenteType }
|
||||||
|
* {@link ELSelbstbehalt }
|
||||||
|
* {@link ELSteuerType }
|
||||||
|
* {@link ELTextType }
|
||||||
|
* {@link ELZeitraumType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<Object> getELAnzahlOrELBetragOrELBezugsberechtigung() {
|
||||||
|
if (elAnzahlOrELBetragOrELBezugsberechtigung == null) {
|
||||||
|
elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList<Object>();
|
||||||
|
}
|
||||||
|
return this.elAnzahlOrELBetragOrELBezugsberechtigung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the risiko 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 risiko property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getRISIKO().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link RISIKOType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<RISIKOType> getRISIKO() {
|
||||||
|
if (risiko == null) {
|
||||||
|
risiko = new ArrayList<RISIKOType>();
|
||||||
|
}
|
||||||
|
return this.risiko;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 spartenErweiterung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSpartenErweiterung() {
|
||||||
|
return spartenErweiterung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der spartenErweiterung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSpartenErweiterung(String value) {
|
||||||
|
this.spartenErweiterung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der spartenID-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSpartenID() {
|
||||||
|
return spartenID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der spartenID-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSpartenID(String value) {
|
||||||
|
this.spartenID = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verbandSparteCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVerbandSparteCd() {
|
||||||
|
return verbandSparteCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verbandSparteCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerbandSparteCd(String value) {
|
||||||
|
this.verbandSparteCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der spartentxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSpartentxt() {
|
||||||
|
return spartentxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der spartentxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSpartentxt(String value) {
|
||||||
|
this.spartentxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der spartenBeg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getSpartenBeg() {
|
||||||
|
return spartenBeg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der spartenBeg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSpartenBeg(XMLGregorianCalendar value) {
|
||||||
|
this.spartenBeg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der spartenEnd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getSpartenEnd() {
|
||||||
|
return spartenEnd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der spartenEnd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSpartenEnd(XMLGregorianCalendar value) {
|
||||||
|
this.spartenEnd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der statusCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getStatusCd() {
|
||||||
|
return statusCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der statusCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStatusCd(String value) {
|
||||||
|
this.statusCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hauptTarifBez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getHauptTarifBez() {
|
||||||
|
return hauptTarifBez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hauptTarifBez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHauptTarifBez(String value) {
|
||||||
|
this.hauptTarifBez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sichergKz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Entsch2Type getSichergKz() {
|
||||||
|
return sichergKz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sichergKz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSichergKz(Entsch2Type value) {
|
||||||
|
this.sichergKz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dirBeteiligtKz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getDirBeteiligtKz() {
|
||||||
|
return dirBeteiligtKz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dirBeteiligtKz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDirBeteiligtKz(String value) {
|
||||||
|
this.dirBeteiligtKz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sondervereinbarungKz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSondervereinbarungKz() {
|
||||||
|
return sondervereinbarungKz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sondervereinbarungKz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSondervereinbarungKz(String value) {
|
||||||
|
this.sondervereinbarungKz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemieNtoSp-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getPraemieNtoSp() {
|
||||||
|
return praemieNtoSp;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemieNtoSp-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemieNtoSp(BigDecimal value) {
|
||||||
|
this.praemieNtoSp = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemieBtoSp-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getPraemieBtoSp() {
|
||||||
|
return praemieBtoSp;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemieBtoSp-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemieBtoSp(BigDecimal value) {
|
||||||
|
this.praemieBtoSp = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für SbhArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="SbhArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="MIS"/>
|
||||||
|
* <enumeration value="MXK"/>
|
||||||
|
* <enumeration value="MXS"/>
|
||||||
|
* <enumeration value="STS"/>
|
||||||
|
* <enumeration value="SSO"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "SbhArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum SbhArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mindestselbstbehalt je Schadenfall
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
MIS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Maximalselbstbehalt kumuliert
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
MXK,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Maximalselbstbehalt je Schadenfall
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
MXS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Standardselbstbehalt je Schadenfall
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
STS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Selbstbehalt sonst
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SSO;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static SbhArtCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,551 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlEnumValue;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für SchlArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="SchlArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="25"/>
|
||||||
|
* <enumeration value="AendGrundCd"/>
|
||||||
|
* <enumeration value="AntriebsArtCd"/>
|
||||||
|
* <enumeration value="AusstattungCd"/>
|
||||||
|
* <enumeration value="BauartCd"/>
|
||||||
|
* <enumeration value="BBArtCd"/>
|
||||||
|
* <enumeration value="BearbStandCd"/>
|
||||||
|
* <enumeration value="BetragArtCd"/>
|
||||||
|
* <enumeration value="BetRolleCd"/>
|
||||||
|
* <enumeration value="DachungCd"/>
|
||||||
|
* <enumeration value="EFrageCd"/>
|
||||||
|
* <enumeration value="EstArtCd"/>
|
||||||
|
* <enumeration value="FamilienstandCd"/>
|
||||||
|
* <enumeration value="FlaechenAttributCd"/>
|
||||||
|
* <enumeration value="FzgArtCd"/>
|
||||||
|
* <enumeration value="GebaeudeArtCd"/>
|
||||||
|
* <enumeration value="GebaeudeHoeheCd"/>
|
||||||
|
* <enumeration value="GeschlechtCd"/>
|
||||||
|
* <enumeration value="GrundRuecklaufCd"/>
|
||||||
|
* <enumeration value="GrwArtCd"/>
|
||||||
|
* <enumeration value="IdfArtCd"/>
|
||||||
|
* <enumeration value="IndexArtCd"/>
|
||||||
|
* <enumeration value="KomArtCd"/>
|
||||||
|
* <enumeration value="LandesCd"/>
|
||||||
|
* <enumeration value="LegArtCd"/>
|
||||||
|
* <enumeration value="LoeschCd"/>
|
||||||
|
* <enumeration value="NutzungCd"/>
|
||||||
|
* <enumeration value="ObjektdatenCd"/>
|
||||||
|
* <enumeration value="PaketInhCd"/>
|
||||||
|
* <enumeration value="PaketUmfCd"/>
|
||||||
|
* <enumeration value="PersArtCd"/>
|
||||||
|
* <enumeration value="PfrArtCd"/>
|
||||||
|
* <enumeration value="PolArtCd"/>
|
||||||
|
* <enumeration value="PraemFristCd"/>
|
||||||
|
* <enumeration value="PraemKorrArtCd"/>
|
||||||
|
* <enumeration value="ProvArtCd"/>
|
||||||
|
* <enumeration value="RisikoArtCd"/>
|
||||||
|
* <enumeration value="RntRhythmCd"/>
|
||||||
|
* <enumeration value="SbhArtCd"/>
|
||||||
|
* <enumeration value="SchadUrsCd"/>
|
||||||
|
* <enumeration value="SonstPersArtCd"/>
|
||||||
|
* <enumeration value="SpartenCd"/>
|
||||||
|
* <enumeration value="StArtCd"/>
|
||||||
|
* <enumeration value="TxtArtCd"/>
|
||||||
|
* <enumeration value="VSArtCd"/>
|
||||||
|
* <enumeration value="VerbandSparteCd"/>
|
||||||
|
* <enumeration value="VersLwCd"/>
|
||||||
|
* <enumeration value="StatusCd"/>
|
||||||
|
* <enumeration value="VersSacheCd"/>
|
||||||
|
* <enumeration value="VerschuldenCd"/>
|
||||||
|
* <enumeration value="VerwendzweckCd"/>
|
||||||
|
* <enumeration value="VtgProdCd"/>
|
||||||
|
* <enumeration value="VtgRolleCd"/>
|
||||||
|
* <enumeration value="VtgSparteCd"/>
|
||||||
|
* <enumeration value="VtgStatusCd"/>
|
||||||
|
* <enumeration value="WaehrungsCd"/>
|
||||||
|
* <enumeration value="ZRArtCd"/>
|
||||||
|
* <enumeration value="ZahlGrundCd"/>
|
||||||
|
* <enumeration value="ZahlRhythmCd"/>
|
||||||
|
* <enumeration value="ZahlWegCd"/>
|
||||||
|
* <enumeration value="MahnStufeCd"/>
|
||||||
|
* <enumeration value="RueckGrundCd"/>
|
||||||
|
* <enumeration value="SprachCd"/>
|
||||||
|
* <enumeration value="VerbrEinhCd"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "SchlArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum SchlArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Änderungsgrund
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("AendGrundCd")
|
||||||
|
AEND_GRUND_CD("AendGrundCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Antriebsart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("AntriebsArtCd")
|
||||||
|
ANTRIEBS_ART_CD("AntriebsArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ausstattung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("AusstattungCd")
|
||||||
|
AUSSTATTUNG_CD("AusstattungCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bauart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("BauartCd")
|
||||||
|
BAUART_CD("BauartCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bezugsberechtigungsart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("BBArtCd")
|
||||||
|
BB_ART_CD("BBArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bearbeitungsstand
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("BearbStandCd")
|
||||||
|
BEARB_STAND_CD("BearbStandCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Betragsart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("BetragArtCd")
|
||||||
|
BETRAG_ART_CD("BetragArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Beteiligungsrolle
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("BetRolleCd")
|
||||||
|
BET_ROLLE_CD("BetRolleCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dachung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("DachungCd")
|
||||||
|
DACHUNG_CD("DachungCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Entscheidungsfrage
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("EFrageCd")
|
||||||
|
E_FRAGE_CD("EFrageCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Einstufungsart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("EstArtCd")
|
||||||
|
EST_ART_CD("EstArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Familienstand
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("FamilienstandCd")
|
||||||
|
FAMILIENSTAND_CD("FamilienstandCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Flächenattribut
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("FlaechenAttributCd")
|
||||||
|
FLAECHEN_ATTRIBUT_CD("FlaechenAttributCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fahrzeugart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("FzgArtCd")
|
||||||
|
FZG_ART_CD("FzgArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Art des Gebäudes
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("GebaeudeArtCd")
|
||||||
|
GEBAEUDE_ART_CD("GebaeudeArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gebäudehöhe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("GebaeudeHoeheCd")
|
||||||
|
GEBAEUDE_HOEHE_CD("GebaeudeHoeheCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Geschlecht
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("GeschlechtCd")
|
||||||
|
GESCHLECHT_CD("GeschlechtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GrundRuecklauf
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("GrundRuecklaufCd")
|
||||||
|
GRUND_RUECKLAUF_CD("GrundRuecklaufCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Grenzwertart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("GrwArtCd")
|
||||||
|
GRW_ART_CD("GrwArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Identifizierungsart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("IdfArtCd")
|
||||||
|
IDF_ART_CD("IdfArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indexart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("IndexArtCd")
|
||||||
|
INDEX_ART_CD("IndexArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* KommunikationsArt
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("KomArtCd")
|
||||||
|
KOM_ART_CD("KomArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ländercode
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("LandesCd")
|
||||||
|
LANDES_CD("LandesCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legitimierungsart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("LegArtCd")
|
||||||
|
LEG_ART_CD("LegArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Löschungsarten
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("LoeschCd")
|
||||||
|
LOESCH_CD("LoeschCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Nutzung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("NutzungCd")
|
||||||
|
NUTZUNG_CD("NutzungCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Objektdatenart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("ObjektdatenCd")
|
||||||
|
OBJEKTDATEN_CD("ObjektdatenCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Paketinhalt
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("PaketInhCd")
|
||||||
|
PAKET_INH_CD("PaketInhCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Paketumfang
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("PaketUmfCd")
|
||||||
|
PAKET_UMF_CD("PaketUmfCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Personenart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("PersArtCd")
|
||||||
|
PERS_ART_CD("PersArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prämienfreiart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("PfrArtCd")
|
||||||
|
PFR_ART_CD("PfrArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Polizzenart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("PolArtCd")
|
||||||
|
POL_ART_CD("PolArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prämienfrist
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("PraemFristCd")
|
||||||
|
PRAEM_FRIST_CD("PraemFristCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prämienkorrekturart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("PraemKorrArtCd")
|
||||||
|
PRAEM_KORR_ART_CD("PraemKorrArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provisionsart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("ProvArtCd")
|
||||||
|
PROV_ART_CD("ProvArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Risikoart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("RisikoArtCd")
|
||||||
|
RISIKO_ART_CD("RisikoArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rentenzahlungsrhythmus
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("RntRhythmCd")
|
||||||
|
RNT_RHYTHM_CD("RntRhythmCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Selbstbehaltart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("SbhArtCd")
|
||||||
|
SBH_ART_CD("SbhArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Schadenursache
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("SchadUrsCd")
|
||||||
|
SCHAD_URS_CD("SchadUrsCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Art der sonstigen Person
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("SonstPersArtCd")
|
||||||
|
SONST_PERS_ART_CD("SonstPersArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sparte
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("SpartenCd")
|
||||||
|
SPARTEN_CD("SpartenCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Steuerart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("StArtCd")
|
||||||
|
ST_ART_CD("StArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Textart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("TxtArtCd")
|
||||||
|
TXT_ART_CD("TxtArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Versicherungssummenart
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VSArtCd")
|
||||||
|
VS_ART_CD("VSArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verbandssparte
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VerbandSparteCd")
|
||||||
|
VERBAND_SPARTE_CD("VerbandSparteCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Versicherte Landwirtschaft
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VersLwCd")
|
||||||
|
VERS_LW_CD("VersLwCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Status
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("StatusCd")
|
||||||
|
STATUS_CD("StatusCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Versicherte Sache
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VersSacheCd")
|
||||||
|
VERS_SACHE_CD("VersSacheCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verschulden
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VerschuldenCd")
|
||||||
|
VERSCHULDEN_CD("VerschuldenCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verwendungszweck
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VerwendzweckCd")
|
||||||
|
VERWENDZWECK_CD("VerwendzweckCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vertragsprodukt
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VtgProdCd")
|
||||||
|
VTG_PROD_CD("VtgProdCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vertragsrolle
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VtgRolleCd")
|
||||||
|
VTG_ROLLE_CD("VtgRolleCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vertragssparte
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VtgSparteCd")
|
||||||
|
VTG_SPARTE_CD("VtgSparteCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vertragsstatus
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VtgStatusCd")
|
||||||
|
VTG_STATUS_CD("VtgStatusCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Währung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("WaehrungsCd")
|
||||||
|
WAEHRUNGS_CD("WaehrungsCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Art des Zeitraumes
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("ZRArtCd")
|
||||||
|
ZR_ART_CD("ZRArtCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Zahlungsgrund
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("ZahlGrundCd")
|
||||||
|
ZAHL_GRUND_CD("ZahlGrundCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Zahlungsrhythmus
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("ZahlRhythmCd")
|
||||||
|
ZAHL_RHYTHM_CD("ZahlRhythmCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Zahlungsweg
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("ZahlWegCd")
|
||||||
|
ZAHL_WEG_CD("ZahlWegCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MahnStufe
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("MahnStufeCd")
|
||||||
|
MAHN_STUFE_CD("MahnStufeCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GrundRuecklauf
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("RueckGrundCd")
|
||||||
|
RUECK_GRUND_CD("RueckGrundCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sprachenschlüssel
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("SprachCd")
|
||||||
|
SPRACH_CD("SprachCd"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Einheit für Verbrauch
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VerbrEinhCd")
|
||||||
|
VERBR_EINH_CD("VerbrEinhCd");
|
||||||
|
private final String value;
|
||||||
|
|
||||||
|
SchlArtCdType(String v) {
|
||||||
|
value = v;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static SchlArtCdType fromValue(String v) {
|
||||||
|
for (SchlArtCdType c: SchlArtCdType.values()) {
|
||||||
|
if (c.value.equals(v)) {
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new IllegalArgumentException(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für SprachCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="SprachCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="2"/>
|
||||||
|
* <maxLength value="2"/>
|
||||||
|
* <enumeration value="CS"/>
|
||||||
|
* <enumeration value="DE"/>
|
||||||
|
* <enumeration value="EN"/>
|
||||||
|
* <enumeration value="HU"/>
|
||||||
|
* <enumeration value="IT"/>
|
||||||
|
* <enumeration value="SK"/>
|
||||||
|
* <enumeration value="SL"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "SprachCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum SprachCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tschechisch
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
CS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deutsch
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
DE,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Englisch
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
EN,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ungarisch
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
HU,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Italienisch
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
IT,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Slowakisch
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SK,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Slowenisch
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SL;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static SprachCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,111 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für TxtArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="TxtArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="ANR"/>
|
||||||
|
* <enumeration value="BER"/>
|
||||||
|
* <enumeration value="FRT"/>
|
||||||
|
* <enumeration value="TIT"/>
|
||||||
|
* <enumeration value="TIN"/>
|
||||||
|
* <enumeration value="VKL"/>
|
||||||
|
* <enumeration value="SRT"/>
|
||||||
|
* <enumeration value="EXP"/>
|
||||||
|
* <enumeration value="ONR"/>
|
||||||
|
* <enumeration value="FZU"/>
|
||||||
|
* <enumeration value="RIM"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "TxtArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum TxtArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Anrede
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ANR,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Beruf
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
BER,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Freitext
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
FRT,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Titel
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
TIT,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Titel nachgestellt
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
TIN,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vertragsspez. Klausel
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VKL,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Beschreibung Schadenort
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SRT,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Schaden-Expertise (Besichtigungsdaten)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
EXP,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Oeamtc-Clubkarten-Nr
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ONR,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ordnungsbegriff für Zuordnung Fremdsystem
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
FZU,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Risikomerkmal
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
RIM;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static TxtArtCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
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>
|
||||||
|
* <extension base="{urn:omds20}VERS_KFZ_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "")
|
||||||
|
@XmlRootElement(name = "VERS_KFZ")
|
||||||
|
public class VERSKFZ
|
||||||
|
extends VERSKFZType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,891 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für VERS_KFZ_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VERS_KFZ_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="FzgArtCd" use="required" type="{urn:omds20}FzgArtCd_Type" />
|
||||||
|
* <attribute name="Marke" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Handelsbez">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="30"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="TypVarVer">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="20"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
|
||||||
|
* <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Leistung_ElektroMot" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Nutzlast">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
|
||||||
|
* <totalDigits value="6"/>
|
||||||
|
* <fractionDigits value="0"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="AntriebsArtCd" use="required" type="{urn:omds20}AntriebsArtCd_Type" />
|
||||||
|
* <attribute name="Katkz" use="required" type="{urn:omds20}Entsch3_Type" />
|
||||||
|
* <attribute name="ABSKz" type="{urn:omds20}Entsch2_Type" />
|
||||||
|
* <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="CO2_WLTP_WMTC" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Kraftstoffverbr_NEFZ" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="Kraftstoffverbr_WLTP_WMTC" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="VerbrEinhCd" type="{urn:omds20}VerbrEinhCd_Type" />
|
||||||
|
* <attribute name="Fahrgestnr" use="required" type="{urn:omds20}Fahrgestnr_Type" />
|
||||||
|
* <attribute name="Motornr">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="20"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="NatCode">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="26"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
|
||||||
|
* <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
|
||||||
|
* <attribute name="Pol_Kennz" type="{urn:omds20}Pol_Kennz_Type" />
|
||||||
|
* <attribute name="Eigengew">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
|
||||||
|
* <totalDigits value="6"/>
|
||||||
|
* <fractionDigits value="0"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="HzulGesgew">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
|
||||||
|
* <totalDigits value="6"/>
|
||||||
|
* <fractionDigits value="0"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="HGeschw">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
|
||||||
|
* <totalDigits value="6"/>
|
||||||
|
* <fractionDigits value="0"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VERS_KFZ_Type")
|
||||||
|
@XmlSeeAlso({
|
||||||
|
VERSKFZ.class
|
||||||
|
})
|
||||||
|
public class VERSKFZType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "FzgArtCd", required = true)
|
||||||
|
protected String fzgArtCd;
|
||||||
|
@XmlAttribute(name = "Marke", required = true)
|
||||||
|
protected String marke;
|
||||||
|
@XmlAttribute(name = "Handelsbez")
|
||||||
|
protected String handelsbez;
|
||||||
|
@XmlAttribute(name = "TypVarVer")
|
||||||
|
protected String typVarVer;
|
||||||
|
@XmlAttribute(name = "Leasingkz")
|
||||||
|
protected Entsch2Type leasingkz;
|
||||||
|
@XmlAttribute(name = "Modelljahr")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer modelljahr;
|
||||||
|
@XmlAttribute(name = "Leistung")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer leistung;
|
||||||
|
@XmlAttribute(name = "Leistung_ElektroMot")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer leistungElektroMot;
|
||||||
|
@XmlAttribute(name = "Plaetze")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer plaetze;
|
||||||
|
@XmlAttribute(name = "Nutzlast")
|
||||||
|
protected BigDecimal nutzlast;
|
||||||
|
@XmlAttribute(name = "Hubraum")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer hubraum;
|
||||||
|
@XmlAttribute(name = "AntriebsArtCd", required = true)
|
||||||
|
protected String antriebsArtCd;
|
||||||
|
@XmlAttribute(name = "Katkz", required = true)
|
||||||
|
protected String katkz;
|
||||||
|
@XmlAttribute(name = "ABSKz")
|
||||||
|
protected Entsch2Type absKz;
|
||||||
|
@XmlAttribute(name = "CO2_Ausstoss")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer co2Ausstoss;
|
||||||
|
@XmlAttribute(name = "CO2_WLTP_WMTC")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer co2WLTPWMTC;
|
||||||
|
@XmlAttribute(name = "Kraftstoffverbr_NEFZ")
|
||||||
|
protected BigDecimal kraftstoffverbrNEFZ;
|
||||||
|
@XmlAttribute(name = "Kraftstoffverbr_WLTP_WMTC")
|
||||||
|
protected BigDecimal kraftstoffverbrWLTPWMTC;
|
||||||
|
@XmlAttribute(name = "VerbrEinhCd")
|
||||||
|
protected String verbrEinhCd;
|
||||||
|
@XmlAttribute(name = "Fahrgestnr", required = true)
|
||||||
|
protected String fahrgestnr;
|
||||||
|
@XmlAttribute(name = "Motornr")
|
||||||
|
protected String motornr;
|
||||||
|
@XmlAttribute(name = "NatCode")
|
||||||
|
protected String natCode;
|
||||||
|
@XmlAttribute(name = "VerwendzweckCd")
|
||||||
|
protected String verwendzweckCd;
|
||||||
|
@XmlAttribute(name = "Erstzulassdat")
|
||||||
|
protected XMLGregorianCalendar erstzulassdat;
|
||||||
|
@XmlAttribute(name = "LandesCd")
|
||||||
|
protected String landesCd;
|
||||||
|
@XmlAttribute(name = "Pol_Kennz")
|
||||||
|
protected String polKennz;
|
||||||
|
@XmlAttribute(name = "Eigengew")
|
||||||
|
protected BigDecimal eigengew;
|
||||||
|
@XmlAttribute(name = "HzulGesgew")
|
||||||
|
protected BigDecimal hzulGesgew;
|
||||||
|
@XmlAttribute(name = "HGeschw")
|
||||||
|
protected BigDecimal hGeschw;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der fzgArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFzgArtCd() {
|
||||||
|
return fzgArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der fzgArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFzgArtCd(String value) {
|
||||||
|
this.fzgArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der marke-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMarke() {
|
||||||
|
return marke;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der marke-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMarke(String value) {
|
||||||
|
this.marke = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der handelsbez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getHandelsbez() {
|
||||||
|
return handelsbez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der handelsbez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHandelsbez(String value) {
|
||||||
|
this.handelsbez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der typVarVer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getTypVarVer() {
|
||||||
|
return typVarVer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der typVarVer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setTypVarVer(String value) {
|
||||||
|
this.typVarVer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der leasingkz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Entsch2Type getLeasingkz() {
|
||||||
|
return leasingkz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der leasingkz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLeasingkz(Entsch2Type value) {
|
||||||
|
this.leasingkz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der modelljahr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getModelljahr() {
|
||||||
|
return modelljahr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der modelljahr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setModelljahr(Integer value) {
|
||||||
|
this.modelljahr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der leistung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getLeistung() {
|
||||||
|
return leistung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der leistung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLeistung(Integer value) {
|
||||||
|
this.leistung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der leistungElektroMot-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getLeistungElektroMot() {
|
||||||
|
return leistungElektroMot;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der leistungElektroMot-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLeistungElektroMot(Integer value) {
|
||||||
|
this.leistungElektroMot = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der plaetze-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getPlaetze() {
|
||||||
|
return plaetze;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der plaetze-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPlaetze(Integer value) {
|
||||||
|
this.plaetze = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der nutzlast-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getNutzlast() {
|
||||||
|
return nutzlast;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der nutzlast-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNutzlast(BigDecimal value) {
|
||||||
|
this.nutzlast = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hubraum-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getHubraum() {
|
||||||
|
return hubraum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hubraum-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHubraum(Integer value) {
|
||||||
|
this.hubraum = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antriebsArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAntriebsArtCd() {
|
||||||
|
return antriebsArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antriebsArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntriebsArtCd(String value) {
|
||||||
|
this.antriebsArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der katkz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKatkz() {
|
||||||
|
return katkz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der katkz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKatkz(String value) {
|
||||||
|
this.katkz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der absKz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Entsch2Type getABSKz() {
|
||||||
|
return absKz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der absKz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setABSKz(Entsch2Type value) {
|
||||||
|
this.absKz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der co2Ausstoss-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getCO2Ausstoss() {
|
||||||
|
return co2Ausstoss;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der co2Ausstoss-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setCO2Ausstoss(Integer value) {
|
||||||
|
this.co2Ausstoss = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der co2WLTPWMTC-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getCO2WLTPWMTC() {
|
||||||
|
return co2WLTPWMTC;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der co2WLTPWMTC-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setCO2WLTPWMTC(Integer value) {
|
||||||
|
this.co2WLTPWMTC = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kraftstoffverbrNEFZ-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getKraftstoffverbrNEFZ() {
|
||||||
|
return kraftstoffverbrNEFZ;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kraftstoffverbrNEFZ-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKraftstoffverbrNEFZ(BigDecimal value) {
|
||||||
|
this.kraftstoffverbrNEFZ = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getKraftstoffverbrWLTPWMTC() {
|
||||||
|
return kraftstoffverbrWLTPWMTC;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kraftstoffverbrWLTPWMTC-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKraftstoffverbrWLTPWMTC(BigDecimal value) {
|
||||||
|
this.kraftstoffverbrWLTPWMTC = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verbrEinhCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVerbrEinhCd() {
|
||||||
|
return verbrEinhCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verbrEinhCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerbrEinhCd(String value) {
|
||||||
|
this.verbrEinhCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der fahrgestnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFahrgestnr() {
|
||||||
|
return fahrgestnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der fahrgestnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFahrgestnr(String value) {
|
||||||
|
this.fahrgestnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der motornr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMotornr() {
|
||||||
|
return motornr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der motornr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMotornr(String value) {
|
||||||
|
this.motornr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der natCode-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getNatCode() {
|
||||||
|
return natCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der natCode-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNatCode(String value) {
|
||||||
|
this.natCode = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verwendzweckCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVerwendzweckCd() {
|
||||||
|
return verwendzweckCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verwendzweckCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerwendzweckCd(String value) {
|
||||||
|
this.verwendzweckCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der erstzulassdat-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getErstzulassdat() {
|
||||||
|
return erstzulassdat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der erstzulassdat-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setErstzulassdat(XMLGregorianCalendar value) {
|
||||||
|
this.erstzulassdat = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der landesCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getLandesCd() {
|
||||||
|
return landesCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der landesCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLandesCd(String value) {
|
||||||
|
this.landesCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polKennz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolKennz() {
|
||||||
|
return polKennz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polKennz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolKennz(String value) {
|
||||||
|
this.polKennz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der eigengew-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getEigengew() {
|
||||||
|
return eigengew;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der eigengew-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEigengew(BigDecimal value) {
|
||||||
|
this.eigengew = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hzulGesgew-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getHzulGesgew() {
|
||||||
|
return hzulGesgew;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hzulGesgew-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHzulGesgew(BigDecimal value) {
|
||||||
|
this.hzulGesgew = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hGeschw-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getHGeschw() {
|
||||||
|
return hGeschw;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hGeschw-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHGeschw(BigDecimal value) {
|
||||||
|
this.hGeschw = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,233 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElements;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für VERS_OBJEKT_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VERS_OBJEKT_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <choice minOccurs="0">
|
||||||
|
* <element ref="{urn:omds20}VERS_PERSON"/>
|
||||||
|
* <element ref="{urn:omds20}VERS_KFZ"/>
|
||||||
|
* <element ref="{urn:omds20}VERS_SACHE"/>
|
||||||
|
* </choice>
|
||||||
|
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <element ref="{urn:omds20}EL-Anzahl"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Betrag"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Einstufung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Identifizierung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Grenzwert"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Text"/>
|
||||||
|
* </choice>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="ObjLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="VersObjTxt">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="100"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VERS_OBJEKT_Type", propOrder = {
|
||||||
|
"versperson",
|
||||||
|
"verskfz",
|
||||||
|
"verssache",
|
||||||
|
"elAnzahlOrELBetragOrELEinstufung"
|
||||||
|
})
|
||||||
|
public class VERSOBJEKTType {
|
||||||
|
|
||||||
|
@XmlElement(name = "VERS_PERSON")
|
||||||
|
protected VERSPERSONType versperson;
|
||||||
|
@XmlElement(name = "VERS_KFZ")
|
||||||
|
protected VERSKFZ verskfz;
|
||||||
|
@XmlElement(name = "VERS_SACHE")
|
||||||
|
protected VERSSACHEType verssache;
|
||||||
|
@XmlElements({
|
||||||
|
@XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class),
|
||||||
|
@XmlElement(name = "EL-Betrag", type = ELBetragType.class),
|
||||||
|
@XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class),
|
||||||
|
@XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class),
|
||||||
|
@XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class),
|
||||||
|
@XmlElement(name = "EL-Grenzwert", type = ELGrenzwertType.class),
|
||||||
|
@XmlElement(name = "EL-Text", type = ELTextType.class)
|
||||||
|
})
|
||||||
|
protected List<Object> elAnzahlOrELBetragOrELEinstufung;
|
||||||
|
@XmlAttribute(name = "ObjLfnr", required = true)
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int objLfnr;
|
||||||
|
@XmlAttribute(name = "VersObjTxt")
|
||||||
|
protected String versObjTxt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versperson-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VERSPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERSPERSONType getVERSPERSON() {
|
||||||
|
return versperson;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versperson-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VERSPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVERSPERSON(VERSPERSONType value) {
|
||||||
|
this.versperson = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verskfz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VERSKFZ }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERSKFZ getVERSKFZ() {
|
||||||
|
return verskfz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verskfz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VERSKFZ }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVERSKFZ(VERSKFZ value) {
|
||||||
|
this.verskfz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verssache-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VERSSACHEType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VERSSACHEType getVERSSACHE() {
|
||||||
|
return verssache;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verssache-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VERSSACHEType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVERSSACHE(VERSSACHEType value) {
|
||||||
|
this.verssache = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elAnzahlOrELBetragOrELEinstufung 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 elAnzahlOrELBetragOrELEinstufung property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELAnzahlOrELBetragOrELEinstufung().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELAnzahlType }
|
||||||
|
* {@link ELBetragType }
|
||||||
|
* {@link ELEinstufungType }
|
||||||
|
* {@link ELEntscheidungsfrageType }
|
||||||
|
* {@link ELIdentifizierungType }
|
||||||
|
* {@link ELGrenzwertType }
|
||||||
|
* {@link ELTextType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<Object> getELAnzahlOrELBetragOrELEinstufung() {
|
||||||
|
if (elAnzahlOrELBetragOrELEinstufung == null) {
|
||||||
|
elAnzahlOrELBetragOrELEinstufung = new ArrayList<Object>();
|
||||||
|
}
|
||||||
|
return this.elAnzahlOrELBetragOrELEinstufung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der objLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getObjLfnr() {
|
||||||
|
return objLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der objLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setObjLfnr(int value) {
|
||||||
|
this.objLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versObjTxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVersObjTxt() {
|
||||||
|
return versObjTxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versObjTxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersObjTxt(String value) {
|
||||||
|
this.versObjTxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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 VERS_PERSON_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VERS_PERSON_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VERS_PERSON_Type")
|
||||||
|
public class VERSPERSONType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Personennr", required = true)
|
||||||
|
protected String personennr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der personennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPersonennr() {
|
||||||
|
return personennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der personennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPersonennr(String value) {
|
||||||
|
this.personennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,690 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für VERS_SACHE_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VERS_SACHE_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds20}EL-Objektdaten" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Flaeche" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attGroup ref="{urn:omds20}Adresse_Attribute"/>
|
||||||
|
* <attribute name="VersSacheCd" use="required" type="{urn:omds20}VersSacheCd_Type" />
|
||||||
|
* <attribute name="VersSacheBez">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="60"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" />
|
||||||
|
* <attribute name="GebaeudeBez">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="60"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="BauartCd" type="{urn:omds20}BauartCd_Type" />
|
||||||
|
* <attribute name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" />
|
||||||
|
* <attribute name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" />
|
||||||
|
* <attribute name="DachungCd" type="{urn:omds20}DachungCd_Type" />
|
||||||
|
* <attribute name="NutzungCd" type="{urn:omds20}NutzungCd_Type" />
|
||||||
|
* <attribute name="SichergKz" type="{urn:omds20}Entsch2_Type" />
|
||||||
|
* <attribute name="VersLwCd" type="{urn:omds20}VersLwCd_Type" />
|
||||||
|
* <attribute name="StatusCd" type="{urn:omds20}StatusCd_Type" />
|
||||||
|
* <attribute name="Hersteller">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Modell">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VERS_SACHE_Type", propOrder = {
|
||||||
|
"elObjektdaten",
|
||||||
|
"elFlaeche"
|
||||||
|
})
|
||||||
|
public class VERSSACHEType {
|
||||||
|
|
||||||
|
@XmlElement(name = "EL-Objektdaten")
|
||||||
|
protected List<ELObjektdatenType> elObjektdaten;
|
||||||
|
@XmlElement(name = "EL-Flaeche")
|
||||||
|
protected List<ELFlaecheType> elFlaeche;
|
||||||
|
@XmlAttribute(name = "VersSacheCd", required = true)
|
||||||
|
protected String versSacheCd;
|
||||||
|
@XmlAttribute(name = "VersSacheBez")
|
||||||
|
protected String versSacheBez;
|
||||||
|
@XmlAttribute(name = "GebaeudeArtCd")
|
||||||
|
protected String gebaeudeArtCd;
|
||||||
|
@XmlAttribute(name = "GebaeudeBez")
|
||||||
|
protected String gebaeudeBez;
|
||||||
|
@XmlAttribute(name = "BauartCd")
|
||||||
|
protected String bauartCd;
|
||||||
|
@XmlAttribute(name = "GebaeudeHoeheCd")
|
||||||
|
protected String gebaeudeHoeheCd;
|
||||||
|
@XmlAttribute(name = "AusstattungCd")
|
||||||
|
protected String ausstattungCd;
|
||||||
|
@XmlAttribute(name = "DachungCd")
|
||||||
|
protected String dachungCd;
|
||||||
|
@XmlAttribute(name = "NutzungCd")
|
||||||
|
protected String nutzungCd;
|
||||||
|
@XmlAttribute(name = "SichergKz")
|
||||||
|
protected Entsch2Type sichergKz;
|
||||||
|
@XmlAttribute(name = "VersLwCd")
|
||||||
|
protected String versLwCd;
|
||||||
|
@XmlAttribute(name = "StatusCd")
|
||||||
|
protected String statusCd;
|
||||||
|
@XmlAttribute(name = "Hersteller")
|
||||||
|
protected String hersteller;
|
||||||
|
@XmlAttribute(name = "Modell")
|
||||||
|
protected String modell;
|
||||||
|
@XmlAttribute(name = "Pac")
|
||||||
|
@XmlSchemaType(name = "unsignedInt")
|
||||||
|
protected Long pac;
|
||||||
|
@XmlAttribute(name = "LandesCd")
|
||||||
|
protected String landesCd;
|
||||||
|
@XmlAttribute(name = "PLZ")
|
||||||
|
protected String plz;
|
||||||
|
@XmlAttribute(name = "Ort")
|
||||||
|
protected String ort;
|
||||||
|
@XmlAttribute(name = "Strasse")
|
||||||
|
protected String strasse;
|
||||||
|
@XmlAttribute(name = "Hausnr")
|
||||||
|
protected String hausnr;
|
||||||
|
@XmlAttribute(name = "Zusatz")
|
||||||
|
protected String zusatz;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elObjektdaten 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 elObjektdaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELObjektdaten().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELObjektdatenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELObjektdatenType> getELObjektdaten() {
|
||||||
|
if (elObjektdaten == null) {
|
||||||
|
elObjektdaten = new ArrayList<ELObjektdatenType>();
|
||||||
|
}
|
||||||
|
return this.elObjektdaten;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elFlaeche 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 elFlaeche property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELFlaeche().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELFlaecheType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELFlaecheType> getELFlaeche() {
|
||||||
|
if (elFlaeche == null) {
|
||||||
|
elFlaeche = new ArrayList<ELFlaecheType>();
|
||||||
|
}
|
||||||
|
return this.elFlaeche;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versSacheCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVersSacheCd() {
|
||||||
|
return versSacheCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versSacheCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersSacheCd(String value) {
|
||||||
|
this.versSacheCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versSacheBez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVersSacheBez() {
|
||||||
|
return versSacheBez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versSacheBez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersSacheBez(String value) {
|
||||||
|
this.versSacheBez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gebaeudeArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getGebaeudeArtCd() {
|
||||||
|
return gebaeudeArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gebaeudeArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGebaeudeArtCd(String value) {
|
||||||
|
this.gebaeudeArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gebaeudeBez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getGebaeudeBez() {
|
||||||
|
return gebaeudeBez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gebaeudeBez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGebaeudeBez(String value) {
|
||||||
|
this.gebaeudeBez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bauartCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBauartCd() {
|
||||||
|
return bauartCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bauartCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBauartCd(String value) {
|
||||||
|
this.bauartCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getGebaeudeHoeheCd() {
|
||||||
|
return gebaeudeHoeheCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGebaeudeHoeheCd(String value) {
|
||||||
|
this.gebaeudeHoeheCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ausstattungCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAusstattungCd() {
|
||||||
|
return ausstattungCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ausstattungCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAusstattungCd(String value) {
|
||||||
|
this.ausstattungCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dachungCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getDachungCd() {
|
||||||
|
return dachungCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dachungCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDachungCd(String value) {
|
||||||
|
this.dachungCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der nutzungCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getNutzungCd() {
|
||||||
|
return nutzungCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der nutzungCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNutzungCd(String value) {
|
||||||
|
this.nutzungCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sichergKz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Entsch2Type getSichergKz() {
|
||||||
|
return sichergKz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sichergKz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSichergKz(Entsch2Type value) {
|
||||||
|
this.sichergKz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versLwCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVersLwCd() {
|
||||||
|
return versLwCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versLwCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersLwCd(String value) {
|
||||||
|
this.versLwCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der statusCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getStatusCd() {
|
||||||
|
return statusCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der statusCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStatusCd(String value) {
|
||||||
|
this.statusCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hersteller-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getHersteller() {
|
||||||
|
return hersteller;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hersteller-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHersteller(String value) {
|
||||||
|
this.hersteller = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der modell-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getModell() {
|
||||||
|
return modell;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der modell-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setModell(String value) {
|
||||||
|
this.modell = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der pac-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Long getPac() {
|
||||||
|
return pac;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der pac-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPac(Long value) {
|
||||||
|
this.pac = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der landesCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getLandesCd() {
|
||||||
|
return landesCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der landesCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLandesCd(String value) {
|
||||||
|
this.landesCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der plz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPLZ() {
|
||||||
|
return plz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der plz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPLZ(String value) {
|
||||||
|
this.plz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getOrt() {
|
||||||
|
return ort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOrt(String value) {
|
||||||
|
this.ort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der strasse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getStrasse() {
|
||||||
|
return strasse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der strasse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStrasse(String value) {
|
||||||
|
this.strasse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hausnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getHausnr() {
|
||||||
|
return hausnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hausnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHausnr(String value) {
|
||||||
|
this.hausnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zusatz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZusatz() {
|
||||||
|
return zusatz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zusatz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZusatz(String value) {
|
||||||
|
this.zusatz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,132 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.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 maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <element ref="{urn:omds20}EL-Kommunikation"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="VUNr" use="required" type="{urn:omds20}VUNr" />
|
||||||
|
* <attribute name="VUBezeichnung">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="100"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"elKommunikation"
|
||||||
|
})
|
||||||
|
@XmlRootElement(name = "VERS_UNTERNEHMEN")
|
||||||
|
public class VERSUNTERNEHMEN {
|
||||||
|
|
||||||
|
@XmlElement(name = "EL-Kommunikation")
|
||||||
|
protected List<ELKommunikationType> elKommunikation;
|
||||||
|
@XmlAttribute(name = "VUNr", required = true)
|
||||||
|
protected String vuNr;
|
||||||
|
@XmlAttribute(name = "VUBezeichnung")
|
||||||
|
protected String vuBezeichnung;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elKommunikation 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 elKommunikation property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELKommunikation().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELKommunikationType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELKommunikationType> getELKommunikation() {
|
||||||
|
if (elKommunikation == null) {
|
||||||
|
elKommunikation = new ArrayList<ELKommunikationType>();
|
||||||
|
}
|
||||||
|
return this.elKommunikation;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vuNr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVUNr() {
|
||||||
|
return vuNr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vuNr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVUNr(String value) {
|
||||||
|
this.vuNr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vuBezeichnung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVUBezeichnung() {
|
||||||
|
return vuBezeichnung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vuBezeichnung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVUBezeichnung(String value) {
|
||||||
|
this.vuBezeichnung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
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>
|
||||||
|
* <extension base="{urn:omds20}VERTRAG_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "")
|
||||||
|
@XmlRootElement(name = "VERTRAG")
|
||||||
|
public class VERTRAG
|
||||||
|
extends VERTRAGType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,223 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für VERTRAGSFONDS_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VERTRAGSFONDS_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds20}PORTFOLIO" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}FONDS" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Betrag" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
|
||||||
|
* <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VERTRAGSFONDS_Type", propOrder = {
|
||||||
|
"portfolio",
|
||||||
|
"fonds",
|
||||||
|
"elBetrag",
|
||||||
|
"elText"
|
||||||
|
})
|
||||||
|
public class VERTRAGSFONDSType {
|
||||||
|
|
||||||
|
@XmlElement(name = "PORTFOLIO")
|
||||||
|
protected List<PORTFOLIO> portfolio;
|
||||||
|
@XmlElement(name = "FONDS")
|
||||||
|
protected List<FONDSType> fonds;
|
||||||
|
@XmlElement(name = "EL-Betrag")
|
||||||
|
protected List<ELBetragType> elBetrag;
|
||||||
|
@XmlElement(name = "EL-Text")
|
||||||
|
protected List<ELTextType> elText;
|
||||||
|
@XmlAttribute(name = "Polizzennr", required = true)
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlAttribute(name = "VertragsID")
|
||||||
|
protected String vertragsID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the portfolio 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 portfolio property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getPORTFOLIO().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link PORTFOLIO }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<PORTFOLIO> getPORTFOLIO() {
|
||||||
|
if (portfolio == null) {
|
||||||
|
portfolio = new ArrayList<PORTFOLIO>();
|
||||||
|
}
|
||||||
|
return this.portfolio;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the fonds 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 fonds property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getFONDS().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link FONDSType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<FONDSType> getFONDS() {
|
||||||
|
if (fonds == null) {
|
||||||
|
fonds = new ArrayList<FONDSType>();
|
||||||
|
}
|
||||||
|
return this.fonds;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elBetrag 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 elBetrag property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELBetrag().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELBetragType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELBetragType> getELBetrag() {
|
||||||
|
if (elBetrag == null) {
|
||||||
|
elBetrag = new ArrayList<ELBetragType>();
|
||||||
|
}
|
||||||
|
return this.elBetrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elText 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 elText property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELText().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELTextType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELTextType> getELText() {
|
||||||
|
if (elText == null) {
|
||||||
|
elText = new ArrayList<ELTextType>();
|
||||||
|
}
|
||||||
|
return this.elText;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,106 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für VERTRAGSPERSON_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VERTRAGSPERSON_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="VtgRolleCd" use="required" type="{urn:omds20}VtgRolleCd_Type" />
|
||||||
|
* <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Personennr" use="required" type="{urn:omds20}Personennr" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VERTRAGSPERSON_Type")
|
||||||
|
public class VERTRAGSPERSONType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "VtgRolleCd", required = true)
|
||||||
|
protected VtgRolleCdType vtgRolleCd;
|
||||||
|
@XmlAttribute(name = "Lfnr", required = true)
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int lfnr;
|
||||||
|
@XmlAttribute(name = "Personennr", required = true)
|
||||||
|
protected String personennr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgRolleCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VtgRolleCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VtgRolleCdType getVtgRolleCd() {
|
||||||
|
return vtgRolleCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgRolleCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VtgRolleCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgRolleCd(VtgRolleCdType value) {
|
||||||
|
this.vtgRolleCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der lfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getLfnr() {
|
||||||
|
return lfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der lfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLfnr(int value) {
|
||||||
|
this.lfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der personennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPersonennr() {
|
||||||
|
return personennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der personennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPersonennr(String value) {
|
||||||
|
this.personennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,946 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
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.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElements;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für VERTRAG_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="VERTRAG_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <element ref="{urn:omds20}EL-Antrag"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Anzahl"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Betrag"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Bezugsberechtigung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Einstufung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Entscheidungsfrage"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Identifizierung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Klausel"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Polizzennummer"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Praemienfreistellung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Praemienkorrektur"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Rahmenvereinbarung"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Selbstbehalt"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Text"/>
|
||||||
|
* </choice>
|
||||||
|
* <element ref="{urn:omds20}VERTRAGSPERSON" maxOccurs="unbounded"/>
|
||||||
|
* <element ref="{urn:omds20}VERS_OBJEKT" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}SPARTE" maxOccurs="unbounded"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="Polizzennr" use="required" type="{urn:omds20}Polizzennr" />
|
||||||
|
* <attribute name="VertragsID" type="{urn:omds20}VertragsID" />
|
||||||
|
* <attribute name="Vermnr" use="required" type="{urn:omds20}Vermnr" />
|
||||||
|
* <attribute name="VtgProdCd" use="required" type="{urn:omds20}VtgProdCd_Type" />
|
||||||
|
* <attribute name="VtgProdukt">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" />
|
||||||
|
* <attribute name="ZahlRhythmCd" use="required" type="{urn:omds20}ZahlRhythmCd_Type" />
|
||||||
|
* <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
|
||||||
|
* <attribute name="VtgStatusCd" use="required" type="{urn:omds20}VtgStatusCd_Type" />
|
||||||
|
* <attribute name="VtgStatusBeg" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="VtgBeg" use="required" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="VtgEnd" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="StornoGiltAb" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="Hptfaelligkeit">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}gMonthDay">
|
||||||
|
* <minInclusive value="--01-01"/>
|
||||||
|
* <maxInclusive value="--12-31"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="DurchfDat" use="required" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="GueltigBeg" use="required" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="AendGrundCd" use="required" type="{urn:omds20}AendGrundCd_Type" />
|
||||||
|
* <attribute name="AendGrundbez">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="60"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="PraemieNtoVtg" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{urn:omds20}decimal">
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="PraemieBtoVtg" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
|
||||||
|
* <attribute name="BLZ">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="9"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Ktonr">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="15"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="BIC">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="11"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="IBAN">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="34"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "VERTRAG_Type", propOrder = {
|
||||||
|
"elAntragOrELAnzahlOrELBetrag",
|
||||||
|
"vertragsperson",
|
||||||
|
"versobjekt",
|
||||||
|
"sparte"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
VERTRAG.class
|
||||||
|
})
|
||||||
|
public class VERTRAGType {
|
||||||
|
|
||||||
|
@XmlElements({
|
||||||
|
@XmlElement(name = "EL-Antrag", type = ELAntragType.class),
|
||||||
|
@XmlElement(name = "EL-Anzahl", type = ELAnzahlType.class),
|
||||||
|
@XmlElement(name = "EL-Betrag", type = ELBetragType.class),
|
||||||
|
@XmlElement(name = "EL-Bezugsberechtigung", type = ELBezugsberechtigungType.class),
|
||||||
|
@XmlElement(name = "EL-Einstufung", type = ELEinstufungType.class),
|
||||||
|
@XmlElement(name = "EL-Entscheidungsfrage", type = ELEntscheidungsfrageType.class),
|
||||||
|
@XmlElement(name = "EL-Identifizierung", type = ELIdentifizierungType.class),
|
||||||
|
@XmlElement(name = "EL-Klausel", type = ELKlauselType.class),
|
||||||
|
@XmlElement(name = "EL-Polizzennummer", type = ELPolizzennummerType.class),
|
||||||
|
@XmlElement(name = "EL-Praemienfreistellung", type = ELPraemienfreistellungType.class),
|
||||||
|
@XmlElement(name = "EL-Praemienkorrektur", type = ELPraemienkorrekturType.class),
|
||||||
|
@XmlElement(name = "EL-Rahmenvereinbarung", type = ELRahmenvereinbarungType.class),
|
||||||
|
@XmlElement(name = "EL-Selbstbehalt", type = ELSelbstbehalt.class),
|
||||||
|
@XmlElement(name = "EL-Text", type = ELTextType.class)
|
||||||
|
})
|
||||||
|
protected List<Object> elAntragOrELAnzahlOrELBetrag;
|
||||||
|
@XmlElement(name = "VERTRAGSPERSON", required = true)
|
||||||
|
protected List<VERTRAGSPERSONType> vertragsperson;
|
||||||
|
@XmlElement(name = "VERS_OBJEKT")
|
||||||
|
protected List<VERSOBJEKTType> versobjekt;
|
||||||
|
@XmlElement(name = "SPARTE", required = true)
|
||||||
|
protected List<SPARTEType> sparte;
|
||||||
|
@XmlAttribute(name = "Polizzennr", required = true)
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlAttribute(name = "VertragsID")
|
||||||
|
protected String vertragsID;
|
||||||
|
@XmlAttribute(name = "Vermnr", required = true)
|
||||||
|
protected String vermnr;
|
||||||
|
@XmlAttribute(name = "VtgProdCd", required = true)
|
||||||
|
protected String vtgProdCd;
|
||||||
|
@XmlAttribute(name = "VtgProdukt")
|
||||||
|
protected String vtgProdukt;
|
||||||
|
@XmlAttribute(name = "VtgSparteCd")
|
||||||
|
protected String vtgSparteCd;
|
||||||
|
@XmlAttribute(name = "ZahlRhythmCd", required = true)
|
||||||
|
protected String zahlRhythmCd;
|
||||||
|
@XmlAttribute(name = "ZahlWegCd", required = true)
|
||||||
|
protected String zahlWegCd;
|
||||||
|
@XmlAttribute(name = "VtgStatusCd", required = true)
|
||||||
|
protected String vtgStatusCd;
|
||||||
|
@XmlAttribute(name = "VtgStatusBeg")
|
||||||
|
protected XMLGregorianCalendar vtgStatusBeg;
|
||||||
|
@XmlAttribute(name = "VtgBeg", required = true)
|
||||||
|
protected XMLGregorianCalendar vtgBeg;
|
||||||
|
@XmlAttribute(name = "VtgEnd")
|
||||||
|
protected XMLGregorianCalendar vtgEnd;
|
||||||
|
@XmlAttribute(name = "StornoGiltAb")
|
||||||
|
protected XMLGregorianCalendar stornoGiltAb;
|
||||||
|
@XmlAttribute(name = "Hptfaelligkeit")
|
||||||
|
protected XMLGregorianCalendar hptfaelligkeit;
|
||||||
|
@XmlAttribute(name = "DurchfDat", required = true)
|
||||||
|
protected XMLGregorianCalendar durchfDat;
|
||||||
|
@XmlAttribute(name = "GueltigBeg", required = true)
|
||||||
|
protected XMLGregorianCalendar gueltigBeg;
|
||||||
|
@XmlAttribute(name = "AendGrundCd", required = true)
|
||||||
|
protected String aendGrundCd;
|
||||||
|
@XmlAttribute(name = "AendGrundbez")
|
||||||
|
protected String aendGrundbez;
|
||||||
|
@XmlAttribute(name = "PraemieNtoVtg", required = true)
|
||||||
|
protected BigDecimal praemieNtoVtg;
|
||||||
|
@XmlAttribute(name = "PraemieBtoVtg", required = true)
|
||||||
|
protected BigDecimal praemieBtoVtg;
|
||||||
|
@XmlAttribute(name = "WaehrungsCd", required = true)
|
||||||
|
protected WaehrungsCdType waehrungsCd;
|
||||||
|
@XmlAttribute(name = "BLZ")
|
||||||
|
protected String blz;
|
||||||
|
@XmlAttribute(name = "Ktonr")
|
||||||
|
protected String ktonr;
|
||||||
|
@XmlAttribute(name = "BIC")
|
||||||
|
protected String bic;
|
||||||
|
@XmlAttribute(name = "IBAN")
|
||||||
|
protected String iban;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elAntragOrELAnzahlOrELBetrag 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 elAntragOrELAnzahlOrELBetrag property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELAntragOrELAnzahlOrELBetrag().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELAntragType }
|
||||||
|
* {@link ELAnzahlType }
|
||||||
|
* {@link ELBetragType }
|
||||||
|
* {@link ELBezugsberechtigungType }
|
||||||
|
* {@link ELEinstufungType }
|
||||||
|
* {@link ELEntscheidungsfrageType }
|
||||||
|
* {@link ELIdentifizierungType }
|
||||||
|
* {@link ELKlauselType }
|
||||||
|
* {@link ELPolizzennummerType }
|
||||||
|
* {@link ELPraemienfreistellungType }
|
||||||
|
* {@link ELPraemienkorrekturType }
|
||||||
|
* {@link ELRahmenvereinbarungType }
|
||||||
|
* {@link ELSelbstbehalt }
|
||||||
|
* {@link ELTextType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<Object> getELAntragOrELAnzahlOrELBetrag() {
|
||||||
|
if (elAntragOrELAnzahlOrELBetrag == null) {
|
||||||
|
elAntragOrELAnzahlOrELBetrag = new ArrayList<Object>();
|
||||||
|
}
|
||||||
|
return this.elAntragOrELAnzahlOrELBetrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the vertragsperson 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 vertragsperson property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVERTRAGSPERSON().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link VERTRAGSPERSONType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<VERTRAGSPERSONType> getVERTRAGSPERSON() {
|
||||||
|
if (vertragsperson == null) {
|
||||||
|
vertragsperson = new ArrayList<VERTRAGSPERSONType>();
|
||||||
|
}
|
||||||
|
return this.vertragsperson;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the versobjekt 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 versobjekt property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVERSOBJEKT().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link VERSOBJEKTType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<VERSOBJEKTType> getVERSOBJEKT() {
|
||||||
|
if (versobjekt == null) {
|
||||||
|
versobjekt = new ArrayList<VERSOBJEKTType>();
|
||||||
|
}
|
||||||
|
return this.versobjekt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the sparte 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 sparte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getSPARTE().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link SPARTEType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<SPARTEType> getSPARTE() {
|
||||||
|
if (sparte == null) {
|
||||||
|
sparte = new ArrayList<SPARTEType>();
|
||||||
|
}
|
||||||
|
return this.sparte;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vermnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVermnr() {
|
||||||
|
return vermnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vermnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVermnr(String value) {
|
||||||
|
this.vermnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgProdCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVtgProdCd() {
|
||||||
|
return vtgProdCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgProdCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgProdCd(String value) {
|
||||||
|
this.vtgProdCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgProdukt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVtgProdukt() {
|
||||||
|
return vtgProdukt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgProdukt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgProdukt(String value) {
|
||||||
|
this.vtgProdukt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgSparteCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVtgSparteCd() {
|
||||||
|
return vtgSparteCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgSparteCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgSparteCd(String value) {
|
||||||
|
this.vtgSparteCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlRhythmCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZahlRhythmCd() {
|
||||||
|
return zahlRhythmCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlRhythmCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlRhythmCd(String value) {
|
||||||
|
this.zahlRhythmCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlWegCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZahlWegCd() {
|
||||||
|
return zahlWegCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlWegCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlWegCd(String value) {
|
||||||
|
this.zahlWegCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgStatusCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVtgStatusCd() {
|
||||||
|
return vtgStatusCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgStatusCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgStatusCd(String value) {
|
||||||
|
this.vtgStatusCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgStatusBeg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getVtgStatusBeg() {
|
||||||
|
return vtgStatusBeg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgStatusBeg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgStatusBeg(XMLGregorianCalendar value) {
|
||||||
|
this.vtgStatusBeg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgBeg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getVtgBeg() {
|
||||||
|
return vtgBeg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgBeg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgBeg(XMLGregorianCalendar value) {
|
||||||
|
this.vtgBeg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgEnd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getVtgEnd() {
|
||||||
|
return vtgEnd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgEnd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgEnd(XMLGregorianCalendar value) {
|
||||||
|
this.vtgEnd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der stornoGiltAb-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getStornoGiltAb() {
|
||||||
|
return stornoGiltAb;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der stornoGiltAb-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStornoGiltAb(XMLGregorianCalendar value) {
|
||||||
|
this.stornoGiltAb = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hptfaelligkeit-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getHptfaelligkeit() {
|
||||||
|
return hptfaelligkeit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hptfaelligkeit-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHptfaelligkeit(XMLGregorianCalendar value) {
|
||||||
|
this.hptfaelligkeit = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der durchfDat-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getDurchfDat() {
|
||||||
|
return durchfDat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der durchfDat-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDurchfDat(XMLGregorianCalendar value) {
|
||||||
|
this.durchfDat = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gueltigBeg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getGueltigBeg() {
|
||||||
|
return gueltigBeg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gueltigBeg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGueltigBeg(XMLGregorianCalendar value) {
|
||||||
|
this.gueltigBeg = 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemieNtoVtg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getPraemieNtoVtg() {
|
||||||
|
return praemieNtoVtg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemieNtoVtg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemieNtoVtg(BigDecimal value) {
|
||||||
|
this.praemieNtoVtg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemieBtoVtg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getPraemieBtoVtg() {
|
||||||
|
return praemieBtoVtg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemieBtoVtg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemieBtoVtg(BigDecimal value) {
|
||||||
|
this.praemieBtoVtg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der waehrungsCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public WaehrungsCdType getWaehrungsCd() {
|
||||||
|
return waehrungsCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der waehrungsCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWaehrungsCd(WaehrungsCdType value) {
|
||||||
|
this.waehrungsCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der blz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBLZ() {
|
||||||
|
return blz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der blz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBLZ(String value) {
|
||||||
|
this.blz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ktonr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKtonr() {
|
||||||
|
return ktonr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ktonr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKtonr(String value) {
|
||||||
|
this.ktonr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bic-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBIC() {
|
||||||
|
return bic;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bic-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBIC(String value) {
|
||||||
|
this.bic = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der iban-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getIBAN() {
|
||||||
|
return iban;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der iban-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setIBAN(String value) {
|
||||||
|
this.iban = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,111 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für VSArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="VSArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="ALS"/>
|
||||||
|
* <enumeration value="BDS"/>
|
||||||
|
* <enumeration value="BVS"/>
|
||||||
|
* <enumeration value="ELS"/>
|
||||||
|
* <enumeration value="EVS"/>
|
||||||
|
* <enumeration value="HHS"/>
|
||||||
|
* <enumeration value="HLS"/>
|
||||||
|
* <enumeration value="OVS"/>
|
||||||
|
* <enumeration value="PFR"/>
|
||||||
|
* <enumeration value="PPF"/>
|
||||||
|
* <enumeration value="PVS"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "VSArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum VSArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ablebensumme
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ALS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bausparen Darlehenssumme
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
BDS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bausparen Vertragssumme
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
BVS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Erlebensumme
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ELS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* EinzelVS
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
EVS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Höchsthaftungssumme
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
HHS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Höchstleistungssumme
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
HLS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ohne Versicherungssumme
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
OVS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* prämienfrei
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
PFR,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* prämienpflichtig
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
PPF,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PauschalVS
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
PVS;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static VSArtCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,97 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für VtgRolleCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="VtgRolleCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="AP"/>
|
||||||
|
* <enumeration value="BG"/>
|
||||||
|
* <enumeration value="BM"/>
|
||||||
|
* <enumeration value="BO"/>
|
||||||
|
* <enumeration value="IA"/>
|
||||||
|
* <enumeration value="GV"/>
|
||||||
|
* <enumeration value="LE"/>
|
||||||
|
* <enumeration value="KA"/>
|
||||||
|
* <enumeration value="VN"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "VtgRolleCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum VtgRolleCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ansprechperson
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
AP,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bausparer gesetzlicher Vertreter
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
BG,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bausparer mit Prämie
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
BM,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bausparer ohne Prämie
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
BO,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inkassoadresse
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
IA,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gesetzlicher Vertreter
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
GV,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lenker
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
LE,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Korrespondenz/Zustelladresse
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
KA,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Versicherungsnehmer
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VN;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static VtgRolleCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,279 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für WaehrungsCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <p>
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="WaehrungsCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="AUD"/>
|
||||||
|
* <enumeration value="BGL"/>
|
||||||
|
* <enumeration value="CAD"/>
|
||||||
|
* <enumeration value="CHF"/>
|
||||||
|
* <enumeration value="CYP"/>
|
||||||
|
* <enumeration value="CZR"/>
|
||||||
|
* <enumeration value="DKK"/>
|
||||||
|
* <enumeration value="EUR"/>
|
||||||
|
* <enumeration value="GBP"/>
|
||||||
|
* <enumeration value="GIP"/>
|
||||||
|
* <enumeration value="HKD"/>
|
||||||
|
* <enumeration value="HRK"/>
|
||||||
|
* <enumeration value="HUF"/>
|
||||||
|
* <enumeration value="ILS"/>
|
||||||
|
* <enumeration value="INR"/>
|
||||||
|
* <enumeration value="ISK"/>
|
||||||
|
* <enumeration value="JOD"/>
|
||||||
|
* <enumeration value="JPY"/>
|
||||||
|
* <enumeration value="MLT"/>
|
||||||
|
* <enumeration value="MXP"/>
|
||||||
|
* <enumeration value="NOK"/>
|
||||||
|
* <enumeration value="NZD"/>
|
||||||
|
* <enumeration value="PLZ"/>
|
||||||
|
* <enumeration value="ROL"/>
|
||||||
|
* <enumeration value="SEK"/>
|
||||||
|
* <enumeration value="SGD"/>
|
||||||
|
* <enumeration value="SIT"/>
|
||||||
|
* <enumeration value="SKK"/>
|
||||||
|
* <enumeration value="SUR"/>
|
||||||
|
* <enumeration value="TND"/>
|
||||||
|
* <enumeration value="TRL"/>
|
||||||
|
* <enumeration value="TWD"/>
|
||||||
|
* <enumeration value="USD"/>
|
||||||
|
* <enumeration value="YUN"/>
|
||||||
|
* <enumeration value="ZAR"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "WaehrungsCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum WaehrungsCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dollar Australien
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
AUD,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lewa Bulgarien
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
BGL,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dollar Kanadien
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
CAD,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Franken Schweiz
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
CHF,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pfund Zypern
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
CYP,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Krone Tschechien
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
CZR,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Krone Dänemark
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
DKK,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* EURO
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
EUR,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pfund Großbritannien
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
GBP,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pfund Gibraltar
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
GIP,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dollar Hongkong
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
HKD,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Kuna Kroatia
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
HRK,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Forint Ungarn
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
HUF,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Shekel Israel
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ILS,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rupie Indien
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
INR,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Krone Island
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ISK,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dinar Jordanien
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
JOD,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Yen Japan
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
JPY,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pfund Malta
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
MLT,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Peso Mexiko
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
MXP,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Krone Norwegen
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
NOK,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dollar Neuseeland
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
NZD,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Zloty Polen
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
PLZ,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lau Rumänien
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ROL,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Krone Schweden
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SEK,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dollar Singapur
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SGD,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tolar Slowenien
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SIT,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Krone Slowakei
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SKK,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rubel Rußland
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SUR,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dinar Tunesien
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
TND,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lira Türkei
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
TRL,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dollar Taiwan
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
TWD,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* US Dollar $
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
USD,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dinar Jugoslawien-Rest
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
YUN,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rand Südafrika
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
ZAR;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static WaehrungsCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,323 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für ZAHLUNG_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ZAHLUNG_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="ZahlungsLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="WaehrungsCd" use="required" type="{urn:omds20}WaehrungsCd_Type" />
|
||||||
|
* <attribute name="ZahlBetrag" use="required" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="ZahlDat" use="required" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="ZahlGrundCd" use="required" type="{urn:omds20}ZahlGrundCd_Type" />
|
||||||
|
* <attribute name="ZahlWegCd" use="required" type="{urn:omds20}ZahlWegCd_Type" />
|
||||||
|
* <attribute name="BLZ">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="9"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Kontonr">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="15"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="BIC">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="11"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="IBAN">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="34"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ZAHLUNG_Type")
|
||||||
|
public class ZAHLUNGType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "ZahlungsLfnr", required = true)
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int zahlungsLfnr;
|
||||||
|
@XmlAttribute(name = "WaehrungsCd", required = true)
|
||||||
|
protected WaehrungsCdType waehrungsCd;
|
||||||
|
@XmlAttribute(name = "ZahlBetrag", required = true)
|
||||||
|
protected BigDecimal zahlBetrag;
|
||||||
|
@XmlAttribute(name = "ZahlDat", required = true)
|
||||||
|
protected XMLGregorianCalendar zahlDat;
|
||||||
|
@XmlAttribute(name = "ZahlGrundCd", required = true)
|
||||||
|
protected String zahlGrundCd;
|
||||||
|
@XmlAttribute(name = "ZahlWegCd", required = true)
|
||||||
|
protected String zahlWegCd;
|
||||||
|
@XmlAttribute(name = "BLZ")
|
||||||
|
protected String blz;
|
||||||
|
@XmlAttribute(name = "Kontonr")
|
||||||
|
protected String kontonr;
|
||||||
|
@XmlAttribute(name = "BIC")
|
||||||
|
protected String bic;
|
||||||
|
@XmlAttribute(name = "IBAN")
|
||||||
|
protected String iban;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlungsLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getZahlungsLfnr() {
|
||||||
|
return zahlungsLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlungsLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlungsLfnr(int value) {
|
||||||
|
this.zahlungsLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der waehrungsCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public WaehrungsCdType getWaehrungsCd() {
|
||||||
|
return waehrungsCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der waehrungsCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWaehrungsCd(WaehrungsCdType value) {
|
||||||
|
this.waehrungsCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlBetrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getZahlBetrag() {
|
||||||
|
return zahlBetrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlBetrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlBetrag(BigDecimal value) {
|
||||||
|
this.zahlBetrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlDat-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getZahlDat() {
|
||||||
|
return zahlDat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlDat-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlDat(XMLGregorianCalendar value) {
|
||||||
|
this.zahlDat = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlGrundCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZahlGrundCd() {
|
||||||
|
return zahlGrundCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlGrundCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlGrundCd(String value) {
|
||||||
|
this.zahlGrundCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlWegCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZahlWegCd() {
|
||||||
|
return zahlWegCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlWegCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlWegCd(String value) {
|
||||||
|
this.zahlWegCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der blz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBLZ() {
|
||||||
|
return blz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der blz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBLZ(String value) {
|
||||||
|
this.blz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kontonr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKontonr() {
|
||||||
|
return kontonr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kontonr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKontonr(String value) {
|
||||||
|
this.kontonr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bic-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBIC() {
|
||||||
|
return bic;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bic-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBIC(String value) {
|
||||||
|
this.bic = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der iban-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getIBAN() {
|
||||||
|
return iban;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der iban-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setIBAN(String value) {
|
||||||
|
this.iban = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds20", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
|
||||||
|
package at.vvo.omds.types.omds2Types.v2_12_01;
|
||||||
@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.PERSONType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.PERSONType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import javax.xml.bind.annotation.XmlElement;
|
|||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
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 at.vvo.omds.types.omds2Types.v2_11.ELZeitraumType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELZeitraumType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetStateChangesRequestType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetStateChangesRequestType;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlElement;
|
|||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
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.omds2Types.v2_11.Entsch2Type;
|
import at.vvo.omds.types.omds2Types.v2_12_01.Entsch2Type;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELLegitimationType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELLegitimationType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -8,16 +8,16 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELAnzahlType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELAnzahlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELEinstufungType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELEinstufungType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELEntscheidungsfrageType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELEntscheidungsfrageType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELIdentifizierungType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELIdentifizierungType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELKommunikationType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELKommunikationType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELLegitimationType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELLegitimationType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELTextType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELTextType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.NATUERLICHEPERSONType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.NATUERLICHEPERSONType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.PersArtCdType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.PersArtCdType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.SONSTIGEPERSONType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.SONSTIGEPERSONType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.WaehrungsCdType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.WaehrungsCdType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ 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.omds2Types.v2_11.ELRahmenvereinbarungType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELRahmenvereinbarungType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.VerkaufsproduktKfzType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.VerkaufsproduktKfzType;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ADRESSEType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.VtgRolleCdType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.VtgRolleCdType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.PERSONType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.PERSONType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELEinstufungType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELEinstufungType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELVersicherungssummeType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELVersicherungssummeType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlElement;
|
|||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
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.omds2Types.v2_11.PersArtCdType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.PersArtCdType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.FahrzeugType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.FahrzeugType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.VerkaufsproduktType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.VerkaufsproduktType;
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ADRESSEType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELFlaecheType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELFlaecheType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.Entsch2Type;
|
import at.vvo.omds.types.omds2Types.v2_12_01.Entsch2Type;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.VersichertesInteresseMitAttributMetadatenType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.VersichertesInteresseMitAttributMetadatenType;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.VERTRAGType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.VERTRAGType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlElements;
|
import javax.xml.bind.annotation.XmlElements;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.VERTRAGType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.VERTRAGType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.AdresseType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.AdresseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType;
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.VERTRAGType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.VERTRAGType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.AdresseType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.AdresseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import javax.xml.bind.annotation.XmlElements;
|
|||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
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.omds2Types.v2_11.ELKommunikationType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELKommunikationType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import javax.xml.bind.annotation.XmlElementRefs;
|
|||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
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.omds2Types.v2_11.ELKommunikationType;
|
import at.vvo.omds.types.omds2Types.v2_12_01.ELKommunikationType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.DateianhangType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.DateianhangType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
|
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
|
||||||
@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
|
|||||||
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
protected ObjektIdType objektId;
|
protected ObjektIdType objektId;
|
||||||
@XmlElementRefs({
|
@XmlElementRefs({
|
||||||
|
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class),
|
||||||
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
|
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
|
||||||
@XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
|
@XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class)
|
||||||
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class)
|
|
||||||
})
|
})
|
||||||
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
|
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
|
||||||
@XmlElement(name = "WirksamtkeitAb", required = true)
|
@XmlElement(name = "WirksamtkeitAb", required = true)
|
||||||
@@ -115,9 +115,9 @@ public class ChangeCommunicationObjectRequestType
|
|||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
|
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user