Code für mehrere ältere Versionen eingeschlossen, Annox verwendet, Beispiele teilweise aus dem src-Directory entfernt

This commit is contained in:
2025-02-04 15:43:58 +01:00
parent e1129cad88
commit ffa010c6ae
1565 changed files with 161933 additions and 14923 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,279 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.RisikoAdresseType;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for ADRESSE_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
@XmlAttribute(name = "AdressID_VU")
protected String adressIDVU;
@XmlAttribute(name = "AdressID_Makler")
protected String adressIDMakler;
/**
* Gets the value of the pac property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getPac() {
return pac;
}
/**
* Sets the value of the pac property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setPac(Long value) {
this.pac = value;
}
/**
* Gets the value of the landesCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLandesCd() {
return landesCd;
}
/**
* Sets the value of the landesCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLandesCd(String value) {
this.landesCd = value;
}
/**
* Gets the value of the plz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPLZ() {
return plz;
}
/**
* Sets the value of the plz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPLZ(String value) {
this.plz = value;
}
/**
* Gets the value of the ort property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrt() {
return ort;
}
/**
* Sets the value of the ort property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrt(String value) {
this.ort = value;
}
/**
* Gets the value of the strasse property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStrasse() {
return strasse;
}
/**
* Sets the value of the strasse property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStrasse(String value) {
this.strasse = value;
}
/**
* Gets the value of the hausnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHausnr() {
return hausnr;
}
/**
* Sets the value of the hausnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHausnr(String value) {
this.hausnr = value;
}
/**
* Gets the value of the zusatz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZusatz() {
return zusatz;
}
/**
* Sets the value of the zusatz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZusatz(String value) {
this.zusatz = value;
}
/**
* Gets the value of the adressIDVU property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDVU() {
return adressIDVU;
}
/**
* Sets the value of the adressIDVU property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDVU(String value) {
this.adressIDVU = value;
}
/**
* Gets the value of the adressIDMakler property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDMakler() {
return adressIDMakler;
}
/**
* Sets the value of the adressIDMakler property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDMakler(String value) {
this.adressIDMakler = value;
}
}

View File

@@ -0,0 +1,60 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for BBArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,92 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Antrag_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the nummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNummer() {
return nummer;
}
/**
* Sets the value of the nummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNummer(String value) {
this.nummer = value;
}
/**
* Gets the value of the datum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatum() {
return datum;
}
/**
* Sets the value of the datum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatum(XMLGregorianCalendar value) {
this.datum = value;
}
}

View File

@@ -0,0 +1,99 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Anzahl_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the bezeichnung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBezeichnung() {
return bezeichnung;
}
/**
* Sets the value of the bezeichnung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBezeichnung(String value) {
this.bezeichnung = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
}

View File

@@ -0,0 +1,181 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Betrag_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the betragArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBetragArtCd() {
return betragArtCd;
}
/**
* Sets the value of the betragArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBetragArtCd(String value) {
this.betragArtCd = value;
}
/**
* Gets the value of the datum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatum() {
return datum;
}
/**
* Sets the value of the datum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatum(XMLGregorianCalendar value) {
this.datum = value;
}
/**
* Gets the value of the bezeichnung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBezeichnung() {
return bezeichnung;
}
/**
* Sets the value of the bezeichnung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBezeichnung(String value) {
this.bezeichnung = value;
}
/**
* Gets the value of the waehrungsCd property.
*
* @return
* possible object is
* {@link WaehrungsCdType }
*
*/
public WaehrungsCdType getWaehrungsCd() {
return waehrungsCd;
}
/**
* Sets the value of the waehrungsCd property.
*
* @param value
* allowed object is
* {@link WaehrungsCdType }
*
*/
public void setWaehrungsCd(WaehrungsCdType value) {
this.waehrungsCd = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
}

View File

@@ -0,0 +1,98 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Bezugsberechtigung_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the bbArtCd property.
*
* @return
* possible object is
* {@link BBArtCdType }
*
*/
public BBArtCdType getBBArtCd() {
return bbArtCd;
}
/**
* Sets the value of the bbArtCd property.
*
* @param value
* allowed object is
* {@link BBArtCdType }
*
*/
public void setBBArtCd(BBArtCdType value) {
this.bbArtCd = value;
}
/**
* Gets the value of the bbTxt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBBTxt() {
return bbTxt;
}
/**
* Sets the value of the bbTxt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBBTxt(String value) {
this.bbTxt = value;
}
}

View File

@@ -0,0 +1,98 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Einstufung_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the estArtCd property.
*
* @return
* possible object is
* {@link EstArtCdType }
*
*/
public EstArtCdType getEstArtCd() {
return estArtCd;
}
/**
* Sets the value of the estArtCd property.
*
* @param value
* allowed object is
* {@link EstArtCdType }
*
*/
public void setEstArtCd(EstArtCdType value) {
this.estArtCd = value;
}
/**
* Gets the value of the estWert property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEstWert() {
return estWert;
}
/**
* Sets the value of the estWert property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEstWert(String value) {
this.estWert = value;
}
}

View File

@@ -0,0 +1,91 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Entscheidungsfrage_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the eFrageCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEFrageCd() {
return eFrageCd;
}
/**
* Sets the value of the eFrageCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEFrageCd(String value) {
this.eFrageCd = value;
}
/**
* Gets the value of the eFrageAntw property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEFrageAntw() {
return eFrageAntw;
}
/**
* Sets the value of the eFrageAntw property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEFrageAntw(String value) {
this.eFrageAntw = value;
}
}

View File

@@ -0,0 +1,152 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Flaeche_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the flaechenAttributCd property.
*
* @return
* possible object is
* {@link FlaechenAttributCdType }
*
*/
public FlaechenAttributCdType getFlaechenAttributCd() {
return flaechenAttributCd;
}
/**
* Sets the value of the flaechenAttributCd property.
*
* @param value
* allowed object is
* {@link FlaechenAttributCdType }
*
*/
public void setFlaechenAttributCd(FlaechenAttributCdType value) {
this.flaechenAttributCd = value;
}
/**
* Gets the value of the nummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNummer() {
return nummer;
}
/**
* Sets the value of the nummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNummer(String value) {
this.nummer = value;
}
/**
* Gets the value of the innenFlaeche property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getInnenFlaeche() {
return innenFlaeche;
}
/**
* Sets the value of the innenFlaeche property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setInnenFlaeche(BigDecimal value) {
this.innenFlaeche = value;
}
/**
* Gets the value of the verbauteFlaeche property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getVerbauteFlaeche() {
return verbauteFlaeche;
}
/**
* Sets the value of the verbauteFlaeche property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setVerbauteFlaeche(BigDecimal value) {
this.verbauteFlaeche = value;
}
}

View File

@@ -0,0 +1,93 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Gewinnbeteiligung_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the datum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatum() {
return datum;
}
/**
* Sets the value of the datum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatum(XMLGregorianCalendar value) {
this.datum = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
}

View File

@@ -0,0 +1,125 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Grenzwert_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the grwArtCd property.
*
* @return
* possible object is
* {@link GrwArtCdType }
*
*/
public GrwArtCdType getGrwArtCd() {
return grwArtCd;
}
/**
* Sets the value of the grwArtCd property.
*
* @param value
* allowed object is
* {@link GrwArtCdType }
*
*/
public void setGrwArtCd(GrwArtCdType value) {
this.grwArtCd = value;
}
/**
* Gets the value of the grWert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getGrWert() {
return grWert;
}
/**
* Sets the value of the grWert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setGrWert(BigDecimal value) {
this.grWert = value;
}
/**
* Gets the value of the grwTyp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGrwTyp() {
return grwTyp;
}
/**
* Sets the value of the grwTyp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGrwTyp(String value) {
this.grwTyp = value;
}
}

View File

@@ -0,0 +1,126 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Identifizierung_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the idfArtCd property.
*
* @return
* possible object is
* {@link IdfArtCdType }
*
*/
public IdfArtCdType getIdfArtCd() {
return idfArtCd;
}
/**
* Sets the value of the idfArtCd property.
*
* @param value
* allowed object is
* {@link IdfArtCdType }
*
*/
public void setIdfArtCd(IdfArtCdType value) {
this.idfArtCd = value;
}
/**
* Gets the value of the idfSchluessel property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdfSchluessel() {
return idfSchluessel;
}
/**
* Sets the value of the idfSchluessel property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdfSchluessel(String value) {
this.idfSchluessel = value;
}
/**
* Gets the value of the idfDatum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getIdfDatum() {
return idfDatum;
}
/**
* Sets the value of the idfDatum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setIdfDatum(XMLGregorianCalendar value) {
this.idfDatum = value;
}
}

View File

@@ -0,0 +1,122 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Index_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the indexArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIndexArtCd() {
return indexArtCd;
}
/**
* Sets the value of the indexArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIndexArtCd(String value) {
this.indexArtCd = value;
}
/**
* Gets the value of the datum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatum() {
return datum;
}
/**
* Sets the value of the datum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatum(XMLGregorianCalendar value) {
this.datum = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
}

View File

@@ -0,0 +1,91 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-KFZ-Kennzeichen_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the polKennz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolKennz() {
return polKennz;
}
/**
* Sets the value of the polKennz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolKennz(String value) {
this.polKennz = value;
}
/**
* Gets the value of the fahrgestnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFahrgestnr() {
return fahrgestnr;
}
/**
* Sets the value of the fahrgestnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFahrgestnr(String value) {
this.fahrgestnr = value;
}
}

View File

@@ -0,0 +1,71 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Klausel_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the klauselnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKlauselnr() {
return klauselnr;
}
/**
* Sets the value of the klauselnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKlauselnr(String value) {
this.klauselnr = value;
}
}

View File

@@ -0,0 +1,98 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Kommunikation_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the komArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKomArtCd() {
return komArtCd;
}
/**
* Sets the value of the komArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKomArtCd(String value) {
this.komArtCd = value;
}
/**
* Gets the value of the kennung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKennung() {
return kennung;
}
/**
* Sets the value of the kennung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKennung(String value) {
this.kennung = value;
}
}

View File

@@ -0,0 +1,191 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import javax.xml.datatype.XMLGregorianCalendar;
import at.vvo.omds.types.omds3Types.r1_8_0.common.LegitimationType;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Legitimation_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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="GueltigBis" 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 = "GueltigBis")
protected XMLGregorianCalendar gueltigBis;
@XmlAttribute(name = "Nummer", required = true)
protected String nummer;
/**
* Gets the value of the legArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLegArtCd() {
return legArtCd;
}
/**
* Sets the value of the legArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLegArtCd(String value) {
this.legArtCd = value;
}
/**
* Gets the value of the ausstellungsbehoerde property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAusstellungsbehoerde() {
return ausstellungsbehoerde;
}
/**
* Sets the value of the ausstellungsbehoerde property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAusstellungsbehoerde(String value) {
this.ausstellungsbehoerde = value;
}
/**
* Gets the value of the datum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatum() {
return datum;
}
/**
* Sets the value of the datum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatum(XMLGregorianCalendar value) {
this.datum = value;
}
/**
* Gets the value of the gueltigBis property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getGueltigBis() {
return gueltigBis;
}
/**
* Sets the value of the gueltigBis property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setGueltigBis(XMLGregorianCalendar value) {
this.gueltigBis = value;
}
/**
* Gets the value of the nummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNummer() {
return nummer;
}
/**
* Sets the value of the nummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNummer(String value) {
this.nummer = value;
}
}

View File

@@ -0,0 +1,58 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Objekt_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the objLfnr property.
*
*/
public int getObjLfnr() {
return objLfnr;
}
/**
* Sets the value of the objLfnr property.
*
*/
public void setObjLfnr(int value) {
this.objLfnr = value;
}
}

View File

@@ -0,0 +1,131 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Objektdaten_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the objektdatenCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getObjektdatenCd() {
return objektdatenCd;
}
/**
* Sets the value of the objektdatenCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setObjektdatenCd(String value) {
this.objektdatenCd = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWert(String value) {
this.wert = value;
}
/**
* Gets the value of the objektdatenInfo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getObjektdatenInfo() {
return objektdatenInfo;
}
/**
* Sets the value of the objektdatenInfo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setObjektdatenInfo(String value) {
this.objektdatenInfo = value;
}
}

View File

@@ -0,0 +1,91 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Polizzennummer_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the polArtCd property.
*
* @return
* possible object is
* {@link PolArtCdType }
*
*/
public PolArtCdType getPolArtCd() {
return polArtCd;
}
/**
* Sets the value of the polArtCd property.
*
* @param value
* allowed object is
* {@link PolArtCdType }
*
*/
public void setPolArtCd(PolArtCdType value) {
this.polArtCd = value;
}
/**
* Gets the value of the polNr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolNr() {
return polNr;
}
/**
* Sets the value of the polNr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolNr(String value) {
this.polNr = value;
}
}

View File

@@ -0,0 +1,119 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Praemienfreistellung_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the pfrArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPfrArtCd() {
return pfrArtCd;
}
/**
* Sets the value of the pfrArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPfrArtCd(String value) {
this.pfrArtCd = value;
}
/**
* Gets the value of the pfrBeg property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getPfrBeg() {
return pfrBeg;
}
/**
* Sets the value of the pfrBeg property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setPfrBeg(XMLGregorianCalendar value) {
this.pfrBeg = value;
}
/**
* Gets the value of the pfrEnde property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getPfrEnde() {
return pfrEnde;
}
/**
* Sets the value of the pfrEnde property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setPfrEnde(XMLGregorianCalendar value) {
this.pfrEnde = value;
}
}

View File

@@ -0,0 +1,152 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Praemienkorrektur_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the praemKorrArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPraemKorrArtCd() {
return praemKorrArtCd;
}
/**
* Sets the value of the praemKorrArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPraemKorrArtCd(String value) {
this.praemKorrArtCd = value;
}
/**
* Gets the value of the praemKorrWert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPraemKorrWert() {
return praemKorrWert;
}
/**
* Sets the value of the praemKorrWert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPraemKorrWert(BigDecimal value) {
this.praemKorrWert = value;
}
/**
* Gets the value of the praemKorrProz property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPraemKorrProz() {
return praemKorrProz;
}
/**
* Sets the value of the praemKorrProz property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPraemKorrProz(BigDecimal value) {
this.praemKorrProz = value;
}
/**
* Gets the value of the praemKorrText property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPraemKorrText() {
return praemKorrText;
}
/**
* Sets the value of the praemKorrText property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPraemKorrText(String value) {
this.praemKorrText = value;
}
}

View File

@@ -0,0 +1,71 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Rahmenvereinbarung_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the rahmenVebnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRahmenVebnr() {
return rahmenVebnr;
}
/**
* Sets the value of the rahmenVebnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRahmenVebnr(String value) {
this.rahmenVebnr = value;
}
}

View File

@@ -0,0 +1,98 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Rahmenvertrag_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="EL-Rahmenvertrag_Type">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="RahmenvertragsartCd" use="required" type="{urn:omds20}RahmenvertragsartCd_Type" />
* <attribute name="Rahmenvertragsnummer" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="20"/>
* <minLength value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EL-Rahmenvertrag_Type")
public class ELRahmenvertragType {
@XmlAttribute(name = "RahmenvertragsartCd", required = true)
protected String rahmenvertragsartCd;
@XmlAttribute(name = "Rahmenvertragsnummer", required = true)
protected String rahmenvertragsnummer;
/**
* Gets the value of the rahmenvertragsartCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRahmenvertragsartCd() {
return rahmenvertragsartCd;
}
/**
* Sets the value of the rahmenvertragsartCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRahmenvertragsartCd(String value) {
this.rahmenvertragsartCd = value;
}
/**
* Gets the value of the rahmenvertragsnummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRahmenvertragsnummer() {
return rahmenvertragsnummer;
}
/**
* Sets the value of the rahmenvertragsnummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRahmenvertragsnummer(String value) {
this.rahmenvertragsnummer = value;
}
}

View File

@@ -0,0 +1,120 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Rente_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the rntRhythmCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRntRhythmCd() {
return rntRhythmCd;
}
/**
* Sets the value of the rntRhythmCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRntRhythmCd(String value) {
this.rntRhythmCd = value;
}
/**
* Gets the value of the rntBeg property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getRntBeg() {
return rntBeg;
}
/**
* Sets the value of the rntBeg property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setRntBeg(XMLGregorianCalendar value) {
this.rntBeg = value;
}
/**
* Gets the value of the rntBetrag property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getRntBetrag() {
return rntBetrag;
}
/**
* Sets the value of the rntBetrag property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setRntBetrag(BigDecimal value) {
this.rntBetrag = value;
}
}

View File

@@ -0,0 +1,40 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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
{
}

View File

@@ -0,0 +1,156 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Selbstbehalt_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the sbhArtCd property.
*
* @return
* possible object is
* {@link SbhArtCdType }
*
*/
public SbhArtCdType getSbhArtCd() {
return sbhArtCd;
}
/**
* Sets the value of the sbhArtCd property.
*
* @param value
* allowed object is
* {@link SbhArtCdType }
*
*/
public void setSbhArtCd(SbhArtCdType value) {
this.sbhArtCd = value;
}
/**
* Gets the value of the sbhBetrag property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getSbhBetrag() {
return sbhBetrag;
}
/**
* Sets the value of the sbhBetrag property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setSbhBetrag(BigDecimal value) {
this.sbhBetrag = value;
}
/**
* Gets the value of the sbhProzent property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getSbhProzent() {
return sbhProzent;
}
/**
* Sets the value of the sbhProzent property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setSbhProzent(BigDecimal value) {
this.sbhProzent = value;
}
/**
* Gets the value of the sbhText property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSbhText() {
return sbhText;
}
/**
* Sets the value of the sbhText property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSbhText(String value) {
this.sbhText = value;
}
}

View File

@@ -0,0 +1,92 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Steuer_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the stArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStArtCd() {
return stArtCd;
}
/**
* Sets the value of the stArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStArtCd(String value) {
this.stArtCd = value;
}
/**
* Gets the value of the stBetrag property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getStBetrag() {
return stBetrag;
}
/**
* Sets the value of the stBetrag property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setStBetrag(BigDecimal value) {
this.stBetrag = value;
}
}

View File

@@ -0,0 +1,97 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Text_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the txtArtCd property.
*
* @return
* possible object is
* {@link TxtArtCdType }
*
*/
public TxtArtCdType getTxtArtCd() {
return txtArtCd;
}
/**
* Sets the value of the txtArtCd property.
*
* @param value
* allowed object is
* {@link TxtArtCdType }
*
*/
public void setTxtArtCd(TxtArtCdType value) {
this.txtArtCd = value;
}
/**
* Gets the value of the txtInhalt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTxtInhalt() {
return txtInhalt;
}
/**
* Sets the value of the txtInhalt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTxtInhalt(String value) {
this.txtInhalt = value;
}
}

View File

@@ -0,0 +1,125 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Versicherungssumme_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the vsArtCd property.
*
* @return
* possible object is
* {@link VSArtCdType }
*
*/
public VSArtCdType getVSArtCd() {
return vsArtCd;
}
/**
* Sets the value of the vsArtCd property.
*
* @param value
* allowed object is
* {@link VSArtCdType }
*
*/
public void setVSArtCd(VSArtCdType value) {
this.vsArtCd = value;
}
/**
* Gets the value of the vsBetrag property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getVSBetrag() {
return vsBetrag;
}
/**
* Sets the value of the vsBetrag property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setVSBetrag(BigDecimal value) {
this.vsBetrag = value;
}
/**
* Gets the value of the vsBez property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVSBez() {
return vsBez;
}
/**
* Sets the value of the vsBez property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVSBez(String value) {
this.vsBez = value;
}
}

View File

@@ -0,0 +1,119 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Zeitraum_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the zrArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZRArtCd() {
return zrArtCd;
}
/**
* Sets the value of the zrArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZRArtCd(String value) {
this.zrArtCd = value;
}
/**
* Gets the value of the zrBeg property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getZRBeg() {
return zrBeg;
}
/**
* Sets the value of the zrBeg property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setZRBeg(XMLGregorianCalendar value) {
this.zrBeg = value;
}
/**
* Gets the value of the zrEnd property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getZREnd() {
return zrEnd;
}
/**
* Sets the value of the zrEnd property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setZREnd(XMLGregorianCalendar value) {
this.zrEnd = value;
}
}

View File

@@ -0,0 +1,45 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for Entsch2_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,60 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EstArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,282 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for FONDS_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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" type="{urn:omds20}FondsBez_Type" />
* <attribute name="Kurs" type="{urn:omds20}FondsBetrag_Type" />
* <attribute name="AnteilWertpapier" use="required" 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" use="required" 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")
protected String bezeichnung;
@XmlAttribute(name = "Kurs")
protected BigDecimal kurs;
@XmlAttribute(name = "AnteilWertpapier", required = true)
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", required = true)
protected XMLGregorianCalendar stichtag;
/**
* Gets the value of the isin property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getISIN() {
return isin;
}
/**
* Sets the value of the isin property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setISIN(String value) {
this.isin = value;
}
/**
* Gets the value of the wkn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWKN() {
return wkn;
}
/**
* Sets the value of the wkn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWKN(String value) {
this.wkn = value;
}
/**
* Gets the value of the bezeichnung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBezeichnung() {
return bezeichnung;
}
/**
* Sets the value of the bezeichnung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBezeichnung(String value) {
this.bezeichnung = value;
}
/**
* Gets the value of the kurs property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getKurs() {
return kurs;
}
/**
* Sets the value of the kurs property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setKurs(BigDecimal value) {
this.kurs = value;
}
/**
* Gets the value of the anteilWertpapier property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAnteilWertpapier() {
return anteilWertpapier;
}
/**
* Sets the value of the anteilWertpapier property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAnteilWertpapier(BigDecimal value) {
this.anteilWertpapier = value;
}
/**
* Gets the value of the prozentsatz property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getProzentsatz() {
return prozentsatz;
}
/**
* Sets the value of the prozentsatz property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setProzentsatz(BigDecimal value) {
this.prozentsatz = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
/**
* Gets the value of the waehrungsCd property.
*
* @return
* possible object is
* {@link WaehrungsCdType }
*
*/
public WaehrungsCdType getWaehrungsCd() {
return waehrungsCd;
}
/**
* Sets the value of the waehrungsCd property.
*
* @param value
* allowed object is
* {@link WaehrungsCdType }
*
*/
public void setWaehrungsCd(WaehrungsCdType value) {
this.waehrungsCd = value;
}
/**
* Gets the value of the stichtag property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStichtag() {
return stichtag;
}
/**
* Sets the value of the stichtag property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStichtag(XMLGregorianCalendar value) {
this.stichtag = value;
}
}

View File

@@ -0,0 +1,88 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for FlaechenAttributCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,271 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for GESCHAEDIGTES_OBJEKT_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the geschObjektLfnr property.
*
*/
public int getGeschObjektLfnr() {
return geschObjektLfnr;
}
/**
* Sets the value of the geschObjektLfnr property.
*
*/
public void setGeschObjektLfnr(int value) {
this.geschObjektLfnr = value;
}
/**
* Gets the value of the schadenBeschreibung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchadenBeschreibung() {
return schadenBeschreibung;
}
/**
* Sets the value of the schadenBeschreibung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchadenBeschreibung(String value) {
this.schadenBeschreibung = value;
}
/**
* Gets the value of the vuNrGesch property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVUNrGesch() {
return vuNrGesch;
}
/**
* Sets the value of the vuNrGesch property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVUNrGesch(String value) {
this.vuNrGesch = value;
}
/**
* Gets the value of the vuNameGesch property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVUNameGesch() {
return vuNameGesch;
}
/**
* Sets the value of the vuNameGesch property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVUNameGesch(String value) {
this.vuNameGesch = value;
}
/**
* Gets the value of the polNrGesch property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolNrGesch() {
return polNrGesch;
}
/**
* Sets the value of the polNrGesch property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolNrGesch(String value) {
this.polNrGesch = value;
}
/**
* Gets the value of the schadennrGesch property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchadennrGesch() {
return schadennrGesch;
}
/**
* Sets the value of the schadennrGesch property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchadennrGesch(String value) {
this.schadennrGesch = value;
}
/**
* Gets the value of the landesCdGeschKfz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLandesCdGeschKfz() {
return landesCdGeschKfz;
}
/**
* Sets the value of the landesCdGeschKfz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLandesCdGeschKfz(String value) {
this.landesCdGeschKfz = value;
}
/**
* Gets the value of the kennzGeschKfz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKennzGeschKfz() {
return kennzGeschKfz;
}
/**
* Sets the value of the kennzGeschKfz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKennzGeschKfz(String value) {
this.kennzGeschKfz = value;
}
}

View File

@@ -0,0 +1,151 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for GesFormCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <simpleType name="GesFormCd_Type">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="GBH"/>
* <enumeration value="AG"/>
* <enumeration value="OG"/>
* <enumeration value="KG"/>
* <enumeration value="GBR"/>
* <enumeration value="SG"/>
* <enumeration value="GEN"/>
* <enumeration value="EUR"/>
* <enumeration value="EU"/>
* <enumeration value="GKG"/>
* <enumeration value="PS"/>
* <enumeration value="SP"/>
* <enumeration value="VE"/>
* <enumeration value="WEG"/>
* <enumeration value="EWI"/>
* <enumeration value="ARG"/>
* </restriction>
* </simpleType>
* }</pre>
*
*/
@XmlType(name = "GesFormCd_Type")
@XmlEnum
public enum GesFormCdType {
/**
* Gesellschaft mit beschränkter Haftung
*
*/
GBH,
/**
* Aktiengesellschaft
*
*/
AG,
/**
* Offene Gesellschaft
*
*/
OG,
/**
* Kommanditgesellschaft
*
*/
KG,
/**
* Gesellschaft bürgerlichen Rechts
*
*/
GBR,
/**
* Stille Gesellschaft
*
*/
SG,
/**
* Erwerbs- und Wirtschaftsgenossenschaft
*
*/
GEN,
/**
* Ausländ./EU Rechtsform
*
*/
EUR,
/**
* Einzelunternehmen
*
*/
EU,
/**
* GmbH und Co KG
*
*/
GKG,
/**
* Privatstiftung
*
*/
PS,
/**
* Sparkasse
*
*/
SP,
/**
* Verein
*
*/
VE,
/**
* Wohnungseigentümergemeinschaft
*
*/
WEG,
/**
* Europäische Wirtschaftliche Interessenvereinigung
*
*/
EWI,
/**
* Arbeitsgemeinschaft
*
*/
ARG;
public String value() {
return name();
}
public static GesFormCdType fromValue(String v) {
return valueOf(v);
}
}

View File

@@ -0,0 +1,60 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for GrwArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,60 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for IdfArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,193 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for KLAUSEL_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the klauselnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKlauselnr() {
return klauselnr;
}
/**
* Sets the value of the klauselnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKlauselnr(String value) {
this.klauselnr = value;
}
/**
* Gets the value of the klauselbez property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKlauselbez() {
return klauselbez;
}
/**
* Sets the value of the klauselbez property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKlauselbez(String value) {
this.klauselbez = value;
}
/**
* Gets the value of the klauseltxt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKlauseltxt() {
return klauseltxt;
}
/**
* Sets the value of the klauseltxt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKlauseltxt(String value) {
this.klauseltxt = value;
}
/**
* Gets the value of the gueltigVon property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getGueltigVon() {
return gueltigVon;
}
/**
* Sets the value of the gueltigVon property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setGueltigVon(XMLGregorianCalendar value) {
this.gueltigVon = value;
}
/**
* Gets the value of the gueltigBis property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getGueltigBis() {
return gueltigBis;
}
/**
* Sets the value of the gueltigBis property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setGueltigBis(XMLGregorianCalendar value) {
this.gueltigBis = value;
}
}

View File

@@ -0,0 +1,333 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for LOESCHANSTOSS_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the loeschID property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLoeschID() {
return loeschID;
}
/**
* Sets the value of the loeschID property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLoeschID(XMLGregorianCalendar value) {
this.loeschID = value;
}
/**
* Gets the value of the systemQuelle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSystemQuelle() {
if (systemQuelle == null) {
return " ";
} else {
return systemQuelle;
}
}
/**
* Sets the value of the systemQuelle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSystemQuelle(String value) {
this.systemQuelle = value;
}
/**
* Gets the value of the gueltigAb property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getGueltigAb() {
return gueltigAb;
}
/**
* Sets the value of the gueltigAb property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setGueltigAb(XMLGregorianCalendar value) {
this.gueltigAb = value;
}
/**
* Gets the value of the polizzennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolizzennr() {
return polizzennr;
}
/**
* Sets the value of the polizzennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolizzennr(String value) {
this.polizzennr = value;
}
/**
* Gets the value of the vertragsID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVertragsID() {
return vertragsID;
}
/**
* Sets the value of the vertragsID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVertragsID(String value) {
this.vertragsID = value;
}
/**
* Gets the value of the personennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonennr() {
return personennr;
}
/**
* Sets the value of the personennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonennr(String value) {
this.personennr = value;
}
/**
* Gets the value of the schadennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchadennr() {
return schadennr;
}
/**
* Sets the value of the schadennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchadennr(String value) {
this.schadennr = value;
}
/**
* Gets the value of the provisionsID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProvisionsID() {
return provisionsID;
}
/**
* Sets the value of the provisionsID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProvisionsID(String value) {
this.provisionsID = value;
}
/**
* Gets the value of the mahnverfahrenNr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMahnverfahrenNr() {
return mahnverfahrenNr;
}
/**
* Sets the value of the mahnverfahrenNr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMahnverfahrenNr(String value) {
this.mahnverfahrenNr = value;
}
/**
* Gets the value of the loeschCd property.
*
* @return
* possible object is
* {@link LoeschCdType }
*
*/
public LoeschCdType getLoeschCd() {
return loeschCd;
}
/**
* Sets the value of the loeschCd property.
*
* @param value
* allowed object is
* {@link LoeschCdType }
*
*/
public void setLoeschCd(LoeschCdType value) {
this.loeschCd = value;
}
}

View File

@@ -0,0 +1,60 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for LoeschCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,715 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for MAHNUNG_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the elText property.
*/
public List<ELTextType> getELText() {
if (elText == null) {
elText = new ArrayList<>();
}
return this.elText;
}
/**
* Gets the value of the mahnverfahrenNr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMahnverfahrenNr() {
return mahnverfahrenNr;
}
/**
* Sets the value of the mahnverfahrenNr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMahnverfahrenNr(String value) {
this.mahnverfahrenNr = value;
}
/**
* Gets the value of the mahnungNr property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getMahnungNr() {
return mahnungNr;
}
/**
* Sets the value of the mahnungNr property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setMahnungNr(BigInteger value) {
this.mahnungNr = value;
}
/**
* Gets the value of the polizzennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolizzennr() {
return polizzennr;
}
/**
* Sets the value of the polizzennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolizzennr(String value) {
this.polizzennr = value;
}
/**
* Gets the value of the vertragsID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVertragsID() {
return vertragsID;
}
/**
* Sets the value of the vertragsID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVertragsID(String value) {
this.vertragsID = value;
}
/**
* Gets the value of the vermnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVermnr() {
return vermnr;
}
/**
* Sets the value of the vermnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVermnr(String value) {
this.vermnr = value;
}
/**
* Gets the value of the mahnBetrag property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMahnBetrag() {
return mahnBetrag;
}
/**
* Sets the value of the mahnBetrag property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMahnBetrag(BigDecimal value) {
this.mahnBetrag = value;
}
/**
* Gets the value of the mahnSpesen property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getMahnSpesen() {
return mahnSpesen;
}
/**
* Sets the value of the mahnSpesen property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setMahnSpesen(BigDecimal value) {
this.mahnSpesen = value;
}
/**
* Gets the value of the mahnStufeCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMahnStufeCd() {
return mahnStufeCd;
}
/**
* Sets the value of the mahnStufeCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMahnStufeCd(String value) {
this.mahnStufeCd = value;
}
/**
* Gets the value of the mahnStufeTextVU property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMahnStufeTextVU() {
return mahnStufeTextVU;
}
/**
* Sets the value of the mahnStufeTextVU property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMahnStufeTextVU(String value) {
this.mahnStufeTextVU = value;
}
/**
* Gets the value of the mahnStelleVU property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMahnStelleVU() {
return mahnStelleVU;
}
/**
* Sets the value of the mahnStelleVU property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMahnStelleVU(String value) {
this.mahnStelleVU = value;
}
/**
* Gets the value of the mahnStelleBeauftragt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMahnStelleBeauftragt() {
return mahnStelleBeauftragt;
}
/**
* Sets the value of the mahnStelleBeauftragt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMahnStelleBeauftragt(String value) {
this.mahnStelleBeauftragt = value;
}
/**
* Gets the value of the mahnStufeGueltigAb property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMahnStufeGueltigAb() {
return mahnStufeGueltigAb;
}
/**
* Sets the value of the mahnStufeGueltigAb property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMahnStufeGueltigAb(XMLGregorianCalendar value) {
this.mahnStufeGueltigAb = value;
}
/**
* Gets the value of the mahnStufeGueltigBis property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMahnStufeGueltigBis() {
return mahnStufeGueltigBis;
}
/**
* Sets the value of the mahnStufeGueltigBis property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMahnStufeGueltigBis(XMLGregorianCalendar value) {
this.mahnStufeGueltigBis = value;
}
/**
* Gets the value of the mahnStufeCdNext property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMahnStufeCdNext() {
return mahnStufeCdNext;
}
/**
* Sets the value of the mahnStufeCdNext property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMahnStufeCdNext(String value) {
this.mahnStufeCdNext = value;
}
/**
* Gets the value of the mahnStufeTextVUNext property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMahnStufeTextVUNext() {
return mahnStufeTextVUNext;
}
/**
* Sets the value of the mahnStufeTextVUNext property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMahnStufeTextVUNext(String value) {
this.mahnStufeTextVUNext = value;
}
/**
* Gets the value of the mahnStufeGueltigAbNext property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMahnStufeGueltigAbNext() {
return mahnStufeGueltigAbNext;
}
/**
* Sets the value of the mahnStufeGueltigAbNext property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMahnStufeGueltigAbNext(XMLGregorianCalendar value) {
this.mahnStufeGueltigAbNext = value;
}
/**
* Gets the value of the mahnLetzteZahlung property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMahnLetzteZahlung() {
return mahnLetzteZahlung;
}
/**
* Sets the value of the mahnLetzteZahlung property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMahnLetzteZahlung(XMLGregorianCalendar value) {
this.mahnLetzteZahlung = value;
}
/**
* Gets the value of the mahnAeltesteFaelligkeit property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMahnAeltesteFaelligkeit() {
return mahnAeltesteFaelligkeit;
}
/**
* Sets the value of the mahnAeltesteFaelligkeit property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMahnAeltesteFaelligkeit(XMLGregorianCalendar value) {
this.mahnAeltesteFaelligkeit = value;
}
/**
* Gets the value of the mahnAnzahlFaelligkeiten property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMahnAnzahlFaelligkeiten() {
return mahnAnzahlFaelligkeiten;
}
/**
* Sets the value of the mahnAnzahlFaelligkeiten property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMahnAnzahlFaelligkeiten(Integer value) {
this.mahnAnzahlFaelligkeiten = value;
}
/**
* Gets the value of the grundRuecklaufCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGrundRuecklaufCd() {
return grundRuecklaufCd;
}
/**
* Sets the value of the grundRuecklaufCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGrundRuecklaufCd(String value) {
this.grundRuecklaufCd = value;
}
/**
* Gets the value of the mahnDeckungBis property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMahnDeckungBis() {
return mahnDeckungBis;
}
/**
* Sets the value of the mahnDeckungBis property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMahnDeckungBis(XMLGregorianCalendar value) {
this.mahnDeckungBis = value;
}
/**
* Gets the value of the vtgSparteCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVtgSparteCd() {
return vtgSparteCd;
}
/**
* Sets the value of the vtgSparteCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVtgSparteCd(String value) {
this.vtgSparteCd = value;
}
}

View File

@@ -0,0 +1,321 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for NATUERLICHE_PERSON_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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" type="{urn:omds20}GeschlechtCd_Type" />
* <attribute name="Gebdat" type="{urn:omds20}Datum" />
* <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
* <attribute name="FamilienstandCd" type="{urn:omds20}FamilienstandCd_Type" />
* <attribute name="GebLandCd" type="{urn:omds20}LandesCd_Type" />
* <attribute name="HauptWohnLandCd" type="{urn:omds20}LandesCd_Type" />
* <attribute name="PersonID_VU" type="{urn:omds20}PersonID_Type" />
* <attribute name="PersonID_Makler" type="{urn:omds20}PersonID_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")
protected String geschlechtCd;
@XmlAttribute(name = "Gebdat")
protected XMLGregorianCalendar gebdat;
@XmlAttribute(name = "LandesCd")
protected String landesCd;
@XmlAttribute(name = "FamilienstandCd")
protected String familienstandCd;
@XmlAttribute(name = "GebLandCd")
protected String gebLandCd;
@XmlAttribute(name = "HauptWohnLandCd")
protected String hauptWohnLandCd;
@XmlAttribute(name = "PersonID_VU")
protected String personIDVU;
@XmlAttribute(name = "PersonID_Makler")
protected String personIDMakler;
/**
* Gets the value of the familienname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFamilienname() {
return familienname;
}
/**
* Sets the value of the familienname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFamilienname(String value) {
this.familienname = value;
}
/**
* Gets the value of the vorname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVorname() {
return vorname;
}
/**
* Sets the value of the vorname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVorname(String value) {
this.vorname = value;
}
/**
* Gets the value of the geschlechtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGeschlechtCd() {
return geschlechtCd;
}
/**
* Sets the value of the geschlechtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGeschlechtCd(String value) {
this.geschlechtCd = value;
}
/**
* Gets the value of the gebdat property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getGebdat() {
return gebdat;
}
/**
* Sets the value of the gebdat property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setGebdat(XMLGregorianCalendar value) {
this.gebdat = value;
}
/**
* Gets the value of the landesCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLandesCd() {
return landesCd;
}
/**
* Sets the value of the landesCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLandesCd(String value) {
this.landesCd = value;
}
/**
* Gets the value of the familienstandCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFamilienstandCd() {
return familienstandCd;
}
/**
* Sets the value of the familienstandCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFamilienstandCd(String value) {
this.familienstandCd = value;
}
/**
* Gets the value of the gebLandCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGebLandCd() {
return gebLandCd;
}
/**
* Sets the value of the gebLandCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGebLandCd(String value) {
this.gebLandCd = value;
}
/**
* Gets the value of the hauptWohnLandCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHauptWohnLandCd() {
return hauptWohnLandCd;
}
/**
* Sets the value of the hauptWohnLandCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHauptWohnLandCd(String value) {
this.hauptWohnLandCd = value;
}
/**
* Gets the value of the personIDVU property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonIDVU() {
return personIDVU;
}
/**
* Sets the value of the personIDVU property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonIDVU(String value) {
this.personIDVU = value;
}
/**
* Gets the value of the personIDMakler property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonIDMakler() {
return personIDMakler;
}
/**
* Sets the value of the personIDMakler property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonIDMakler(String value) {
this.personIDMakler = value;
}
}

View File

@@ -0,0 +1,79 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:omds20}PAKET" maxOccurs="unbounded"/>
* </sequence>
* </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;
/**
* 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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the paket property.
*/
public List<PAKET> getPAKET() {
if (paket == null) {
paket = new ArrayList<>();
}
return this.paket;
}
}

View File

@@ -0,0 +1,710 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.util.ArrayList;
import java.util.List;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="6"/>
* </restriction>
* </simpleType>
* </attribute>
* <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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the versunternehmen property.
*/
public List<VERSUNTERNEHMEN> getVERSUNTERNEHMEN() {
if (versunternehmen == null) {
versunternehmen = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the schluesselart property.
*/
public List<SCHLUESSELART> getSCHLUESSELART() {
if (schluesselart == null) {
schluesselart = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the klausel property.
*/
public List<KLAUSELType> getKLAUSEL() {
if (klausel == null) {
klausel = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the loeschanstoss property.
*/
public List<LOESCHANSTOSSType> getLOESCHANSTOSS() {
if (loeschanstoss == null) {
loeschanstoss = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the person property.
*/
public List<PERSONType> getPERSON() {
if (person == null) {
person = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the vertrag property.
*/
public List<VERTRAG> getVERTRAG() {
if (vertrag == null) {
vertrag = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the schaden property.
*/
public List<SCHADENType> getSCHADEN() {
if (schaden == null) {
schaden = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the provision property.
*/
public List<PROVISIONType> getPROVISION() {
if (provision == null) {
provision = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the mahnung property.
*/
public List<MAHNUNGType> getMAHNUNG() {
if (mahnung == null) {
mahnung = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the vertragsfonds property.
*/
public List<VERTRAGSFONDSType> getVERTRAGSFONDS() {
if (vertragsfonds == null) {
vertragsfonds = new ArrayList<>();
}
return this.vertragsfonds;
}
/**
* Gets the value of the vuNr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVUNr() {
return vuNr;
}
/**
* Sets the value of the vuNr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVUNr(String value) {
this.vuNr = value;
}
/**
* Gets the value of the maklerID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMaklerID() {
return maklerID;
}
/**
* Sets the value of the maklerID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMaklerID(String value) {
this.maklerID = value;
}
/**
* Gets the value of the paketZpktErstell property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getPaketZpktErstell() {
return paketZpktErstell;
}
/**
* Sets the value of the paketZpktErstell property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setPaketZpktErstell(XMLGregorianCalendar value) {
this.paketZpktErstell = value;
}
/**
* Gets the value of the paketZpktLetztErstell property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getPaketZpktLetztErstell() {
return paketZpktLetztErstell;
}
/**
* Sets the value of the paketZpktLetztErstell property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setPaketZpktLetztErstell(XMLGregorianCalendar value) {
this.paketZpktLetztErstell = value;
}
/**
* Gets the value of the paketInhCd property.
*
* @return
* possible object is
* {@link PaketInhCdType }
*
*/
public PaketInhCdType getPaketInhCd() {
return paketInhCd;
}
/**
* Sets the value of the paketInhCd property.
*
* @param value
* allowed object is
* {@link PaketInhCdType }
*
*/
public void setPaketInhCd(PaketInhCdType value) {
this.paketInhCd = value;
}
/**
* Gets the value of the paketUmfCd property.
*
* @return
* possible object is
* {@link PaketUmfCdType }
*
*/
public PaketUmfCdType getPaketUmfCd() {
return paketUmfCd;
}
/**
* Sets the value of the paketUmfCd property.
*
* @param value
* allowed object is
* {@link PaketUmfCdType }
*
*/
public void setPaketUmfCd(PaketUmfCdType value) {
this.paketUmfCd = value;
}
/**
* Gets the value of the omdsVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOMDSVersion() {
return omdsVersion;
}
/**
* Sets the value of the omdsVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOMDSVersion(String value) {
this.omdsVersion = value;
}
/**
* Gets the value of the vuVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVUVersion() {
return vuVersion;
}
/**
* Sets the value of the vuVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVUVersion(String value) {
this.vuVersion = value;
}
/**
* Gets the value of the dvrNrAbs property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDVRNrAbs() {
return dvrNrAbs;
}
/**
* Sets the value of the dvrNrAbs property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDVRNrAbs(String value) {
this.dvrNrAbs = value;
}
/**
* Gets the value of the paketKommentar property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPaketKommentar() {
return paketKommentar;
}
/**
* Sets the value of the paketKommentar property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPaketKommentar(String value) {
this.paketKommentar = value;
}
/**
* Gets the value of the sprachCd property.
*
* @return
* possible object is
* {@link SprachCdType }
*
*/
public SprachCdType getSprachCd() {
return sprachCd;
}
/**
* Sets the value of the sprachCd property.
*
* @param value
* allowed object is
* {@link SprachCdType }
*
*/
public void setSprachCd(SprachCdType value) {
this.sprachCd = value;
}
}

View File

@@ -0,0 +1,456 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for PERSON_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
@XmlAttribute(name = "AdressID_VU")
protected String adressIDVU;
@XmlAttribute(name = "AdressID_Makler")
protected String adressIDMakler;
/**
* Gets the value of the natuerlicheperson property.
*
* @return
* possible object is
* {@link NATUERLICHEPERSONType }
*
*/
public NATUERLICHEPERSONType getNATUERLICHEPERSON() {
return natuerlicheperson;
}
/**
* Sets the value of the natuerlicheperson property.
*
* @param value
* allowed object is
* {@link NATUERLICHEPERSONType }
*
*/
public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) {
this.natuerlicheperson = value;
}
/**
* Gets the value of the sonstigeperson property.
*
* @return
* possible object is
* {@link SONSTIGEPERSONType }
*
*/
public SONSTIGEPERSONType getSONSTIGEPERSON() {
return sonstigeperson;
}
/**
* Sets the value of the sonstigeperson property.
*
* @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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the elAnzahlOrELEinstufungOrELEntscheidungsfrage property.
*/
public List<Object> getELAnzahlOrELEinstufungOrELEntscheidungsfrage() {
if (elAnzahlOrELEinstufungOrELEntscheidungsfrage == null) {
elAnzahlOrELEinstufungOrELEntscheidungsfrage = new ArrayList<>();
}
return this.elAnzahlOrELEinstufungOrELEntscheidungsfrage;
}
/**
* Gets the value of the personennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonennr() {
return personennr;
}
/**
* Sets the value of the personennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonennr(String value) {
this.personennr = value;
}
/**
* Gets the value of the persArtCd property.
*
* @return
* possible object is
* {@link PersArtCdType }
*
*/
public PersArtCdType getPersArtCd() {
return persArtCd;
}
/**
* Sets the value of the persArtCd property.
*
* @param value
* allowed object is
* {@link PersArtCdType }
*
*/
public void setPersArtCd(PersArtCdType value) {
this.persArtCd = value;
}
/**
* Gets the value of the pac property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getPac() {
return pac;
}
/**
* Sets the value of the pac property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setPac(Long value) {
this.pac = value;
}
/**
* Gets the value of the landesCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLandesCd() {
return landesCd;
}
/**
* Sets the value of the landesCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLandesCd(String value) {
this.landesCd = value;
}
/**
* Gets the value of the plz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPLZ() {
return plz;
}
/**
* Sets the value of the plz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPLZ(String value) {
this.plz = value;
}
/**
* Gets the value of the ort property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrt() {
return ort;
}
/**
* Sets the value of the ort property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrt(String value) {
this.ort = value;
}
/**
* Gets the value of the strasse property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStrasse() {
return strasse;
}
/**
* Sets the value of the strasse property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStrasse(String value) {
this.strasse = value;
}
/**
* Gets the value of the hausnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHausnr() {
return hausnr;
}
/**
* Sets the value of the hausnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHausnr(String value) {
this.hausnr = value;
}
/**
* Gets the value of the zusatz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZusatz() {
return zusatz;
}
/**
* Sets the value of the zusatz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZusatz(String value) {
this.zusatz = value;
}
/**
* Gets the value of the adressIDVU property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDVU() {
return adressIDVU;
}
/**
* Sets the value of the adressIDVU property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDVU(String value) {
this.adressIDVU = value;
}
/**
* Gets the value of the adressIDMakler property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDMakler() {
return adressIDMakler;
}
/**
* Sets the value of the adressIDMakler property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDMakler(String value) {
this.adressIDMakler = value;
}
}

View File

@@ -0,0 +1,81 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the fonds property.
*/
public List<FONDSType> getFONDS() {
if (fonds == null) {
fonds = new ArrayList<>();
}
return this.fonds;
}
}

View File

@@ -0,0 +1,313 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for PORTFOLIO_TYPE complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the portfolioID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPortfolioID() {
return portfolioID;
}
/**
* Sets the value of the portfolioID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPortfolioID(String value) {
this.portfolioID = value;
}
/**
* Gets the value of the isin property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getISIN() {
return isin;
}
/**
* Sets the value of the isin property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setISIN(String value) {
this.isin = value;
}
/**
* Gets the value of the wkn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWKN() {
return wkn;
}
/**
* Sets the value of the wkn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWKN(String value) {
this.wkn = value;
}
/**
* Gets the value of the bezeichnung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBezeichnung() {
return bezeichnung;
}
/**
* Sets the value of the bezeichnung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBezeichnung(String value) {
this.bezeichnung = value;
}
/**
* Gets the value of the kurs property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getKurs() {
return kurs;
}
/**
* Sets the value of the kurs property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setKurs(BigDecimal value) {
this.kurs = value;
}
/**
* Gets the value of the anteilWertpapier property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAnteilWertpapier() {
return anteilWertpapier;
}
/**
* Sets the value of the anteilWertpapier property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAnteilWertpapier(BigDecimal value) {
this.anteilWertpapier = value;
}
/**
* Gets the value of the prozentsatz property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getProzentsatz() {
return prozentsatz;
}
/**
* Sets the value of the prozentsatz property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setProzentsatz(BigDecimal value) {
this.prozentsatz = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
/**
* Gets the value of the waehrungsCd property.
*
* @return
* possible object is
* {@link WaehrungsCdType }
*
*/
public WaehrungsCdType getWaehrungsCd() {
return waehrungsCd;
}
/**
* Sets the value of the waehrungsCd property.
*
* @param value
* allowed object is
* {@link WaehrungsCdType }
*
*/
public void setWaehrungsCd(WaehrungsCdType value) {
this.waehrungsCd = value;
}
/**
* Gets the value of the stichtag property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStichtag() {
return stichtag;
}
/**
* Sets the value of the stichtag property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStichtag(XMLGregorianCalendar value) {
this.stichtag = value;
}
}

View File

@@ -0,0 +1,550 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for PROVISION_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the provisionsID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProvisionsID() {
return provisionsID;
}
/**
* Sets the value of the provisionsID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProvisionsID(String value) {
this.provisionsID = value;
}
/**
* Gets the value of the vermnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVermnr() {
return vermnr;
}
/**
* Sets the value of the vermnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVermnr(String value) {
this.vermnr = value;
}
/**
* Gets the value of the polizzennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolizzennr() {
return polizzennr;
}
/**
* Sets the value of the polizzennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolizzennr(String value) {
this.polizzennr = value;
}
/**
* Gets the value of the vertragsID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVertragsID() {
return vertragsID;
}
/**
* Sets the value of the vertragsID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVertragsID(String value) {
this.vertragsID = value;
}
/**
* Gets the value of the verbandSparteCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerbandSparteCd() {
return verbandSparteCd;
}
/**
* Sets the value of the verbandSparteCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerbandSparteCd(String value) {
this.verbandSparteCd = value;
}
/**
* Gets the value of the spartenCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpartenCd() {
return spartenCd;
}
/**
* Sets the value of the spartenCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpartenCd(String value) {
this.spartenCd = value;
}
/**
* Gets the value of the spartenErweiterung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpartenErweiterung() {
return spartenErweiterung;
}
/**
* Sets the value of the spartenErweiterung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpartenErweiterung(String value) {
this.spartenErweiterung = value;
}
/**
* Gets the value of the buchDat property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getBuchDat() {
return buchDat;
}
/**
* Sets the value of the buchDat property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setBuchDat(XMLGregorianCalendar value) {
this.buchDat = value;
}
/**
* Gets the value of the provVon property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getProvVon() {
return provVon;
}
/**
* Sets the value of the provVon property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setProvVon(XMLGregorianCalendar value) {
this.provVon = value;
}
/**
* Gets the value of the provBis property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getProvBis() {
return provBis;
}
/**
* Sets the value of the provBis property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setProvBis(XMLGregorianCalendar value) {
this.provBis = value;
}
/**
* Gets the value of the provArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProvArtCd() {
return provArtCd;
}
/**
* Sets the value of the provArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProvArtCd(String value) {
this.provArtCd = value;
}
/**
* Gets the value of the provTxt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProvTxt() {
return provTxt;
}
/**
* Sets the value of the provTxt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProvTxt(String value) {
this.provTxt = value;
}
/**
* Gets the value of the provGrdlg property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getProvGrdlg() {
return provGrdlg;
}
/**
* Sets the value of the provGrdlg property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setProvGrdlg(BigDecimal value) {
this.provGrdlg = value;
}
/**
* Gets the value of the provSatz property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getProvSatz() {
return provSatz;
}
/**
* Sets the value of the provSatz property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setProvSatz(BigDecimal value) {
this.provSatz = value;
}
/**
* Gets the value of the provBetrag property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getProvBetrag() {
return provBetrag;
}
/**
* Sets the value of the provBetrag property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setProvBetrag(BigDecimal value) {
this.provBetrag = value;
}
/**
* Gets the value of the waehrungsCd property.
*
* @return
* possible object is
* {@link WaehrungsCdType }
*
*/
public WaehrungsCdType getWaehrungsCd() {
return waehrungsCd;
}
/**
* Sets the value of the waehrungsCd property.
*
* @param value
* allowed object is
* {@link WaehrungsCdType }
*
*/
public void setWaehrungsCd(WaehrungsCdType value) {
this.waehrungsCd = value;
}
/**
* Gets the value of the provArtText property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProvArtText() {
return provArtText;
}
/**
* Sets the value of the provArtText property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProvArtText(String value) {
this.provArtText = value;
}
/**
* Gets the value of the vorpolizze property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVorpolizze() {
return vorpolizze;
}
/**
* Sets the value of the vorpolizze property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVorpolizze(String value) {
this.vorpolizze = value;
}
}

View File

@@ -0,0 +1,95 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for PaketInhCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,53 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for PaketUmfCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,53 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for PersArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,67 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for PolArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,53 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for PraemFristCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,271 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for RISIKO_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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" use="required" 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", required = true)
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 ELIdentifizierungType }
* {@link ELIndexType }
* {@link ELKlauselType }
* {@link ELObjektType }
* {@link ELPraemienkorrekturType }
* {@link ELRenteType }
* {@link ELSelbstbehalt }
* {@link ELSteuerType }
* {@link ELTextType }
* {@link ELVersicherungssummeType }
* {@link ELZeitraumType }
*
*
* @return
* The value of the elAnzahlOrELBetragOrELBezugsberechtigung property.
*/
public List<Object> getELAnzahlOrELBetragOrELBezugsberechtigung() {
if (elAnzahlOrELBetragOrELBezugsberechtigung == null) {
elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList<>();
}
return this.elAnzahlOrELBetragOrELBezugsberechtigung;
}
/**
* Gets the value of the risikoLfnr property.
*
*/
public int getRisikoLfnr() {
return risikoLfnr;
}
/**
* Sets the value of the risikoLfnr property.
*
*/
public void setRisikoLfnr(int value) {
this.risikoLfnr = value;
}
/**
* Gets the value of the risikoArtCd property.
*
* @return
* possible object is
* {@link RisikoArtCdType }
*
*/
public RisikoArtCdType getRisikoArtCd() {
return risikoArtCd;
}
/**
* Sets the value of the risikoArtCd property.
*
* @param value
* allowed object is
* {@link RisikoArtCdType }
*
*/
public void setRisikoArtCd(RisikoArtCdType value) {
this.risikoArtCd = value;
}
/**
* Gets the value of the risikoBez property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRisikoBez() {
return risikoBez;
}
/**
* Sets the value of the risikoBez property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRisikoBez(String value) {
this.risikoBez = value;
}
/**
* Gets the value of the praemFristCd property.
*
* @return
* possible object is
* {@link PraemFristCdType }
*
*/
public PraemFristCdType getPraemFristCd() {
return praemFristCd;
}
/**
* Sets the value of the praemFristCd property.
*
* @param value
* allowed object is
* {@link PraemFristCdType }
*
*/
public void setPraemFristCd(PraemFristCdType value) {
this.praemFristCd = value;
}
/**
* Gets the value of the praemieNto property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPraemieNto() {
return praemieNto;
}
/**
* Sets the value of the praemieNto property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPraemieNto(BigDecimal value) {
this.praemieNto = value;
}
}

View File

@@ -0,0 +1,221 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for SCHADEN_BETEILIGTER_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the geschaedigtesobjekt property.
*/
public List<GESCHAEDIGTESOBJEKTType> getGESCHAEDIGTESOBJEKT() {
if (geschaedigtesobjekt == null) {
geschaedigtesobjekt = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the zahlung property.
*/
public List<ZAHLUNGType> getZAHLUNG() {
if (zahlung == null) {
zahlung = new ArrayList<>();
}
return this.zahlung;
}
/**
* Gets the value of the betLfnr property.
*
*/
public int getBetLfnr() {
return betLfnr;
}
/**
* Sets the value of the betLfnr property.
*
*/
public void setBetLfnr(int value) {
this.betLfnr = value;
}
/**
* Gets the value of the personennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonennr() {
return personennr;
}
/**
* Sets the value of the personennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonennr(String value) {
this.personennr = value;
}
/**
* Gets the value of the betRolleCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBetRolleCd() {
return betRolleCd;
}
/**
* Sets the value of the betRolleCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBetRolleCd(String value) {
this.betRolleCd = value;
}
/**
* Gets the value of the betTxt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBetTxt() {
return betTxt;
}
/**
* Sets the value of the betTxt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBetTxt(String value) {
this.betTxt = value;
}
}

View File

@@ -0,0 +1,668 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for SCHADEN_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the elAnzahlOrELBetragOrELEinstufung property.
*/
public List<Object> getELAnzahlOrELBetragOrELEinstufung() {
if (elAnzahlOrELBetragOrELEinstufung == null) {
elAnzahlOrELBetragOrELEinstufung = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the schadenbeteiligter property.
*/
public List<SCHADENBETEILIGTERType> getSCHADENBETEILIGTER() {
if (schadenbeteiligter == null) {
schadenbeteiligter = new ArrayList<>();
}
return this.schadenbeteiligter;
}
/**
* Gets the value of the elkfzKennzeichen property.
*
* @return
* possible object is
* {@link ELKFZKennzeichenType }
*
*/
public ELKFZKennzeichenType getELKFZKennzeichen() {
return elkfzKennzeichen;
}
/**
* Sets the value of the elkfzKennzeichen property.
*
* @param value
* allowed object is
* {@link ELKFZKennzeichenType }
*
*/
public void setELKFZKennzeichen(ELKFZKennzeichenType value) {
this.elkfzKennzeichen = value;
}
/**
* Gets the value of the schadennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchadennr() {
return schadennr;
}
/**
* Sets the value of the schadennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchadennr(String value) {
this.schadennr = value;
}
/**
* Gets the value of the polizzennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolizzennr() {
return polizzennr;
}
/**
* Sets the value of the polizzennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolizzennr(String value) {
this.polizzennr = value;
}
/**
* Gets the value of the vertragsID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVertragsID() {
return vertragsID;
}
/**
* Sets the value of the vertragsID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVertragsID(String value) {
this.vertragsID = value;
}
/**
* Gets the value of the vermnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVermnr() {
return vermnr;
}
/**
* Sets the value of the vermnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVermnr(String value) {
this.vermnr = value;
}
/**
* Gets the value of the verbandSparteCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerbandSparteCd() {
return verbandSparteCd;
}
/**
* Sets the value of the verbandSparteCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerbandSparteCd(String value) {
this.verbandSparteCd = value;
}
/**
* Gets the value of the spartenCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpartenCd() {
return spartenCd;
}
/**
* Sets the value of the spartenCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpartenCd(String value) {
this.spartenCd = value;
}
/**
* Gets the value of the spartenErweiterung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpartenErweiterung() {
return spartenErweiterung;
}
/**
* Sets the value of the spartenErweiterung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpartenErweiterung(String value) {
this.spartenErweiterung = value;
}
/**
* Gets the value of the ereigniszpkt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEreigniszpkt() {
return ereigniszpkt;
}
/**
* Sets the value of the ereigniszpkt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEreigniszpkt(XMLGregorianCalendar value) {
this.ereigniszpkt = value;
}
/**
* Gets the value of the meldedat property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getMeldedat() {
return meldedat;
}
/**
* Sets the value of the meldedat property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setMeldedat(XMLGregorianCalendar value) {
this.meldedat = value;
}
/**
* Gets the value of the schadUrsCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchadUrsCd() {
return schadUrsCd;
}
/**
* Sets the value of the schadUrsCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchadUrsCd(String value) {
this.schadUrsCd = value;
}
/**
* Gets the value of the schadUrsTxt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchadUrsTxt() {
return schadUrsTxt;
}
/**
* Sets the value of the schadUrsTxt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchadUrsTxt(String value) {
this.schadUrsTxt = value;
}
/**
* Gets the value of the verschuldenCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerschuldenCd() {
return verschuldenCd;
}
/**
* Sets the value of the verschuldenCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerschuldenCd(String value) {
this.verschuldenCd = value;
}
/**
* Gets the value of the malusWirksamKz property.
*
* @return
* possible object is
* {@link Entsch2Type }
*
*/
public Entsch2Type getMalusWirksamKz() {
return malusWirksamKz;
}
/**
* Sets the value of the malusWirksamKz property.
*
* @param value
* allowed object is
* {@link Entsch2Type }
*
*/
public void setMalusWirksamKz(Entsch2Type value) {
this.malusWirksamKz = value;
}
/**
* Gets the value of the bearbStandCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBearbStandCd() {
return bearbStandCd;
}
/**
* Sets the value of the bearbStandCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBearbStandCd(String value) {
this.bearbStandCd = value;
}
/**
* Gets the value of the erledDat property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getErledDat() {
return erledDat;
}
/**
* Sets the value of the erledDat property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setErledDat(XMLGregorianCalendar value) {
this.erledDat = value;
}
/**
* Gets the value of the sachbearbVU property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSachbearbVU() {
return sachbearbVU;
}
/**
* Sets the value of the sachbearbVU property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSachbearbVU(String value) {
this.sachbearbVU = value;
}
/**
* Gets the value of the leistungGeschaetzt property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getLeistungGeschaetzt() {
return leistungGeschaetzt;
}
/**
* Sets the value of the leistungGeschaetzt property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setLeistungGeschaetzt(BigDecimal value) {
this.leistungGeschaetzt = value;
}
/**
* Gets the value of the waehrungsCd property.
*
* @return
* possible object is
* {@link WaehrungsCdType }
*
*/
public WaehrungsCdType getWaehrungsCd() {
return waehrungsCd;
}
/**
* Sets the value of the waehrungsCd property.
*
* @param value
* allowed object is
* {@link WaehrungsCdType }
*
*/
public void setWaehrungsCd(WaehrungsCdType value) {
this.waehrungsCd = value;
}
}

View File

@@ -0,0 +1,138 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the schlWert property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchlWert() {
return schlWert;
}
/**
* Sets the value of the schlWert property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchlWert(String value) {
this.schlWert = value;
}
/**
* Gets the value of the schlbez property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchlbez() {
return schlbez;
}
/**
* Sets the value of the schlbez property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchlbez(String value) {
this.schlbez = value;
}
/**
* Gets the value of the schlWertGenerell property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchlWertGenerell() {
return schlWertGenerell;
}
/**
* Sets the value of the schlWertGenerell property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchlWertGenerell(String value) {
this.schlWertGenerell = value;
}
}

View File

@@ -0,0 +1,167 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the schluessel property.
*/
public List<SCHLUESSEL> getSCHLUESSEL() {
if (schluessel == null) {
schluessel = new ArrayList<>();
}
return this.schluessel;
}
/**
* Gets the value of the schlArtCd property.
*
* @return
* possible object is
* {@link SchlArtCdType }
*
*/
public SchlArtCdType getSchlArtCd() {
return schlArtCd;
}
/**
* Sets the value of the schlArtCd property.
*
* @param value
* allowed object is
* {@link SchlArtCdType }
*
*/
public void setSchlArtCd(SchlArtCdType value) {
this.schlArtCd = value;
}
/**
* Gets the value of the vuWertErlaubtKz property.
*
* @return
* possible object is
* {@link Entsch2Type }
*
*/
public Entsch2Type getVUWertErlaubtKz() {
return vuWertErlaubtKz;
}
/**
* Sets the value of the vuWertErlaubtKz property.
*
* @param value
* allowed object is
* {@link Entsch2Type }
*
*/
public void setVUWertErlaubtKz(Entsch2Type value) {
this.vuWertErlaubtKz = value;
}
/**
* Gets the value of the schlArtBez property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSchlArtBez() {
return schlArtBez;
}
/**
* Sets the value of the schlArtBez property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSchlArtBez(String value) {
this.schlArtBez = value;
}
}

View File

@@ -0,0 +1,212 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for SONSTIGE_PERSON_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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" />
* <attribute name="GesFormCd" type="{urn:omds20}GesFormCd_Type" />
* <attribute name="PersonID_VU" type="{urn:omds20}PersonID_Type" />
* <attribute name="PersonID_Makler" type="{urn:omds20}PersonID_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;
@XmlAttribute(name = "GesFormCd")
protected GesFormCdType gesFormCd;
@XmlAttribute(name = "PersonID_VU")
protected String personIDVU;
@XmlAttribute(name = "PersonID_Makler")
protected String personIDMakler;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the kurzname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKurzname() {
return kurzname;
}
/**
* Sets the value of the kurzname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKurzname(String value) {
this.kurzname = value;
}
/**
* Gets the value of the sonstPersArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSonstPersArtCd() {
return sonstPersArtCd;
}
/**
* Sets the value of the sonstPersArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSonstPersArtCd(String value) {
this.sonstPersArtCd = value;
}
/**
* Gets the value of the gesFormCd property.
*
* @return
* possible object is
* {@link GesFormCdType }
*
*/
public GesFormCdType getGesFormCd() {
return gesFormCd;
}
/**
* Sets the value of the gesFormCd property.
*
* @param value
* allowed object is
* {@link GesFormCdType }
*
*/
public void setGesFormCd(GesFormCdType value) {
this.gesFormCd = value;
}
/**
* Gets the value of the personIDVU property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonIDVU() {
return personIDVU;
}
/**
* Sets the value of the personIDVU property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonIDVU(String value) {
this.personIDVU = value;
}
/**
* Gets the value of the personIDMakler property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonIDMakler() {
return personIDMakler;
}
/**
* Sets the value of the personIDMakler property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonIDMakler(String value) {
this.personIDMakler = value;
}
}

View File

@@ -0,0 +1,593 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for SPARTE_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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" />
* <attribute name="nmoKuendDat" type="{urn:omds20}Datum" />
* </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;
@XmlAttribute(name = "nmoKuendDat")
protected XMLGregorianCalendar nmoKuendDat;
/**
* 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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the elAnzahlOrELBetragOrELBezugsberechtigung property.
*/
public List<Object> getELAnzahlOrELBetragOrELBezugsberechtigung() {
if (elAnzahlOrELBetragOrELBezugsberechtigung == null) {
elAnzahlOrELBetragOrELBezugsberechtigung = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the risiko property.
*/
public List<RISIKOType> getRISIKO() {
if (risiko == null) {
risiko = new ArrayList<>();
}
return this.risiko;
}
/**
* Gets the value of the spartenCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpartenCd() {
return spartenCd;
}
/**
* Sets the value of the spartenCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpartenCd(String value) {
this.spartenCd = value;
}
/**
* Gets the value of the spartenErweiterung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpartenErweiterung() {
return spartenErweiterung;
}
/**
* Sets the value of the spartenErweiterung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpartenErweiterung(String value) {
this.spartenErweiterung = value;
}
/**
* Gets the value of the spartenID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpartenID() {
return spartenID;
}
/**
* Sets the value of the spartenID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpartenID(String value) {
this.spartenID = value;
}
/**
* Gets the value of the verbandSparteCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerbandSparteCd() {
return verbandSparteCd;
}
/**
* Sets the value of the verbandSparteCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerbandSparteCd(String value) {
this.verbandSparteCd = value;
}
/**
* Gets the value of the spartentxt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpartentxt() {
return spartentxt;
}
/**
* Sets the value of the spartentxt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpartentxt(String value) {
this.spartentxt = value;
}
/**
* Gets the value of the spartenBeg property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getSpartenBeg() {
return spartenBeg;
}
/**
* Sets the value of the spartenBeg property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setSpartenBeg(XMLGregorianCalendar value) {
this.spartenBeg = value;
}
/**
* Gets the value of the spartenEnd property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getSpartenEnd() {
return spartenEnd;
}
/**
* Sets the value of the spartenEnd property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setSpartenEnd(XMLGregorianCalendar value) {
this.spartenEnd = value;
}
/**
* Gets the value of the statusCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatusCd() {
return statusCd;
}
/**
* Sets the value of the statusCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatusCd(String value) {
this.statusCd = value;
}
/**
* Gets the value of the hauptTarifBez property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHauptTarifBez() {
return hauptTarifBez;
}
/**
* Sets the value of the hauptTarifBez property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHauptTarifBez(String value) {
this.hauptTarifBez = value;
}
/**
* Gets the value of the sichergKz property.
*
* @return
* possible object is
* {@link Entsch2Type }
*
*/
public Entsch2Type getSichergKz() {
return sichergKz;
}
/**
* Sets the value of the sichergKz property.
*
* @param value
* allowed object is
* {@link Entsch2Type }
*
*/
public void setSichergKz(Entsch2Type value) {
this.sichergKz = value;
}
/**
* Gets the value of the dirBeteiligtKz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDirBeteiligtKz() {
return dirBeteiligtKz;
}
/**
* Sets the value of the dirBeteiligtKz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDirBeteiligtKz(String value) {
this.dirBeteiligtKz = value;
}
/**
* Gets the value of the sondervereinbarungKz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSondervereinbarungKz() {
return sondervereinbarungKz;
}
/**
* Sets the value of the sondervereinbarungKz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSondervereinbarungKz(String value) {
this.sondervereinbarungKz = value;
}
/**
* Gets the value of the praemieNtoSp property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPraemieNtoSp() {
return praemieNtoSp;
}
/**
* Sets the value of the praemieNtoSp property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPraemieNtoSp(BigDecimal value) {
this.praemieNtoSp = value;
}
/**
* Gets the value of the praemieBtoSp property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPraemieBtoSp() {
return praemieBtoSp;
}
/**
* Sets the value of the praemieBtoSp property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPraemieBtoSp(BigDecimal value) {
this.praemieBtoSp = value;
}
/**
* Gets the value of the nmoKuendDat property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getNmoKuendDat() {
return nmoKuendDat;
}
/**
* Sets the value of the nmoKuendDat property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setNmoKuendDat(XMLGregorianCalendar value) {
this.nmoKuendDat = value;
}
}

View File

@@ -0,0 +1,74 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for SbhArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,572 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for SchlArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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"/>
* <enumeration value="GesFormCd"/>
* <enumeration value="RahmenvertragsartCd"/>
* </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"),
/**
* Gesellschaftsform
*
*/
@XmlEnumValue("GesFormCd")
GES_FORM_CD("GesFormCd"),
/**
* Rahmenvertragsart
*
*/
@XmlEnumValue("RahmenvertragsartCd")
RAHMENVERTRAGSART_CD("RahmenvertragsartCd");
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);
}
}

View File

@@ -0,0 +1,90 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for SprachCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,116 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for TxtArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,40 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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
{
}

View File

@@ -0,0 +1,897 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for VERS_KFZ_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the fzgArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFzgArtCd() {
return fzgArtCd;
}
/**
* Sets the value of the fzgArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFzgArtCd(String value) {
this.fzgArtCd = value;
}
/**
* Gets the value of the marke property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMarke() {
return marke;
}
/**
* Sets the value of the marke property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMarke(String value) {
this.marke = value;
}
/**
* Gets the value of the handelsbez property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHandelsbez() {
return handelsbez;
}
/**
* Sets the value of the handelsbez property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHandelsbez(String value) {
this.handelsbez = value;
}
/**
* Gets the value of the typVarVer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTypVarVer() {
return typVarVer;
}
/**
* Sets the value of the typVarVer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTypVarVer(String value) {
this.typVarVer = value;
}
/**
* Gets the value of the leasingkz property.
*
* @return
* possible object is
* {@link Entsch2Type }
*
*/
public Entsch2Type getLeasingkz() {
return leasingkz;
}
/**
* Sets the value of the leasingkz property.
*
* @param value
* allowed object is
* {@link Entsch2Type }
*
*/
public void setLeasingkz(Entsch2Type value) {
this.leasingkz = value;
}
/**
* Gets the value of the modelljahr property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getModelljahr() {
return modelljahr;
}
/**
* Sets the value of the modelljahr property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setModelljahr(Integer value) {
this.modelljahr = value;
}
/**
* Gets the value of the leistung property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getLeistung() {
return leistung;
}
/**
* Sets the value of the leistung property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setLeistung(Integer value) {
this.leistung = value;
}
/**
* Gets the value of the leistungElektroMot property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getLeistungElektroMot() {
return leistungElektroMot;
}
/**
* Sets the value of the leistungElektroMot property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setLeistungElektroMot(Integer value) {
this.leistungElektroMot = value;
}
/**
* Gets the value of the plaetze property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPlaetze() {
return plaetze;
}
/**
* Sets the value of the plaetze property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPlaetze(Integer value) {
this.plaetze = value;
}
/**
* Gets the value of the nutzlast property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getNutzlast() {
return nutzlast;
}
/**
* Sets the value of the nutzlast property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setNutzlast(BigDecimal value) {
this.nutzlast = value;
}
/**
* Gets the value of the hubraum property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getHubraum() {
return hubraum;
}
/**
* Sets the value of the hubraum property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHubraum(Integer value) {
this.hubraum = value;
}
/**
* Gets the value of the antriebsArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAntriebsArtCd() {
return antriebsArtCd;
}
/**
* Sets the value of the antriebsArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAntriebsArtCd(String value) {
this.antriebsArtCd = value;
}
/**
* Gets the value of the katkz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKatkz() {
return katkz;
}
/**
* Sets the value of the katkz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKatkz(String value) {
this.katkz = value;
}
/**
* Gets the value of the absKz property.
*
* @return
* possible object is
* {@link Entsch2Type }
*
*/
public Entsch2Type getABSKz() {
return absKz;
}
/**
* Sets the value of the absKz property.
*
* @param value
* allowed object is
* {@link Entsch2Type }
*
*/
public void setABSKz(Entsch2Type value) {
this.absKz = value;
}
/**
* Gets the value of the co2Ausstoss property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCO2Ausstoss() {
return co2Ausstoss;
}
/**
* Sets the value of the co2Ausstoss property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCO2Ausstoss(Integer value) {
this.co2Ausstoss = value;
}
/**
* Gets the value of the co2WLTPWMTC property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCO2WLTPWMTC() {
return co2WLTPWMTC;
}
/**
* Sets the value of the co2WLTPWMTC property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCO2WLTPWMTC(Integer value) {
this.co2WLTPWMTC = value;
}
/**
* Gets the value of the kraftstoffverbrNEFZ property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getKraftstoffverbrNEFZ() {
return kraftstoffverbrNEFZ;
}
/**
* Sets the value of the kraftstoffverbrNEFZ property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setKraftstoffverbrNEFZ(BigDecimal value) {
this.kraftstoffverbrNEFZ = value;
}
/**
* Gets the value of the kraftstoffverbrWLTPWMTC property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getKraftstoffverbrWLTPWMTC() {
return kraftstoffverbrWLTPWMTC;
}
/**
* Sets the value of the kraftstoffverbrWLTPWMTC property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setKraftstoffverbrWLTPWMTC(BigDecimal value) {
this.kraftstoffverbrWLTPWMTC = value;
}
/**
* Gets the value of the verbrEinhCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerbrEinhCd() {
return verbrEinhCd;
}
/**
* Sets the value of the verbrEinhCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerbrEinhCd(String value) {
this.verbrEinhCd = value;
}
/**
* Gets the value of the fahrgestnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFahrgestnr() {
return fahrgestnr;
}
/**
* Sets the value of the fahrgestnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFahrgestnr(String value) {
this.fahrgestnr = value;
}
/**
* Gets the value of the motornr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMotornr() {
return motornr;
}
/**
* Sets the value of the motornr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMotornr(String value) {
this.motornr = value;
}
/**
* Gets the value of the natCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNatCode() {
return natCode;
}
/**
* Sets the value of the natCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNatCode(String value) {
this.natCode = value;
}
/**
* Gets the value of the verwendzweckCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVerwendzweckCd() {
return verwendzweckCd;
}
/**
* Sets the value of the verwendzweckCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVerwendzweckCd(String value) {
this.verwendzweckCd = value;
}
/**
* Gets the value of the erstzulassdat property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getErstzulassdat() {
return erstzulassdat;
}
/**
* Sets the value of the erstzulassdat property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setErstzulassdat(XMLGregorianCalendar value) {
this.erstzulassdat = value;
}
/**
* Gets the value of the landesCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLandesCd() {
return landesCd;
}
/**
* Sets the value of the landesCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLandesCd(String value) {
this.landesCd = value;
}
/**
* Gets the value of the polKennz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolKennz() {
return polKennz;
}
/**
* Sets the value of the polKennz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolKennz(String value) {
this.polKennz = value;
}
/**
* Gets the value of the eigengew property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getEigengew() {
return eigengew;
}
/**
* Sets the value of the eigengew property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setEigengew(BigDecimal value) {
this.eigengew = value;
}
/**
* Gets the value of the hzulGesgew property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getHzulGesgew() {
return hzulGesgew;
}
/**
* Sets the value of the hzulGesgew property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setHzulGesgew(BigDecimal value) {
this.hzulGesgew = value;
}
/**
* Gets the value of the hGeschw property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getHGeschw() {
return hGeschw;
}
/**
* Sets the value of the hGeschw property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setHGeschw(BigDecimal value) {
this.hGeschw = value;
}
}

View File

@@ -0,0 +1,241 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for VERS_OBJEKT_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the versperson property.
*
* @return
* possible object is
* {@link VERSPERSONType }
*
*/
public VERSPERSONType getVERSPERSON() {
return versperson;
}
/**
* Sets the value of the versperson property.
*
* @param value
* allowed object is
* {@link VERSPERSONType }
*
*/
public void setVERSPERSON(VERSPERSONType value) {
this.versperson = value;
}
/**
* Gets the value of the verskfz property.
*
* @return
* possible object is
* {@link VERSKFZ }
*
*/
public VERSKFZ getVERSKFZ() {
return verskfz;
}
/**
* Sets the value of the verskfz property.
*
* @param value
* allowed object is
* {@link VERSKFZ }
*
*/
public void setVERSKFZ(VERSKFZ value) {
this.verskfz = value;
}
/**
* Gets the value of the verssache property.
*
* @return
* possible object is
* {@link VERSSACHEType }
*
*/
public VERSSACHEType getVERSSACHE() {
return verssache;
}
/**
* Sets the value of the verssache property.
*
* @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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 ELGrenzwertType }
* {@link ELIdentifizierungType }
* {@link ELTextType }
*
*
* @return
* The value of the elAnzahlOrELBetragOrELEinstufung property.
*/
public List<Object> getELAnzahlOrELBetragOrELEinstufung() {
if (elAnzahlOrELBetragOrELEinstufung == null) {
elAnzahlOrELBetragOrELEinstufung = new ArrayList<>();
}
return this.elAnzahlOrELBetragOrELEinstufung;
}
/**
* Gets the value of the objLfnr property.
*
*/
public int getObjLfnr() {
return objLfnr;
}
/**
* Sets the value of the objLfnr property.
*
*/
public void setObjLfnr(int value) {
this.objLfnr = value;
}
/**
* Gets the value of the versObjTxt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersObjTxt() {
return versObjTxt;
}
/**
* Sets the value of the versObjTxt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersObjTxt(String value) {
this.versObjTxt = value;
}
}

View File

@@ -0,0 +1,64 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for VERS_PERSON_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the personennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonennr() {
return personennr;
}
/**
* Sets the value of the personennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonennr(String value) {
this.personennr = value;
}
}

View File

@@ -0,0 +1,752 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for VERS_SACHE_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
@XmlAttribute(name = "AdressID_VU")
protected String adressIDVU;
@XmlAttribute(name = "AdressID_Makler")
protected String adressIDMakler;
/**
* 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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the elObjektdaten property.
*/
public List<ELObjektdatenType> getELObjektdaten() {
if (elObjektdaten == null) {
elObjektdaten = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the elFlaeche property.
*/
public List<ELFlaecheType> getELFlaeche() {
if (elFlaeche == null) {
elFlaeche = new ArrayList<>();
}
return this.elFlaeche;
}
/**
* Gets the value of the versSacheCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersSacheCd() {
return versSacheCd;
}
/**
* Sets the value of the versSacheCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersSacheCd(String value) {
this.versSacheCd = value;
}
/**
* Gets the value of the versSacheBez property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersSacheBez() {
return versSacheBez;
}
/**
* Sets the value of the versSacheBez property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersSacheBez(String value) {
this.versSacheBez = value;
}
/**
* Gets the value of the gebaeudeArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGebaeudeArtCd() {
return gebaeudeArtCd;
}
/**
* Sets the value of the gebaeudeArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGebaeudeArtCd(String value) {
this.gebaeudeArtCd = value;
}
/**
* Gets the value of the gebaeudeBez property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGebaeudeBez() {
return gebaeudeBez;
}
/**
* Sets the value of the gebaeudeBez property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGebaeudeBez(String value) {
this.gebaeudeBez = value;
}
/**
* Gets the value of the bauartCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBauartCd() {
return bauartCd;
}
/**
* Sets the value of the bauartCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBauartCd(String value) {
this.bauartCd = value;
}
/**
* Gets the value of the gebaeudeHoeheCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGebaeudeHoeheCd() {
return gebaeudeHoeheCd;
}
/**
* Sets the value of the gebaeudeHoeheCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGebaeudeHoeheCd(String value) {
this.gebaeudeHoeheCd = value;
}
/**
* Gets the value of the ausstattungCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAusstattungCd() {
return ausstattungCd;
}
/**
* Sets the value of the ausstattungCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAusstattungCd(String value) {
this.ausstattungCd = value;
}
/**
* Gets the value of the dachungCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDachungCd() {
return dachungCd;
}
/**
* Sets the value of the dachungCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDachungCd(String value) {
this.dachungCd = value;
}
/**
* Gets the value of the nutzungCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNutzungCd() {
return nutzungCd;
}
/**
* Sets the value of the nutzungCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNutzungCd(String value) {
this.nutzungCd = value;
}
/**
* Gets the value of the sichergKz property.
*
* @return
* possible object is
* {@link Entsch2Type }
*
*/
public Entsch2Type getSichergKz() {
return sichergKz;
}
/**
* Sets the value of the sichergKz property.
*
* @param value
* allowed object is
* {@link Entsch2Type }
*
*/
public void setSichergKz(Entsch2Type value) {
this.sichergKz = value;
}
/**
* Gets the value of the versLwCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersLwCd() {
return versLwCd;
}
/**
* Sets the value of the versLwCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersLwCd(String value) {
this.versLwCd = value;
}
/**
* Gets the value of the statusCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatusCd() {
return statusCd;
}
/**
* Sets the value of the statusCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatusCd(String value) {
this.statusCd = value;
}
/**
* Gets the value of the hersteller property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHersteller() {
return hersteller;
}
/**
* Sets the value of the hersteller property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHersteller(String value) {
this.hersteller = value;
}
/**
* Gets the value of the modell property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getModell() {
return modell;
}
/**
* Sets the value of the modell property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setModell(String value) {
this.modell = value;
}
/**
* Gets the value of the pac property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getPac() {
return pac;
}
/**
* Sets the value of the pac property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setPac(Long value) {
this.pac = value;
}
/**
* Gets the value of the landesCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLandesCd() {
return landesCd;
}
/**
* Sets the value of the landesCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLandesCd(String value) {
this.landesCd = value;
}
/**
* Gets the value of the plz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPLZ() {
return plz;
}
/**
* Sets the value of the plz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPLZ(String value) {
this.plz = value;
}
/**
* Gets the value of the ort property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrt() {
return ort;
}
/**
* Sets the value of the ort property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrt(String value) {
this.ort = value;
}
/**
* Gets the value of the strasse property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStrasse() {
return strasse;
}
/**
* Sets the value of the strasse property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStrasse(String value) {
this.strasse = value;
}
/**
* Gets the value of the hausnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHausnr() {
return hausnr;
}
/**
* Sets the value of the hausnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHausnr(String value) {
this.hausnr = value;
}
/**
* Gets the value of the zusatz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZusatz() {
return zusatz;
}
/**
* Sets the value of the zusatz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZusatz(String value) {
this.zusatz = value;
}
/**
* Gets the value of the adressIDVU property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDVU() {
return adressIDVU;
}
/**
* Sets the value of the adressIDVU property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDVU(String value) {
this.adressIDVU = value;
}
/**
* Gets the value of the adressIDMakler property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDMakler() {
return adressIDMakler;
}
/**
* Sets the value of the adressIDMakler property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDMakler(String value) {
this.adressIDMakler = value;
}
}

View File

@@ -0,0 +1,140 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the elKommunikation property.
*/
public List<ELKommunikationType> getELKommunikation() {
if (elKommunikation == null) {
elKommunikation = new ArrayList<>();
}
return this.elKommunikation;
}
/**
* Gets the value of the vuNr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVUNr() {
return vuNr;
}
/**
* Sets the value of the vuNr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVUNr(String value) {
this.vuNr = value;
}
/**
* Gets the value of the vuBezeichnung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVUBezeichnung() {
return vuBezeichnung;
}
/**
* Sets the value of the vuBezeichnung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVUBezeichnung(String value) {
this.vuBezeichnung = value;
}
}

View File

@@ -0,0 +1,40 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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
{
}

View File

@@ -0,0 +1,237 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for VERTRAGSFONDS_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the portfolio property.
*/
public List<PORTFOLIO> getPORTFOLIO() {
if (portfolio == null) {
portfolio = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the fonds property.
*/
public List<FONDSType> getFONDS() {
if (fonds == null) {
fonds = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the elBetrag property.
*/
public List<ELBetragType> getELBetrag() {
if (elBetrag == null) {
elBetrag = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the elText property.
*/
public List<ELTextType> getELText() {
if (elText == null) {
elText = new ArrayList<>();
}
return this.elText;
}
/**
* Gets the value of the polizzennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolizzennr() {
return polizzennr;
}
/**
* Sets the value of the polizzennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolizzennr(String value) {
this.polizzennr = value;
}
/**
* Gets the value of the vertragsID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVertragsID() {
return vertragsID;
}
/**
* Sets the value of the vertragsID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVertragsID(String value) {
this.vertragsID = value;
}
}

View File

@@ -0,0 +1,112 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for VERTRAGSPERSON_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the vtgRolleCd property.
*
* @return
* possible object is
* {@link VtgRolleCdType }
*
*/
public VtgRolleCdType getVtgRolleCd() {
return vtgRolleCd;
}
/**
* Sets the value of the vtgRolleCd property.
*
* @param value
* allowed object is
* {@link VtgRolleCdType }
*
*/
public void setVtgRolleCd(VtgRolleCdType value) {
this.vtgRolleCd = value;
}
/**
* Gets the value of the lfnr property.
*
*/
public int getLfnr() {
return lfnr;
}
/**
* Sets the value of the lfnr property.
*
*/
public void setLfnr(int value) {
this.lfnr = value;
}
/**
* Gets the value of the personennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonennr() {
return personennr;
}
/**
* Sets the value of the personennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonennr(String value) {
this.personennr = value;
}
}

View File

@@ -0,0 +1,963 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for VERTRAG_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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-Rahmenvertrag"/>
* <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-Rahmenvertrag", type = ELRahmenvertragType.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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 ELRahmenvertragType }
* {@link ELSelbstbehalt }
* {@link ELTextType }
*
*
* @return
* The value of the elAntragOrELAnzahlOrELBetrag property.
*/
public List<Object> getELAntragOrELAnzahlOrELBetrag() {
if (elAntragOrELAnzahlOrELBetrag == null) {
elAntragOrELAnzahlOrELBetrag = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the vertragsperson property.
*/
public List<VERTRAGSPERSONType> getVERTRAGSPERSON() {
if (vertragsperson == null) {
vertragsperson = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the versobjekt property.
*/
public List<VERSOBJEKTType> getVERSOBJEKT() {
if (versobjekt == null) {
versobjekt = new ArrayList<>();
}
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 Jakarta XML Binding object.
* This is why there is not a {@code set} 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 }
*
*
* @return
* The value of the sparte property.
*/
public List<SPARTEType> getSPARTE() {
if (sparte == null) {
sparte = new ArrayList<>();
}
return this.sparte;
}
/**
* Gets the value of the polizzennr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolizzennr() {
return polizzennr;
}
/**
* Sets the value of the polizzennr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolizzennr(String value) {
this.polizzennr = value;
}
/**
* Gets the value of the vertragsID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVertragsID() {
return vertragsID;
}
/**
* Sets the value of the vertragsID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVertragsID(String value) {
this.vertragsID = value;
}
/**
* Gets the value of the vermnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVermnr() {
return vermnr;
}
/**
* Sets the value of the vermnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVermnr(String value) {
this.vermnr = value;
}
/**
* Gets the value of the vtgProdCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVtgProdCd() {
return vtgProdCd;
}
/**
* Sets the value of the vtgProdCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVtgProdCd(String value) {
this.vtgProdCd = value;
}
/**
* Gets the value of the vtgProdukt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVtgProdukt() {
return vtgProdukt;
}
/**
* Sets the value of the vtgProdukt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVtgProdukt(String value) {
this.vtgProdukt = value;
}
/**
* Gets the value of the vtgSparteCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVtgSparteCd() {
return vtgSparteCd;
}
/**
* Sets the value of the vtgSparteCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVtgSparteCd(String value) {
this.vtgSparteCd = value;
}
/**
* Gets the value of the zahlRhythmCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZahlRhythmCd() {
return zahlRhythmCd;
}
/**
* Sets the value of the zahlRhythmCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZahlRhythmCd(String value) {
this.zahlRhythmCd = value;
}
/**
* Gets the value of the zahlWegCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZahlWegCd() {
return zahlWegCd;
}
/**
* Sets the value of the zahlWegCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZahlWegCd(String value) {
this.zahlWegCd = value;
}
/**
* Gets the value of the vtgStatusCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVtgStatusCd() {
return vtgStatusCd;
}
/**
* Sets the value of the vtgStatusCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVtgStatusCd(String value) {
this.vtgStatusCd = value;
}
/**
* Gets the value of the vtgStatusBeg property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getVtgStatusBeg() {
return vtgStatusBeg;
}
/**
* Sets the value of the vtgStatusBeg property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setVtgStatusBeg(XMLGregorianCalendar value) {
this.vtgStatusBeg = value;
}
/**
* Gets the value of the vtgBeg property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getVtgBeg() {
return vtgBeg;
}
/**
* Sets the value of the vtgBeg property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setVtgBeg(XMLGregorianCalendar value) {
this.vtgBeg = value;
}
/**
* Gets the value of the vtgEnd property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getVtgEnd() {
return vtgEnd;
}
/**
* Sets the value of the vtgEnd property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setVtgEnd(XMLGregorianCalendar value) {
this.vtgEnd = value;
}
/**
* Gets the value of the stornoGiltAb property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStornoGiltAb() {
return stornoGiltAb;
}
/**
* Sets the value of the stornoGiltAb property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStornoGiltAb(XMLGregorianCalendar value) {
this.stornoGiltAb = value;
}
/**
* Gets the value of the hptfaelligkeit property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getHptfaelligkeit() {
return hptfaelligkeit;
}
/**
* Sets the value of the hptfaelligkeit property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setHptfaelligkeit(XMLGregorianCalendar value) {
this.hptfaelligkeit = value;
}
/**
* Gets the value of the durchfDat property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDurchfDat() {
return durchfDat;
}
/**
* Sets the value of the durchfDat property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDurchfDat(XMLGregorianCalendar value) {
this.durchfDat = value;
}
/**
* Gets the value of the gueltigBeg property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getGueltigBeg() {
return gueltigBeg;
}
/**
* Sets the value of the gueltigBeg property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setGueltigBeg(XMLGregorianCalendar value) {
this.gueltigBeg = value;
}
/**
* Gets the value of the aendGrundCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAendGrundCd() {
return aendGrundCd;
}
/**
* Sets the value of the aendGrundCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAendGrundCd(String value) {
this.aendGrundCd = value;
}
/**
* Gets the value of the aendGrundbez property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAendGrundbez() {
return aendGrundbez;
}
/**
* Sets the value of the aendGrundbez property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAendGrundbez(String value) {
this.aendGrundbez = value;
}
/**
* Gets the value of the praemieNtoVtg property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPraemieNtoVtg() {
return praemieNtoVtg;
}
/**
* Sets the value of the praemieNtoVtg property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPraemieNtoVtg(BigDecimal value) {
this.praemieNtoVtg = value;
}
/**
* Gets the value of the praemieBtoVtg property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPraemieBtoVtg() {
return praemieBtoVtg;
}
/**
* Sets the value of the praemieBtoVtg property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setPraemieBtoVtg(BigDecimal value) {
this.praemieBtoVtg = value;
}
/**
* Gets the value of the waehrungsCd property.
*
* @return
* possible object is
* {@link WaehrungsCdType }
*
*/
public WaehrungsCdType getWaehrungsCd() {
return waehrungsCd;
}
/**
* Sets the value of the waehrungsCd property.
*
* @param value
* allowed object is
* {@link WaehrungsCdType }
*
*/
public void setWaehrungsCd(WaehrungsCdType value) {
this.waehrungsCd = value;
}
/**
* Gets the value of the blz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBLZ() {
return blz;
}
/**
* Sets the value of the blz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBLZ(String value) {
this.blz = value;
}
/**
* Gets the value of the ktonr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKtonr() {
return ktonr;
}
/**
* Sets the value of the ktonr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKtonr(String value) {
this.ktonr = value;
}
/**
* Gets the value of the bic property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBIC() {
return bic;
}
/**
* Sets the value of the bic property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBIC(String value) {
this.bic = value;
}
/**
* Gets the value of the iban property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIBAN() {
return iban;
}
/**
* Sets the value of the iban property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIBAN(String value) {
this.iban = value;
}
}

View File

@@ -0,0 +1,116 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for VSArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,123 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for VtgRolleCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <simpleType name="VtgRolleCd_Type">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="AP"/>
* <enumeration value="AZ"/>
* <enumeration value="BG"/>
* <enumeration value="BM"/>
* <enumeration value="BO"/>
* <enumeration value="IA"/>
* <enumeration value="FI"/>
* <enumeration value="GV"/>
* <enumeration value="LE"/>
* <enumeration value="KA"/>
* <enumeration value="VN"/>
* <enumeration value="ZB"/>
* </restriction>
* </simpleType>
* }</pre>
*
*/
@XmlType(name = "VtgRolleCd_Type")
@XmlEnum
public enum VtgRolleCdType {
/**
* Ansprechperson
*
*/
AP,
/**
* abweichender Zulassungsbesitzer
*
*/
AZ,
/**
* Bausparer gesetzlicher Vertreter
*
*/
BG,
/**
* Bausparer mit Prämie
*
*/
BM,
/**
* Bausparer ohne Prämie
*
*/
BO,
/**
* Inkassoadresse
*
*/
IA,
/**
* Firmeninhaber
*
*/
FI,
/**
* Gesetzlicher Vertreter
*
*/
GV,
/**
* Lenker
*
*/
LE,
/**
* Korrespondenz/Zustelladresse
*
*/
KA,
/**
* Versicherungsnehmer
*
*/
VN,
/**
* Zustellbevollmächtigter
*
*/
ZB;
public String value() {
return name();
}
public static VtgRolleCdType fromValue(String v) {
return valueOf(v);
}
}

View File

@@ -0,0 +1,284 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for WaehrungsCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,329 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_14;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for ZAHLUNG_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the zahlungsLfnr property.
*
*/
public int getZahlungsLfnr() {
return zahlungsLfnr;
}
/**
* Sets the value of the zahlungsLfnr property.
*
*/
public void setZahlungsLfnr(int value) {
this.zahlungsLfnr = value;
}
/**
* Gets the value of the waehrungsCd property.
*
* @return
* possible object is
* {@link WaehrungsCdType }
*
*/
public WaehrungsCdType getWaehrungsCd() {
return waehrungsCd;
}
/**
* Sets the value of the waehrungsCd property.
*
* @param value
* allowed object is
* {@link WaehrungsCdType }
*
*/
public void setWaehrungsCd(WaehrungsCdType value) {
this.waehrungsCd = value;
}
/**
* Gets the value of the zahlBetrag property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getZahlBetrag() {
return zahlBetrag;
}
/**
* Sets the value of the zahlBetrag property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setZahlBetrag(BigDecimal value) {
this.zahlBetrag = value;
}
/**
* Gets the value of the zahlDat property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getZahlDat() {
return zahlDat;
}
/**
* Sets the value of the zahlDat property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setZahlDat(XMLGregorianCalendar value) {
this.zahlDat = value;
}
/**
* Gets the value of the zahlGrundCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZahlGrundCd() {
return zahlGrundCd;
}
/**
* Sets the value of the zahlGrundCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZahlGrundCd(String value) {
this.zahlGrundCd = value;
}
/**
* Gets the value of the zahlWegCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZahlWegCd() {
return zahlWegCd;
}
/**
* Sets the value of the zahlWegCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZahlWegCd(String value) {
this.zahlWegCd = value;
}
/**
* Gets the value of the blz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBLZ() {
return blz;
}
/**
* Sets the value of the blz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBLZ(String value) {
this.blz = value;
}
/**
* Gets the value of the kontonr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKontonr() {
return kontonr;
}
/**
* Sets the value of the kontonr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKontonr(String value) {
this.kontonr = value;
}
/**
* Gets the value of the bic property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBIC() {
return bic;
}
/**
* Sets the value of the bic property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBIC(String value) {
this.bic = value;
}
/**
* Gets the value of the iban property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIBAN() {
return iban;
}
/**
* Sets the value of the iban property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIBAN(String value) {
this.iban = value;
}
}

View File

@@ -0,0 +1,8 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
@jakarta.xml.bind.annotation.XmlSchema(namespace = "urn:omds20", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED)
package at.vvo.omds.types.omds2Types.v2_14;

View File

@@ -0,0 +1,279 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import at.vvo.omds.types.omds3Types.r1_10_0.on2antrag.sachPrivat.RisikoAdresseType;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for ADRESSE_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
@XmlAttribute(name = "AdressID_VU")
protected String adressIDVU;
@XmlAttribute(name = "AdressID_Makler")
protected String adressIDMakler;
/**
* Gets the value of the pac property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getPac() {
return pac;
}
/**
* Sets the value of the pac property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setPac(Long value) {
this.pac = value;
}
/**
* Gets the value of the landesCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLandesCd() {
return landesCd;
}
/**
* Sets the value of the landesCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLandesCd(String value) {
this.landesCd = value;
}
/**
* Gets the value of the plz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPLZ() {
return plz;
}
/**
* Sets the value of the plz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPLZ(String value) {
this.plz = value;
}
/**
* Gets the value of the ort property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrt() {
return ort;
}
/**
* Sets the value of the ort property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrt(String value) {
this.ort = value;
}
/**
* Gets the value of the strasse property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStrasse() {
return strasse;
}
/**
* Sets the value of the strasse property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStrasse(String value) {
this.strasse = value;
}
/**
* Gets the value of the hausnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHausnr() {
return hausnr;
}
/**
* Sets the value of the hausnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHausnr(String value) {
this.hausnr = value;
}
/**
* Gets the value of the zusatz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZusatz() {
return zusatz;
}
/**
* Sets the value of the zusatz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZusatz(String value) {
this.zusatz = value;
}
/**
* Gets the value of the adressIDVU property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDVU() {
return adressIDVU;
}
/**
* Sets the value of the adressIDVU property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDVU(String value) {
this.adressIDVU = value;
}
/**
* Gets the value of the adressIDMakler property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDMakler() {
return adressIDMakler;
}
/**
* Sets the value of the adressIDMakler property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDMakler(String value) {
this.adressIDMakler = value;
}
}

View File

@@ -0,0 +1,60 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for BBArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <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);
}
}

View File

@@ -0,0 +1,116 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for DachungsArtCd_Type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>{@code
* <simpleType name="DachungsArtCd_Type">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="BD"/>
* <enumeration value="TD"/>
* <enumeration value="EP"/>
* <enumeration value="BL"/>
* <enumeration value="HDA"/>
* <enumeration value="BMS"/>
* <enumeration value="BOS"/>
* <enumeration value="BS"/>
* <enumeration value="FMS"/>
* <enumeration value="FOS"/>
* <enumeration value="NHD"/>
* </restriction>
* </simpleType>
* }</pre>
*
*/
@XmlType(name = "DachungsArtCd_Type")
@XmlEnum
public enum DachungsArtCdType {
/**
* Betondachstein
*
*/
BD,
/**
* Tondachstein
*
*/
TD,
/**
* Eternitplatten
*
*/
EP,
/**
* Blec
*
*/
BL,
/**
* harte Dachung - Andere
*
*/
HDA,
/**
* Bitumenabdichtung mit Schüttung
*
*/
BMS,
/**
* Bitumenabdichtung ohne Schüttung
*
*/
BOS,
/**
* Bitumenschindel
*
*/
BS,
/**
* Foliendach mit Schüttung
*
*/
FMS,
/**
* Foliendach ohne Schüttung
*
*/
FOS,
/**
* nicht harte Dachung - Andere
*
*/
NHD;
public String value() {
return name();
}
public static DachungsArtCdType fromValue(String v) {
return valueOf(v);
}
}

View File

@@ -0,0 +1,92 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Antrag_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the nummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNummer() {
return nummer;
}
/**
* Sets the value of the nummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNummer(String value) {
this.nummer = value;
}
/**
* Gets the value of the datum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatum() {
return datum;
}
/**
* Sets the value of the datum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatum(XMLGregorianCalendar value) {
this.datum = value;
}
}

View File

@@ -0,0 +1,99 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Anzahl_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the bezeichnung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBezeichnung() {
return bezeichnung;
}
/**
* Sets the value of the bezeichnung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBezeichnung(String value) {
this.bezeichnung = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
}

View File

@@ -0,0 +1,181 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Betrag_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the betragArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBetragArtCd() {
return betragArtCd;
}
/**
* Sets the value of the betragArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBetragArtCd(String value) {
this.betragArtCd = value;
}
/**
* Gets the value of the datum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatum() {
return datum;
}
/**
* Sets the value of the datum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatum(XMLGregorianCalendar value) {
this.datum = value;
}
/**
* Gets the value of the bezeichnung property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBezeichnung() {
return bezeichnung;
}
/**
* Sets the value of the bezeichnung property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBezeichnung(String value) {
this.bezeichnung = value;
}
/**
* Gets the value of the waehrungsCd property.
*
* @return
* possible object is
* {@link WaehrungsCdType }
*
*/
public WaehrungsCdType getWaehrungsCd() {
return waehrungsCd;
}
/**
* Sets the value of the waehrungsCd property.
*
* @param value
* allowed object is
* {@link WaehrungsCdType }
*
*/
public void setWaehrungsCd(WaehrungsCdType value) {
this.waehrungsCd = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
}

View File

@@ -0,0 +1,98 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Bezugsberechtigung_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the bbArtCd property.
*
* @return
* possible object is
* {@link BBArtCdType }
*
*/
public BBArtCdType getBBArtCd() {
return bbArtCd;
}
/**
* Sets the value of the bbArtCd property.
*
* @param value
* allowed object is
* {@link BBArtCdType }
*
*/
public void setBBArtCd(BBArtCdType value) {
this.bbArtCd = value;
}
/**
* Gets the value of the bbTxt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBBTxt() {
return bbTxt;
}
/**
* Sets the value of the bbTxt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBBTxt(String value) {
this.bbTxt = value;
}
}

View File

@@ -0,0 +1,98 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Einstufung_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the estArtCd property.
*
* @return
* possible object is
* {@link EstArtCdType }
*
*/
public EstArtCdType getEstArtCd() {
return estArtCd;
}
/**
* Sets the value of the estArtCd property.
*
* @param value
* allowed object is
* {@link EstArtCdType }
*
*/
public void setEstArtCd(EstArtCdType value) {
this.estArtCd = value;
}
/**
* Gets the value of the estWert property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEstWert() {
return estWert;
}
/**
* Sets the value of the estWert property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEstWert(String value) {
this.estWert = value;
}
}

View File

@@ -0,0 +1,91 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Entscheidungsfrage_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the eFrageCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEFrageCd() {
return eFrageCd;
}
/**
* Sets the value of the eFrageCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEFrageCd(String value) {
this.eFrageCd = value;
}
/**
* Gets the value of the eFrageAntw property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEFrageAntw() {
return eFrageAntw;
}
/**
* Sets the value of the eFrageAntw property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEFrageAntw(String value) {
this.eFrageAntw = value;
}
}

View File

@@ -0,0 +1,152 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Flaeche_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the flaechenAttributCd property.
*
* @return
* possible object is
* {@link FlaechenAttributCdType }
*
*/
public FlaechenAttributCdType getFlaechenAttributCd() {
return flaechenAttributCd;
}
/**
* Sets the value of the flaechenAttributCd property.
*
* @param value
* allowed object is
* {@link FlaechenAttributCdType }
*
*/
public void setFlaechenAttributCd(FlaechenAttributCdType value) {
this.flaechenAttributCd = value;
}
/**
* Gets the value of the nummer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNummer() {
return nummer;
}
/**
* Sets the value of the nummer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNummer(String value) {
this.nummer = value;
}
/**
* Gets the value of the innenFlaeche property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getInnenFlaeche() {
return innenFlaeche;
}
/**
* Sets the value of the innenFlaeche property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setInnenFlaeche(BigDecimal value) {
this.innenFlaeche = value;
}
/**
* Gets the value of the verbauteFlaeche property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getVerbauteFlaeche() {
return verbauteFlaeche;
}
/**
* Sets the value of the verbauteFlaeche property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setVerbauteFlaeche(BigDecimal value) {
this.verbauteFlaeche = value;
}
}

View File

@@ -0,0 +1,93 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Gewinnbeteiligung_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the datum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatum() {
return datum;
}
/**
* Sets the value of the datum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatum(XMLGregorianCalendar value) {
this.datum = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
}

View File

@@ -0,0 +1,125 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Grenzwert_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the grwArtCd property.
*
* @return
* possible object is
* {@link GrwArtCdType }
*
*/
public GrwArtCdType getGrwArtCd() {
return grwArtCd;
}
/**
* Sets the value of the grwArtCd property.
*
* @param value
* allowed object is
* {@link GrwArtCdType }
*
*/
public void setGrwArtCd(GrwArtCdType value) {
this.grwArtCd = value;
}
/**
* Gets the value of the grWert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getGrWert() {
return grWert;
}
/**
* Sets the value of the grWert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setGrWert(BigDecimal value) {
this.grWert = value;
}
/**
* Gets the value of the grwTyp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGrwTyp() {
return grwTyp;
}
/**
* Sets the value of the grwTyp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGrwTyp(String value) {
this.grwTyp = value;
}
}

View File

@@ -0,0 +1,126 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Identifizierung_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the idfArtCd property.
*
* @return
* possible object is
* {@link IdfArtCdType }
*
*/
public IdfArtCdType getIdfArtCd() {
return idfArtCd;
}
/**
* Sets the value of the idfArtCd property.
*
* @param value
* allowed object is
* {@link IdfArtCdType }
*
*/
public void setIdfArtCd(IdfArtCdType value) {
this.idfArtCd = value;
}
/**
* Gets the value of the idfSchluessel property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdfSchluessel() {
return idfSchluessel;
}
/**
* Sets the value of the idfSchluessel property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdfSchluessel(String value) {
this.idfSchluessel = value;
}
/**
* Gets the value of the idfDatum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getIdfDatum() {
return idfDatum;
}
/**
* Sets the value of the idfDatum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setIdfDatum(XMLGregorianCalendar value) {
this.idfDatum = value;
}
}

View File

@@ -0,0 +1,122 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Index_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the indexArtCd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIndexArtCd() {
return indexArtCd;
}
/**
* Sets the value of the indexArtCd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIndexArtCd(String value) {
this.indexArtCd = value;
}
/**
* Gets the value of the datum property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDatum() {
return datum;
}
/**
* Sets the value of the datum property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDatum(XMLGregorianCalendar value) {
this.datum = value;
}
/**
* Gets the value of the wert property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWert() {
return wert;
}
/**
* Sets the value of the wert property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWert(BigDecimal value) {
this.wert = value;
}
}

View File

@@ -0,0 +1,91 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-KFZ-Kennzeichen_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the polKennz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolKennz() {
return polKennz;
}
/**
* Sets the value of the polKennz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolKennz(String value) {
this.polKennz = value;
}
/**
* Gets the value of the fahrgestnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFahrgestnr() {
return fahrgestnr;
}
/**
* Sets the value of the fahrgestnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFahrgestnr(String value) {
this.fahrgestnr = value;
}
}

View File

@@ -0,0 +1,71 @@
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
//
package at.vvo.omds.types.omds2Types.v2_15;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for EL-Klausel_Type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <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;
/**
* Gets the value of the klauselnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKlauselnr() {
return klauselnr;
}
/**
* Sets the value of the klauselnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKlauselnr(String value) {
this.klauselnr = value;
}
}

Some files were not shown because too many files have changed in this diff Show More