Generiere Java Klassen Version 1.8
This commit is contained in:
@@ -7,7 +7,7 @@ import javax.xml.bind.annotation.XmlAttribute;
|
|||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.RisikoAdresseType;
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.RisikoAdresseType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -0,0 +1,108 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakte Ebene fuer Listen mit einem oder mehreren wählbaren Werten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AListenAttribut_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AListenAttribut_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="MinAnz" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AListenAttribut_Type", propOrder = {
|
||||||
|
"values",
|
||||||
|
"minAnz"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
AttributEnumType.class,
|
||||||
|
AttributMultiEnumType.class
|
||||||
|
})
|
||||||
|
public abstract class AListenAttributType
|
||||||
|
extends AttributType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Values")
|
||||||
|
protected List<EintragSchluessellisteType> values;
|
||||||
|
@XmlElement(name = "MinAnz")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer minAnz;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link EintragSchluessellisteType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<EintragSchluessellisteType> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<EintragSchluessellisteType>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der minAnz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMinAnz() {
|
||||||
|
return minAnz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der minAnz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMinAnz(Integer value) {
|
||||||
|
this.minAnz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Basistyp für Attribute mit einem Wert
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ASingleAttribut_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ASingleAttribut_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Pflichtfeld" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ASingleAttribut_Type", propOrder = {
|
||||||
|
"pflichtfeld"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
AttributStringType.class,
|
||||||
|
AttributIntType.class,
|
||||||
|
AttributDezimalType.class,
|
||||||
|
AttributDoubleType.class,
|
||||||
|
AttributDatumType.class
|
||||||
|
})
|
||||||
|
public abstract class ASingleAttributType
|
||||||
|
extends AttributType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Pflichtfeld")
|
||||||
|
protected Boolean pflichtfeld;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der pflichtfeld-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Boolean isPflichtfeld() {
|
||||||
|
return pflichtfeld;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der pflichtfeld-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPflichtfeld(Boolean value) {
|
||||||
|
this.pflichtfeld = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Typ zur Beschreibung abgelehnter Risiken
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AbgelehnteRisiken_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AbgelehnteRisiken_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AbgelehnteRisiken_Type")
|
||||||
|
public abstract class AbgelehnteRisikenType {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sicherstellung vom Typ Abtretung / Zession
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Abtretung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Abtretung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Zessionar" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Abtretung_Type", propOrder = {
|
||||||
|
"zessionar"
|
||||||
|
})
|
||||||
|
public class AbtretungType
|
||||||
|
extends SicherstellungType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Zessionar", required = true)
|
||||||
|
protected GlaeubigerSicherstellungType zessionar;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zessionar-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link GlaeubigerSicherstellungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GlaeubigerSicherstellungType getZessionar() {
|
||||||
|
return zessionar;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zessionar-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link GlaeubigerSicherstellungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZessionar(GlaeubigerSicherstellungType value) {
|
||||||
|
this.zessionar = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für AdresseArtCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="AdresseArtCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="HA"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "AdresseArtCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum AdresseArtCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Hauptadresse
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
HA;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static AdresseArtCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,302 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für eine Adresse mit ObjektId
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Adresse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Adresse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attGroup ref="{urn:omds20}Adresse_Attribute"/>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Adresse_Type", propOrder = {
|
||||||
|
"objektId"
|
||||||
|
})
|
||||||
|
public class AdresseType {
|
||||||
|
|
||||||
|
@XmlElement(name = "ObjektId", required = true)
|
||||||
|
protected ObjektIdType objektId;
|
||||||
|
@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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der objektId-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjektIdType getObjektId() {
|
||||||
|
return objektId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der objektId-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setObjektId(ObjektIdType value) {
|
||||||
|
this.objektId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der pac-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Long getPac() {
|
||||||
|
return pac;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der pac-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPac(Long value) {
|
||||||
|
this.pac = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der landesCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getLandesCd() {
|
||||||
|
return landesCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der landesCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLandesCd(String value) {
|
||||||
|
this.landesCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der plz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPLZ() {
|
||||||
|
return plz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der plz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPLZ(String value) {
|
||||||
|
this.plz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getOrt() {
|
||||||
|
return ort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOrt(String value) {
|
||||||
|
this.ort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der strasse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getStrasse() {
|
||||||
|
return strasse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der strasse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStrasse(String value) {
|
||||||
|
this.strasse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hausnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getHausnr() {
|
||||||
|
return hausnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hausnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHausnr(String value) {
|
||||||
|
this.hausnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zusatz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZusatz() {
|
||||||
|
return zusatz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zusatz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZusatz(String value) {
|
||||||
|
this.zusatz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der adressIDVU-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAdressIDVU() {
|
||||||
|
return adressIDVU;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der adressIDVU-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAdressIDVU(String value) {
|
||||||
|
this.adressIDVU = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der adressIDMakler-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAdressIDMakler() {
|
||||||
|
return adressIDMakler;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der adressIDMakler-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAdressIDMakler(String value) {
|
||||||
|
this.adressIDMakler = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ein spezieller AuthorizationFilterType, der eine Anfrage dahingehend einschränkt, dass nur Ergebnisse für eine bestimmte MaklerID oder Vermnr (Vermittlernummer) zurück gegeben werden
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AgentFilter_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AgentFilter_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter">
|
||||||
|
* <choice>
|
||||||
|
* <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
|
||||||
|
* <element name="Vermnr" type="{urn:omds20}Vermnr" maxOccurs="unbounded"/>
|
||||||
|
* </choice>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AgentFilter_Type", propOrder = {
|
||||||
|
"maklerID",
|
||||||
|
"vermnr"
|
||||||
|
})
|
||||||
|
public class AgentFilterType
|
||||||
|
extends AuthorizationFilter
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "MaklerID")
|
||||||
|
protected String maklerID;
|
||||||
|
@XmlElement(name = "Vermnr")
|
||||||
|
protected List<String> vermnr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der maklerID-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMaklerID() {
|
||||||
|
return maklerID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der maklerID-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMaklerID(String value) {
|
||||||
|
this.maklerID = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the vermnr property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the vermnr property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVermnr().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getVermnr() {
|
||||||
|
if (vermnr == null) {
|
||||||
|
vermnr = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.vermnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für Antragsart_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="Antragsart_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="NA"/>
|
||||||
|
* <enumeration value="FW"/>
|
||||||
|
* <enumeration value="VW"/>
|
||||||
|
* <enumeration value="WK"/>
|
||||||
|
* <enumeration value="TU"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "Antragsart_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum AntragsartType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Neuantrag
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
NA,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fahrzeugwechsel
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
FW,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Versicherungswechsel
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VW,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wechselkennzeichen
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
WK,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tarifumstellung
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
TU;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static AntragsartType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,192 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auf xsd:date basierendes Attribut mit Metadaten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributDatum_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributDatum_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||||
|
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}date" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||||
|
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributDatum_Type", propOrder = {
|
||||||
|
"value",
|
||||||
|
"_default",
|
||||||
|
"values",
|
||||||
|
"min",
|
||||||
|
"max"
|
||||||
|
})
|
||||||
|
public class AttributDatumType
|
||||||
|
extends ASingleAttributType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Value")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar value;
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar _default;
|
||||||
|
@XmlElement(name = "Values")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected List<XMLGregorianCalendar> values;
|
||||||
|
@XmlElement(name = "Min")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar min;
|
||||||
|
@XmlElement(name = "Max")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar max;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der value-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der value-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setValue(XMLGregorianCalendar value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(XMLGregorianCalendar value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<XMLGregorianCalendar> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<XMLGregorianCalendar>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der min-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMin() {
|
||||||
|
return min;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der min-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMin(XMLGregorianCalendar value) {
|
||||||
|
this.min = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der max-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMax() {
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der max-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMax(XMLGregorianCalendar value) {
|
||||||
|
this.max = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,186 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auf omds:decimal basierendes Attribut mit Metadaten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributDezimal_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributDezimal_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Value" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||||
|
* <element name="Default" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{urn:omds20}decimal" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Min" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||||
|
* <element name="Max" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributDezimal_Type", propOrder = {
|
||||||
|
"value",
|
||||||
|
"_default",
|
||||||
|
"values",
|
||||||
|
"min",
|
||||||
|
"max"
|
||||||
|
})
|
||||||
|
public class AttributDezimalType
|
||||||
|
extends ASingleAttributType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Value")
|
||||||
|
protected BigDecimal value;
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
protected BigDecimal _default;
|
||||||
|
@XmlElement(name = "Values")
|
||||||
|
protected List<BigDecimal> values;
|
||||||
|
@XmlElement(name = "Min")
|
||||||
|
protected BigDecimal min;
|
||||||
|
@XmlElement(name = "Max")
|
||||||
|
protected BigDecimal max;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der value-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der value-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setValue(BigDecimal value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(BigDecimal value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<BigDecimal> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<BigDecimal>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der min-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getMin() {
|
||||||
|
return min;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der min-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMin(BigDecimal value) {
|
||||||
|
this.min = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der max-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getMax() {
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der max-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMax(BigDecimal value) {
|
||||||
|
this.max = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,185 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auf xsd:double basierendes Attribut mit Metadaten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributDouble_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributDouble_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||||
|
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||||
|
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributDouble_Type", propOrder = {
|
||||||
|
"value",
|
||||||
|
"_default",
|
||||||
|
"values",
|
||||||
|
"min",
|
||||||
|
"max"
|
||||||
|
})
|
||||||
|
public class AttributDoubleType
|
||||||
|
extends ASingleAttributType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Value")
|
||||||
|
protected Double value;
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
protected Double _default;
|
||||||
|
@XmlElement(name = "Values", type = Double.class)
|
||||||
|
protected List<Double> values;
|
||||||
|
@XmlElement(name = "Min")
|
||||||
|
protected Double min;
|
||||||
|
@XmlElement(name = "Max")
|
||||||
|
protected Double max;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der value-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Double getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der value-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setValue(Double value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Double getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(Double value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<Double> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<Double>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der min-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Double getMin() {
|
||||||
|
return min;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der min-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMin(Double value) {
|
||||||
|
this.min = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der max-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Double getMax() {
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der max-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMax(Double value) {
|
||||||
|
this.max = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,94 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attribut mit Metadaten für Schlüssellisten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributEnum_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributEnum_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AListenAttribut_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributEnum_Type", propOrder = {
|
||||||
|
"value",
|
||||||
|
"_default"
|
||||||
|
})
|
||||||
|
public class AttributEnumType
|
||||||
|
extends AListenAttributType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Value")
|
||||||
|
protected String value;
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
protected String _default;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der value-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der value-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setValue(String value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(String value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,185 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auf xsd:int basierendes Attribut mit Metadaten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributInt_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributInt_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
|
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
|
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributInt_Type", propOrder = {
|
||||||
|
"value",
|
||||||
|
"_default",
|
||||||
|
"values",
|
||||||
|
"min",
|
||||||
|
"max"
|
||||||
|
})
|
||||||
|
public class AttributIntType
|
||||||
|
extends ASingleAttributType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Value")
|
||||||
|
protected Integer value;
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
protected Integer _default;
|
||||||
|
@XmlElement(name = "Values", type = Integer.class)
|
||||||
|
protected List<Integer> values;
|
||||||
|
@XmlElement(name = "Min")
|
||||||
|
protected Integer min;
|
||||||
|
@XmlElement(name = "Max")
|
||||||
|
protected Integer max;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der value-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der value-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setValue(Integer value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(Integer value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<Integer> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<Integer>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der min-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMin() {
|
||||||
|
return min;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der min-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMin(Integer value) {
|
||||||
|
this.min = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der max-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMax() {
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der max-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMax(Integer value) {
|
||||||
|
this.max = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,163 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ mit Metadaten für xsd:date-Attribute
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributMetadatenDatum_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributMetadatenDatum_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}date" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||||
|
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributMetadatenDatum_Type", propOrder = {
|
||||||
|
"_default",
|
||||||
|
"values",
|
||||||
|
"min",
|
||||||
|
"max"
|
||||||
|
})
|
||||||
|
public class AttributMetadatenDatumType
|
||||||
|
extends AttributMetadatenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar _default;
|
||||||
|
@XmlElement(name = "Values")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected List<XMLGregorianCalendar> values;
|
||||||
|
@XmlElement(name = "Min")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar min;
|
||||||
|
@XmlElement(name = "Max")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar max;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(XMLGregorianCalendar value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<XMLGregorianCalendar> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<XMLGregorianCalendar>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der min-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMin() {
|
||||||
|
return min;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der min-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMin(XMLGregorianCalendar value) {
|
||||||
|
this.min = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der max-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getMax() {
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der max-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMax(XMLGregorianCalendar value) {
|
||||||
|
this.max = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,158 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ mit Metadaten für omds:decimal-Attribute
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributMetadatenDezimal_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributMetadatenDezimal_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Default" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{urn:omds20}decimal" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Min" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||||
|
* <element name="Max" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributMetadatenDezimal_Type", propOrder = {
|
||||||
|
"_default",
|
||||||
|
"values",
|
||||||
|
"min",
|
||||||
|
"max"
|
||||||
|
})
|
||||||
|
public class AttributMetadatenDezimalType
|
||||||
|
extends AttributMetadatenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
protected BigDecimal _default;
|
||||||
|
@XmlElement(name = "Values")
|
||||||
|
protected List<BigDecimal> values;
|
||||||
|
@XmlElement(name = "Min")
|
||||||
|
protected BigDecimal min;
|
||||||
|
@XmlElement(name = "Max")
|
||||||
|
protected BigDecimal max;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(BigDecimal value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<BigDecimal> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<BigDecimal>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der min-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getMin() {
|
||||||
|
return min;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der min-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMin(BigDecimal value) {
|
||||||
|
this.min = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der max-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getMax() {
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der max-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMax(BigDecimal value) {
|
||||||
|
this.max = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ mit Metadaten für Schlüssellisten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributMetadatenEnum_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributMetadatenEnum_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributMetadatenEnum_Type", propOrder = {
|
||||||
|
"_default",
|
||||||
|
"values"
|
||||||
|
})
|
||||||
|
public class AttributMetadatenEnumType
|
||||||
|
extends AttributMetadatenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
protected String _default;
|
||||||
|
@XmlElement(name = "Values")
|
||||||
|
protected List<EintragSchluessellisteType> values;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(String value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link EintragSchluessellisteType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<EintragSchluessellisteType> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<EintragSchluessellisteType>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ mit Metadaten für xsd:int-Attribute
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributMetadatenInt_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributMetadatenInt_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
|
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributMetadatenInt_Type", propOrder = {
|
||||||
|
"_default",
|
||||||
|
"values",
|
||||||
|
"min",
|
||||||
|
"max"
|
||||||
|
})
|
||||||
|
public class AttributMetadatenIntType
|
||||||
|
extends AttributMetadatenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
protected Integer _default;
|
||||||
|
@XmlElement(name = "Values", type = Integer.class)
|
||||||
|
protected List<Integer> values;
|
||||||
|
@XmlElement(name = "Min")
|
||||||
|
protected Integer min;
|
||||||
|
@XmlElement(name = "Max")
|
||||||
|
protected Integer max;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(Integer value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<Integer> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<Integer>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der min-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMin() {
|
||||||
|
return min;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der min-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMin(Integer value) {
|
||||||
|
this.min = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der max-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMax() {
|
||||||
|
return max;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der max-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMax(Integer value) {
|
||||||
|
this.max = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,188 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ mit Metadaten für xsd:string-Attribute
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributMetadatenString_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributMetadatenString_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
|
* <element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
|
* <element name="Regex" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributMetadatenString_Type", propOrder = {
|
||||||
|
"_default",
|
||||||
|
"values",
|
||||||
|
"minLaenge",
|
||||||
|
"maxLaenge",
|
||||||
|
"regex"
|
||||||
|
})
|
||||||
|
public class AttributMetadatenStringType
|
||||||
|
extends AttributMetadatenType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
protected String _default;
|
||||||
|
@XmlElement(name = "Values")
|
||||||
|
protected List<String> values;
|
||||||
|
@XmlElement(name = "MinLaenge")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer minLaenge;
|
||||||
|
@XmlElement(name = "MaxLaenge")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer maxLaenge;
|
||||||
|
@XmlElement(name = "Regex")
|
||||||
|
protected String regex;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(String value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der minLaenge-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMinLaenge() {
|
||||||
|
return minLaenge;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der minLaenge-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMinLaenge(Integer value) {
|
||||||
|
this.minLaenge = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der maxLaenge-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMaxLaenge() {
|
||||||
|
return maxLaenge;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der maxLaenge-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMaxLaenge(Integer value) {
|
||||||
|
this.maxLaenge = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der regex-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRegex() {
|
||||||
|
return regex;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der regex-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRegex(String value) {
|
||||||
|
this.regex = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,148 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Basistyp für Metadaten von Attributen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributMetadaten_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributMetadaten_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Attribut" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||||
|
* <element name="Aenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributMetadaten_Type", propOrder = {
|
||||||
|
"attribut",
|
||||||
|
"aenderbar",
|
||||||
|
"bezeichnung",
|
||||||
|
"beschreibungTxt"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
AttributMetadatenStringType.class,
|
||||||
|
AttributMetadatenIntType.class,
|
||||||
|
AttributMetadatenDezimalType.class,
|
||||||
|
AttributMetadatenDatumType.class,
|
||||||
|
AttributMetadatenEnumType.class
|
||||||
|
})
|
||||||
|
public abstract class AttributMetadatenType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Attribut", required = true)
|
||||||
|
protected Object attribut;
|
||||||
|
@XmlElement(name = "Aenderbar")
|
||||||
|
protected boolean aenderbar;
|
||||||
|
@XmlElement(name = "Bezeichnung")
|
||||||
|
protected String bezeichnung;
|
||||||
|
@XmlElement(name = "BeschreibungTxt")
|
||||||
|
protected String beschreibungTxt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der attribut-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getAttribut() {
|
||||||
|
return attribut;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der attribut-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAttribut(Object value) {
|
||||||
|
this.attribut = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aenderbar-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isAenderbar() {
|
||||||
|
return aenderbar;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aenderbar-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAenderbar(boolean value) {
|
||||||
|
this.aenderbar = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBezeichnung() {
|
||||||
|
return bezeichnung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBezeichnung(String value) {
|
||||||
|
this.bezeichnung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBeschreibungTxt() {
|
||||||
|
return beschreibungTxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBeschreibungTxt(String value) {
|
||||||
|
this.beschreibungTxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,129 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.math.BigInteger;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Message an einem Attribut
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributMsg_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributMsg_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="ErrorType">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
|
||||||
|
* <pattern value="1"/>
|
||||||
|
* <pattern value="2"/>
|
||||||
|
* <pattern value="3"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
|
||||||
|
* <element name="ErrorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributMsg_Type", propOrder = {
|
||||||
|
"errorType",
|
||||||
|
"errorCode",
|
||||||
|
"errorMsg"
|
||||||
|
})
|
||||||
|
public class AttributMsgType {
|
||||||
|
|
||||||
|
@XmlElement(name = "ErrorType", required = true)
|
||||||
|
protected BigInteger errorType;
|
||||||
|
@XmlElement(name = "ErrorCode")
|
||||||
|
protected BigInteger errorCode;
|
||||||
|
@XmlElement(name = "ErrorMsg", required = true)
|
||||||
|
protected String errorMsg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der errorType-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigInteger getErrorType() {
|
||||||
|
return errorType;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der errorType-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setErrorType(BigInteger value) {
|
||||||
|
this.errorType = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der errorCode-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigInteger getErrorCode() {
|
||||||
|
return errorCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der errorCode-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setErrorCode(BigInteger value) {
|
||||||
|
this.errorCode = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der errorMsg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getErrorMsg() {
|
||||||
|
return errorMsg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der errorMsg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setErrorMsg(String value) {
|
||||||
|
this.errorMsg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,134 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attribut mit Metadaten für Schlüssellisten, bei dem mehrere Einträge auswählbar sind.
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributMultiEnum_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributMultiEnum_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AListenAttribut_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="MaxAnz" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributMultiEnum_Type", propOrder = {
|
||||||
|
"value",
|
||||||
|
"_default",
|
||||||
|
"maxAnz"
|
||||||
|
})
|
||||||
|
public class AttributMultiEnumType
|
||||||
|
extends AListenAttributType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Value")
|
||||||
|
protected List<String> value;
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
protected List<String> _default;
|
||||||
|
@XmlElement(name = "MaxAnz")
|
||||||
|
protected Object maxAnz;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the value property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the value property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValue().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getValue() {
|
||||||
|
if (value == null) {
|
||||||
|
value = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the default property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the default property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getDefault().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getDefault() {
|
||||||
|
if (_default == null) {
|
||||||
|
_default = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this._default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der maxAnz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getMaxAnz() {
|
||||||
|
return maxAnz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der maxAnz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMaxAnz(Object value) {
|
||||||
|
this.maxAnz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,216 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auf xsd:string basierendes Attribut mit Metadaten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AttributString_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AttributString_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Regex" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
|
* <element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
|
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AttributString_Type", propOrder = {
|
||||||
|
"value",
|
||||||
|
"_default",
|
||||||
|
"regex",
|
||||||
|
"maxLaenge",
|
||||||
|
"minLaenge",
|
||||||
|
"values"
|
||||||
|
})
|
||||||
|
public class AttributStringType
|
||||||
|
extends ASingleAttributType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Value")
|
||||||
|
protected String value;
|
||||||
|
@XmlElement(name = "Default")
|
||||||
|
protected String _default;
|
||||||
|
@XmlElement(name = "Regex")
|
||||||
|
protected String regex;
|
||||||
|
@XmlElement(name = "MaxLaenge")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer maxLaenge;
|
||||||
|
@XmlElement(name = "MinLaenge")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer minLaenge;
|
||||||
|
@XmlElement(name = "Values")
|
||||||
|
protected List<String> values;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der value-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der value-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setValue(String value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der default-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getDefault() {
|
||||||
|
return _default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der default-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDefault(String value) {
|
||||||
|
this._default = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der regex-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRegex() {
|
||||||
|
return regex;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der regex-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRegex(String value) {
|
||||||
|
this.regex = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der maxLaenge-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMaxLaenge() {
|
||||||
|
return maxLaenge;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der maxLaenge-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMaxLaenge(Integer value) {
|
||||||
|
this.maxLaenge = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der minLaenge-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getMinLaenge() {
|
||||||
|
return minLaenge;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der minLaenge-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMinLaenge(Integer value) {
|
||||||
|
this.minLaenge = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the values property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getValues().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getValues() {
|
||||||
|
if (values == null) {
|
||||||
|
values = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.values;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,154 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Basistyp für Attribute die Metadaten enthalten können (feiner Unterschied zu AttributMetadaten_Type)
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Attribut_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Attribut_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Aenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||||
|
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Msg" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMsg_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Attribut_Type", propOrder = {
|
||||||
|
"aenderbar",
|
||||||
|
"bezeichnung",
|
||||||
|
"beschreibungTxt",
|
||||||
|
"msg"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
ASingleAttributType.class,
|
||||||
|
AListenAttributType.class,
|
||||||
|
RaucherType.class
|
||||||
|
})
|
||||||
|
public abstract class AttributType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Aenderbar")
|
||||||
|
protected Boolean aenderbar;
|
||||||
|
@XmlElement(name = "Bezeichnung")
|
||||||
|
protected String bezeichnung;
|
||||||
|
@XmlElement(name = "BeschreibungTxt")
|
||||||
|
protected String beschreibungTxt;
|
||||||
|
@XmlElement(name = "Msg")
|
||||||
|
protected AttributMsgType msg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aenderbar-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Boolean isAenderbar() {
|
||||||
|
return aenderbar;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aenderbar-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAenderbar(Boolean value) {
|
||||||
|
this.aenderbar = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBezeichnung() {
|
||||||
|
return bezeichnung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBezeichnung(String value) {
|
||||||
|
this.bezeichnung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBeschreibungTxt() {
|
||||||
|
return beschreibungTxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBeschreibungTxt(String value) {
|
||||||
|
this.beschreibungTxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der msg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AttributMsgType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributMsgType getMsg() {
|
||||||
|
return msg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der msg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AttributMsgType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMsg(AttributMsgType value) {
|
||||||
|
this.msg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Definiert einen abstrakten Filter um bestimmte spezifische Elemente herauszufiltern
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AuthorizationFilter complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AuthorizationFilter">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AuthorizationFilter")
|
||||||
|
@XmlSeeAlso({
|
||||||
|
AgentFilterType.class
|
||||||
|
})
|
||||||
|
public abstract class AuthorizationFilter {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,146 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ zur Übermittlung von Metadaten einer Autorisierung (z.B. einer elektronischen Unterschrift)
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Autorisierung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Autorisierung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="AutorisierungsId" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
||||||
|
* <element name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
|
||||||
|
* <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Autorisierung_Type", propOrder = {
|
||||||
|
"autorisierungsId",
|
||||||
|
"lfnrPerson",
|
||||||
|
"rolle",
|
||||||
|
"autorisierungsart"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
at.vvo.omds.types.omds3Types.r1_8_0.common.ProzessDokumentType.Autorisierungen.class
|
||||||
|
})
|
||||||
|
public class AutorisierungType {
|
||||||
|
|
||||||
|
@XmlElement(name = "AutorisierungsId")
|
||||||
|
protected Object autorisierungsId;
|
||||||
|
@XmlElement(name = "LfnrPerson")
|
||||||
|
@XmlSchemaType(name = "unsignedByte")
|
||||||
|
protected short lfnrPerson;
|
||||||
|
@XmlElement(name = "Rolle", required = true)
|
||||||
|
protected String rolle;
|
||||||
|
@XmlElement(name = "Autorisierungsart", required = true)
|
||||||
|
protected AutorisierungsartType autorisierungsart;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der autorisierungsId-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getAutorisierungsId() {
|
||||||
|
return autorisierungsId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der autorisierungsId-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAutorisierungsId(Object value) {
|
||||||
|
this.autorisierungsId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der lfnrPerson-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public short getLfnrPerson() {
|
||||||
|
return lfnrPerson;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der lfnrPerson-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLfnrPerson(short value) {
|
||||||
|
this.lfnrPerson = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der rolle-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRolle() {
|
||||||
|
return rolle;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der rolle-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRolle(String value) {
|
||||||
|
this.rolle = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der autorisierungsart-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AutorisierungsartType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AutorisierungsartType getAutorisierungsart() {
|
||||||
|
return autorisierungsart;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der autorisierungsart-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AutorisierungsartType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAutorisierungsart(AutorisierungsartType value) {
|
||||||
|
this.autorisierungsart = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,149 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ zur Übermittlung von Anforderungen an eine Autorisierung (z.B. einer elektronischen Unterschrift)
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für AutorisierungsAnforderung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="AutorisierungsAnforderung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="AutorisierungsId" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
||||||
|
* <element name="LfnrPerson" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
|
||||||
|
* <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type" maxOccurs="unbounded"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "AutorisierungsAnforderung_Type", propOrder = {
|
||||||
|
"autorisierungsId",
|
||||||
|
"lfnrPerson",
|
||||||
|
"rolle",
|
||||||
|
"autorisierungsart"
|
||||||
|
})
|
||||||
|
public class AutorisierungsAnforderungType {
|
||||||
|
|
||||||
|
@XmlElement(name = "AutorisierungsId")
|
||||||
|
protected Object autorisierungsId;
|
||||||
|
@XmlElement(name = "LfnrPerson")
|
||||||
|
@XmlSchemaType(name = "unsignedByte")
|
||||||
|
protected short lfnrPerson;
|
||||||
|
@XmlElement(name = "Rolle", required = true)
|
||||||
|
protected String rolle;
|
||||||
|
@XmlElement(name = "Autorisierungsart", required = true)
|
||||||
|
protected List<AutorisierungsartType> autorisierungsart;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der autorisierungsId-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Object getAutorisierungsId() {
|
||||||
|
return autorisierungsId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der autorisierungsId-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Object }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAutorisierungsId(Object value) {
|
||||||
|
this.autorisierungsId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der lfnrPerson-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public short getLfnrPerson() {
|
||||||
|
return lfnrPerson;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der lfnrPerson-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLfnrPerson(short value) {
|
||||||
|
this.lfnrPerson = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der rolle-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getRolle() {
|
||||||
|
return rolle;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der rolle-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRolle(String value) {
|
||||||
|
this.rolle = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the autorisierungsart property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the autorisierungsart property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAutorisierungsart().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link AutorisierungsartType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<AutorisierungsartType> getAutorisierungsart() {
|
||||||
|
if (autorisierungsart == null) {
|
||||||
|
autorisierungsart = new ArrayList<AutorisierungsartType>();
|
||||||
|
}
|
||||||
|
return this.autorisierungsart;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.bind.annotation.XmlValue;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Der Typ für Autorisierungsarten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Autorisierungsart_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Autorisierungsart_Type">
|
||||||
|
* <simpleContent>
|
||||||
|
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
|
||||||
|
* </extension>
|
||||||
|
* </simpleContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Autorisierungsart_Type", propOrder = {
|
||||||
|
"value"
|
||||||
|
})
|
||||||
|
public class AutorisierungsartType {
|
||||||
|
|
||||||
|
@XmlValue
|
||||||
|
protected String value;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der value-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der value-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setValue(String value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,152 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* beschreibt eine Bankverbindug
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Bankverbindung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Bankverbindung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Kontoinhaber" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Bank" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="BIC" type="{urn:omds3CommonServiceTypes-1-1-0}BIC_Type" minOccurs="0"/>
|
||||||
|
* <element name="IBAN" type="{urn:omds3CommonServiceTypes-1-1-0}IBAN_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Bankverbindung_Type", propOrder = {
|
||||||
|
"kontoinhaber",
|
||||||
|
"bank",
|
||||||
|
"bic",
|
||||||
|
"iban"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
PersBankverbindungType.class
|
||||||
|
})
|
||||||
|
public class BankverbindungType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Kontoinhaber", required = true)
|
||||||
|
protected String kontoinhaber;
|
||||||
|
@XmlElement(name = "Bank")
|
||||||
|
protected String bank;
|
||||||
|
@XmlElement(name = "BIC")
|
||||||
|
protected String bic;
|
||||||
|
@XmlElement(name = "IBAN", required = true)
|
||||||
|
protected String iban;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kontoinhaber-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKontoinhaber() {
|
||||||
|
return kontoinhaber;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kontoinhaber-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKontoinhaber(String value) {
|
||||||
|
this.kontoinhaber = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bank-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBank() {
|
||||||
|
return bank;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bank-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBank(String value) {
|
||||||
|
this.bank = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bic-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBIC() {
|
||||||
|
return bic;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bic-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBIC(String value) {
|
||||||
|
this.bic = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der iban-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getIBAN() {
|
||||||
|
return iban;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der iban-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setIBAN(String value) {
|
||||||
|
this.iban = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,164 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Typ für alle Gemeinsamkeiten von Produktbausteinen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für BasisProduktbaustein_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BasisProduktbaustein_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BasisProduktbaustein_Type", propOrder = {
|
||||||
|
"id",
|
||||||
|
"bezeichnung",
|
||||||
|
"bedingungen",
|
||||||
|
"meldungen"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
ProduktbausteinType.class
|
||||||
|
})
|
||||||
|
public abstract class BasisProduktbausteinType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Id")
|
||||||
|
protected String id;
|
||||||
|
@XmlElement(name = "Bezeichnung")
|
||||||
|
protected String bezeichnung;
|
||||||
|
@XmlElement(name = "Bedingungen")
|
||||||
|
protected List<String> bedingungen;
|
||||||
|
@XmlElement(name = "Meldungen")
|
||||||
|
protected List<ServiceFault> meldungen;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der id-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der id-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setId(String value) {
|
||||||
|
this.id = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBezeichnung() {
|
||||||
|
return bezeichnung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBezeichnung(String value) {
|
||||||
|
this.bezeichnung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the bedingungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the bedingungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getBedingungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getBedingungen() {
|
||||||
|
if (bedingungen == null) {
|
||||||
|
bedingungen = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.bedingungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the meldungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the meldungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getMeldungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ServiceFault }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ServiceFault> getMeldungen() {
|
||||||
|
if (meldungen == null) {
|
||||||
|
meldungen = new ArrayList<ServiceFault>();
|
||||||
|
}
|
||||||
|
return this.meldungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlEnumValue;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für Berechnungsvariante_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="Berechnungsvariante_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="basic"/>
|
||||||
|
* <enumeration value="medium"/>
|
||||||
|
* <enumeration value="top"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "Berechnungsvariante_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum BerechnungsvarianteType {
|
||||||
|
|
||||||
|
@XmlEnumValue("basic")
|
||||||
|
BASIC("basic"),
|
||||||
|
@XmlEnumValue("medium")
|
||||||
|
MEDIUM("medium"),
|
||||||
|
@XmlEnumValue("top")
|
||||||
|
TOP("top");
|
||||||
|
private final String value;
|
||||||
|
|
||||||
|
BerechnungsvarianteType(String v) {
|
||||||
|
value = v;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static BerechnungsvarianteType fromValue(String v) {
|
||||||
|
for (BerechnungsvarianteType c: BerechnungsvarianteType.values()) {
|
||||||
|
if (c.value.equals(v)) {
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new IllegalArgumentException(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für BeteiligtePersonVertrag_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BeteiligtePersonVertrag_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||||
|
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BeteiligtePersonVertrag_Type", propOrder = {
|
||||||
|
"lfnr",
|
||||||
|
"person"
|
||||||
|
})
|
||||||
|
public class BeteiligtePersonVertragType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Lfnr")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int lfnr;
|
||||||
|
@XmlElement(name = "Person", required = true)
|
||||||
|
protected PersonType person;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der lfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getLfnr() {
|
||||||
|
return lfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der lfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLfnr(int value) {
|
||||||
|
this.lfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Objekt zur Übermittlung von Personendaten ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld. Kann Adressdaten enthalten.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link PersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PersonType getPerson() {
|
||||||
|
return person;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der person-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link PersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPerson(PersonType value) {
|
||||||
|
this.person = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bezugsberechtigung gesetzliche Erben
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für BezugsberechtigungGesetzlicheErben_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BezugsberechtigungGesetzlicheErben_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BezugsberechtigungGesetzlicheErben_Type")
|
||||||
|
public class BezugsberechtigungGesetzlicheErbenType
|
||||||
|
extends BezugsberechtigungType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bezugsberechtigung Individuell
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für BezugsberechtigungIndividuell complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BezugsberechtigungIndividuell">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BezugsberechtigungIndividuell", propOrder = {
|
||||||
|
"beschreibung"
|
||||||
|
})
|
||||||
|
public class BezugsberechtigungIndividuell
|
||||||
|
extends BezugsberechtigungType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Beschreibung", required = true)
|
||||||
|
protected String beschreibung;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der beschreibung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBeschreibung() {
|
||||||
|
return beschreibung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der beschreibung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBeschreibung(String value) {
|
||||||
|
this.beschreibung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bezugsberechtigung namentlich
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für BezugsberechtigungNamentlich complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BezugsberechtigungNamentlich">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Unwiderruflich" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}PersonNamentlichesBezugsrecht_Type" maxOccurs="unbounded"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BezugsberechtigungNamentlich", propOrder = {
|
||||||
|
"unwiderruflich",
|
||||||
|
"personen"
|
||||||
|
})
|
||||||
|
public class BezugsberechtigungNamentlich
|
||||||
|
extends BezugsberechtigungType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Unwiderruflich")
|
||||||
|
protected boolean unwiderruflich;
|
||||||
|
@XmlElement(name = "Personen", required = true)
|
||||||
|
protected List<PersonNamentlichesBezugsrechtType> personen;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der unwiderruflich-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isUnwiderruflich() {
|
||||||
|
return unwiderruflich;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der unwiderruflich-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setUnwiderruflich(boolean value) {
|
||||||
|
this.unwiderruflich = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the personen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the personen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getPersonen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link PersonNamentlichesBezugsrechtType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<PersonNamentlichesBezugsrechtType> getPersonen() {
|
||||||
|
if (personen == null) {
|
||||||
|
personen = new ArrayList<PersonNamentlichesBezugsrechtType>();
|
||||||
|
}
|
||||||
|
return this.personen;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bezugsberechtigung testamentarische Erben
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für BezugsberechtigungTestamentarischeErben_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BezugsberechtigungTestamentarischeErben_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BezugsberechtigungTestamentarischeErben_Type")
|
||||||
|
public class BezugsberechtigungTestamentarischeErbenType
|
||||||
|
extends BezugsberechtigungType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Bezugsberechtigung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Bezugsberechtigung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Art">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||||
|
* <enumeration value="0"/>
|
||||||
|
* <enumeration value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Bezugsberechtigung_Type", propOrder = {
|
||||||
|
"art"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
BezugsberechtigungGesetzlicheErbenType.class,
|
||||||
|
BezugsberechtigungTestamentarischeErbenType.class,
|
||||||
|
BezugsberechtigungUeberbringerType.class,
|
||||||
|
BezugsberechtigungNamentlich.class,
|
||||||
|
BezugsberechtigungVersicherungsnehmerType.class,
|
||||||
|
BezugsberechtigungVersichertePersonType.class,
|
||||||
|
BezugsberechtigungIndividuell.class
|
||||||
|
})
|
||||||
|
public abstract class BezugsberechtigungType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Art")
|
||||||
|
protected short art;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der art-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public short getArt() {
|
||||||
|
return art;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der art-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setArt(short value) {
|
||||||
|
this.art = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bezugsberechtigung Überbringer
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für BezugsberechtigungUeberbringer_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BezugsberechtigungUeberbringer_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BezugsberechtigungUeberbringer_Type")
|
||||||
|
public class BezugsberechtigungUeberbringerType
|
||||||
|
extends BezugsberechtigungType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bezugsberechtigung VersichertePerson
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für BezugsberechtigungVersichertePerson_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BezugsberechtigungVersichertePerson_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BezugsberechtigungVersichertePerson_Type")
|
||||||
|
public class BezugsberechtigungVersichertePersonType
|
||||||
|
extends BezugsberechtigungType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bezugsberechtigung Versicherungsnehmer
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für BezugsberechtigungVersicherungsnehmer_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BezugsberechtigungVersicherungsnehmer_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BezugsberechtigungVersicherungsnehmer_Type")
|
||||||
|
public class BezugsberechtigungVersicherungsnehmerType
|
||||||
|
extends BezugsberechtigungType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.PERSONType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type Bezugsrecht (nur Kontext Kfz), für Bezugsberechtigungen in anderen Sparten steht jetzt Bezugsberechtigung_Type zur Verfügung.
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Bezugsrecht_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Bezugsrecht_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds20}PERSON"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Bezugsrecht_Type", propOrder = {
|
||||||
|
"person"
|
||||||
|
})
|
||||||
|
public class BezugsrechtType {
|
||||||
|
|
||||||
|
@XmlElement(name = "PERSON", namespace = "urn:omds20", required = true)
|
||||||
|
protected PERSONType person;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der person-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link PERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PERSONType getPERSON() {
|
||||||
|
return person;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der person-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link PERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPERSON(PERSONType value) {
|
||||||
|
this.person = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type Bonus Malus System
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für BonusMalusSystem_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="BonusMalusSystem_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="BonusMalusVorversicherung" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusVorversicherung_Type"/>
|
||||||
|
* <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type" minOccurs="0"/>
|
||||||
|
* <element name="Polizzennummer" minOccurs="0">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* <maxLength value="15"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* <element name="OffeneSchaeden" type="{urn:omds3CommonServiceTypes-1-1-0}OffeneSchaeden_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "BonusMalusSystem_Type", propOrder = {
|
||||||
|
"bonusMalusVorversicherung",
|
||||||
|
"versicherungsgesellschaft",
|
||||||
|
"polizzennummer",
|
||||||
|
"offeneSchaeden"
|
||||||
|
})
|
||||||
|
public class BonusMalusSystemType {
|
||||||
|
|
||||||
|
@XmlElement(name = "BonusMalusVorversicherung", required = true)
|
||||||
|
@XmlSchemaType(name = "string")
|
||||||
|
protected BonusMalusVorversicherungType bonusMalusVorversicherung;
|
||||||
|
@XmlElement(name = "Versicherungsgesellschaft")
|
||||||
|
protected String versicherungsgesellschaft;
|
||||||
|
@XmlElement(name = "Polizzennummer")
|
||||||
|
protected String polizzennummer;
|
||||||
|
@XmlElement(name = "OffeneSchaeden")
|
||||||
|
protected OffeneSchaedenType offeneSchaeden;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der bonusMalusVorversicherung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BonusMalusVorversicherungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BonusMalusVorversicherungType getBonusMalusVorversicherung() {
|
||||||
|
return bonusMalusVorversicherung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der bonusMalusVorversicherung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BonusMalusVorversicherungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBonusMalusVorversicherung(BonusMalusVorversicherungType value) {
|
||||||
|
this.bonusMalusVorversicherung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versicherungsgesellschaft-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVersicherungsgesellschaft() {
|
||||||
|
return versicherungsgesellschaft;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versicherungsgesellschaft-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersicherungsgesellschaft(String value) {
|
||||||
|
this.versicherungsgesellschaft = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polizzennummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolizzennummer() {
|
||||||
|
return polizzennummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polizzennummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolizzennummer(String value) {
|
||||||
|
this.polizzennummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der offeneSchaeden-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link OffeneSchaedenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public OffeneSchaedenType getOffeneSchaeden() {
|
||||||
|
return offeneSchaeden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der offeneSchaeden-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link OffeneSchaedenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOffeneSchaeden(OffeneSchaedenType value) {
|
||||||
|
this.offeneSchaeden = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlEnumValue;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für BonusMalusVorversicherung_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="BonusMalusVorversicherung_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="Ohne Vorversicherung"/>
|
||||||
|
* <enumeration value="Mit Vorversicherung"/>
|
||||||
|
* <enumeration value="BM-Übernahme von Angehörigen"/>
|
||||||
|
* <enumeration value="BM-Übernahme vom Dienstgeber"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "BonusMalusVorversicherung_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum BonusMalusVorversicherungType {
|
||||||
|
|
||||||
|
@XmlEnumValue("Ohne Vorversicherung")
|
||||||
|
OHNE_VORVERSICHERUNG("Ohne Vorversicherung"),
|
||||||
|
@XmlEnumValue("Mit Vorversicherung")
|
||||||
|
MIT_VORVERSICHERUNG("Mit Vorversicherung"),
|
||||||
|
@XmlEnumValue("BM-\u00dcbernahme von Angeh\u00f6rigen")
|
||||||
|
BM_ÜBERNAHME_VON_ANGEHÖRIGEN("BM-\u00dcbernahme von Angeh\u00f6rigen"),
|
||||||
|
@XmlEnumValue("BM-\u00dcbernahme vom Dienstgeber")
|
||||||
|
BM_ÜBERNAHME_VOM_DIENSTGEBER("BM-\u00dcbernahme vom Dienstgeber");
|
||||||
|
private final String value;
|
||||||
|
|
||||||
|
BonusMalusVorversicherungType(String v) {
|
||||||
|
value = v;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static BonusMalusVorversicherungType fromValue(String v) {
|
||||||
|
for (BonusMalusVorversicherungType c: BonusMalusVorversicherungType.values()) {
|
||||||
|
if (c.value.equals(v)) {
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new IllegalArgumentException(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.BOAProcessRequestType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CommonProcessRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CommonProcessRequest_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CommonProcessRequest_Type", propOrder = {
|
||||||
|
"geschaeftsfallnummer"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
BOAProcessRequestType.class
|
||||||
|
})
|
||||||
|
public abstract class CommonProcessRequestType
|
||||||
|
extends CommonRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Geschaeftsfallnummer")
|
||||||
|
protected ObjektIdType geschaeftsfallnummer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjektIdType getGeschaeftsfallnummer() {
|
||||||
|
return geschaeftsfallnummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der geschaeftsfallnummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGeschaeftsfallnummer(ObjektIdType value) {
|
||||||
|
this.geschaeftsfallnummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.BOAProcessResponseType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CommonProcessResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CommonProcessResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CommonProcessResponse_Type", propOrder = {
|
||||||
|
"geschaeftsfallnummer"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
BOAProcessResponseType.class
|
||||||
|
})
|
||||||
|
public abstract class CommonProcessResponseType
|
||||||
|
extends CommonResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Geschaeftsfallnummer")
|
||||||
|
protected ObjektIdType geschaeftsfallnummer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjektIdType getGeschaeftsfallnummer() {
|
||||||
|
return geschaeftsfallnummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der geschaeftsfallnummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGeschaeftsfallnummer(ObjektIdType value) {
|
||||||
|
this.geschaeftsfallnummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,201 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.GetApplicationDocumentRequestType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimRequestType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstraktes RequestObjekt
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CommonRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CommonRequest_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="VUNr" type="{urn:omds20}VUNr"/>
|
||||||
|
* <element name="ClientId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="TechnischeParameter" type="{urn:omds3CommonServiceTypes-1-1-0}TechnicalKeyValue_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="TechnischeObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}TechnischesObjekt_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CommonRequest_Type", propOrder = {
|
||||||
|
"vuNr",
|
||||||
|
"clientId",
|
||||||
|
"technischeParameter",
|
||||||
|
"technischeObjekte",
|
||||||
|
"korrelationsId"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
CheckClaimRequestType.class,
|
||||||
|
SubmitClaimRequestType.class,
|
||||||
|
GetClaimRequestType.class,
|
||||||
|
CommonSearchRequestType.class,
|
||||||
|
GetApplicationDocumentRequestType.class,
|
||||||
|
CommonProcessRequestType.class
|
||||||
|
})
|
||||||
|
public abstract class CommonRequestType {
|
||||||
|
|
||||||
|
@XmlElement(name = "VUNr", required = true)
|
||||||
|
protected String vuNr;
|
||||||
|
@XmlElement(name = "ClientId")
|
||||||
|
protected String clientId;
|
||||||
|
@XmlElement(name = "TechnischeParameter")
|
||||||
|
protected List<TechnicalKeyValueType> technischeParameter;
|
||||||
|
@XmlElement(name = "TechnischeObjekte")
|
||||||
|
protected List<TechnischesObjektType> technischeObjekte;
|
||||||
|
@XmlElement(name = "KorrelationsId", required = true)
|
||||||
|
protected String korrelationsId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vuNr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVUNr() {
|
||||||
|
return vuNr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vuNr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVUNr(String value) {
|
||||||
|
this.vuNr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der clientId-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getClientId() {
|
||||||
|
return clientId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der clientId-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setClientId(String value) {
|
||||||
|
this.clientId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the technischeParameter property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the technischeParameter property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getTechnischeParameter().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link TechnicalKeyValueType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<TechnicalKeyValueType> getTechnischeParameter() {
|
||||||
|
if (technischeParameter == null) {
|
||||||
|
technischeParameter = new ArrayList<TechnicalKeyValueType>();
|
||||||
|
}
|
||||||
|
return this.technischeParameter;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the technischeObjekte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the technischeObjekte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getTechnischeObjekte().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link TechnischesObjektType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<TechnischesObjektType> getTechnischeObjekte() {
|
||||||
|
if (technischeObjekte == null) {
|
||||||
|
technischeObjekte = new ArrayList<TechnischesObjektType>();
|
||||||
|
}
|
||||||
|
return this.technischeObjekte;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der korrelationsId-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKorrelationsId() {
|
||||||
|
return korrelationsId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der korrelationsId-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKorrelationsId(String value) {
|
||||||
|
this.korrelationsId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,172 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.GetApplicationDocumentResponseType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.GetClaimResponseType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstraktes ResponseObjekt
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CommonResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CommonResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Status" type="{urn:omds3CommonServiceTypes-1-1-0}ResponseStatus_Type"/>
|
||||||
|
* <element name="TechnischeObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}TechnischesObjekt_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Gestartet" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||||
|
* <element name="Beendet" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CommonResponse_Type", propOrder = {
|
||||||
|
"status",
|
||||||
|
"technischeObjekte",
|
||||||
|
"gestartet",
|
||||||
|
"beendet"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
CheckClaimResponseType.class,
|
||||||
|
SubmitClaimResponseType.class,
|
||||||
|
GetClaimResponseType.class,
|
||||||
|
CommonSearchResponseType.class,
|
||||||
|
GetApplicationDocumentResponseType.class,
|
||||||
|
CommonProcessResponseType.class
|
||||||
|
})
|
||||||
|
public abstract class CommonResponseType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Status", required = true)
|
||||||
|
protected ResponseStatusType status;
|
||||||
|
@XmlElement(name = "TechnischeObjekte")
|
||||||
|
protected List<TechnischesObjektType> technischeObjekte;
|
||||||
|
@XmlElement(name = "Gestartet")
|
||||||
|
@XmlSchemaType(name = "dateTime")
|
||||||
|
protected XMLGregorianCalendar gestartet;
|
||||||
|
@XmlElement(name = "Beendet")
|
||||||
|
@XmlSchemaType(name = "dateTime")
|
||||||
|
protected XMLGregorianCalendar beendet;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der status-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ResponseStatusType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ResponseStatusType getStatus() {
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der status-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ResponseStatusType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStatus(ResponseStatusType value) {
|
||||||
|
this.status = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the technischeObjekte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the technischeObjekte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getTechnischeObjekte().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link TechnischesObjektType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<TechnischesObjektType> getTechnischeObjekte() {
|
||||||
|
if (technischeObjekte == null) {
|
||||||
|
technischeObjekte = new ArrayList<TechnischesObjektType>();
|
||||||
|
}
|
||||||
|
return this.technischeObjekte;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gestartet-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getGestartet() {
|
||||||
|
return gestartet;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gestartet-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGestartet(XMLGregorianCalendar value) {
|
||||||
|
this.gestartet = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der beendet-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getBeendet() {
|
||||||
|
return beendet;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der beendet-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBeendet(XMLGregorianCalendar value) {
|
||||||
|
this.beendet = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,200 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.ELZeitraumType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstakter Typ fuer Suchanfragen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CommonSearchRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CommonSearchRequest_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
|
||||||
|
* <element name="Suchbegriff" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type" minOccurs="0"/>
|
||||||
|
* <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||||
|
* <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||||
|
* <element name="OrderBy" minOccurs="0">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="Meldedatum aufsteigend"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CommonSearchRequest_Type", propOrder = {
|
||||||
|
"authFilter",
|
||||||
|
"suchbegriff",
|
||||||
|
"zeitraum",
|
||||||
|
"maxResults",
|
||||||
|
"offset",
|
||||||
|
"orderBy"
|
||||||
|
})
|
||||||
|
public abstract class CommonSearchRequestType
|
||||||
|
extends CommonRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "AuthFilter")
|
||||||
|
protected AuthorizationFilter authFilter;
|
||||||
|
@XmlElement(name = "Suchbegriff")
|
||||||
|
protected String suchbegriff;
|
||||||
|
@XmlElement(name = "Zeitraum")
|
||||||
|
protected ELZeitraumType zeitraum;
|
||||||
|
@XmlElement(name = "MaxResults")
|
||||||
|
@XmlSchemaType(name = "unsignedInt")
|
||||||
|
protected long maxResults;
|
||||||
|
@XmlElement(name = "Offset")
|
||||||
|
@XmlSchemaType(name = "unsignedInt")
|
||||||
|
protected long offset;
|
||||||
|
@XmlElement(name = "OrderBy")
|
||||||
|
protected String orderBy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der authFilter-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AuthorizationFilter }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AuthorizationFilter getAuthFilter() {
|
||||||
|
return authFilter;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der authFilter-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AuthorizationFilter }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAuthFilter(AuthorizationFilter value) {
|
||||||
|
this.authFilter = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der suchbegriff-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSuchbegriff() {
|
||||||
|
return suchbegriff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der suchbegriff-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSuchbegriff(String value) {
|
||||||
|
this.suchbegriff = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zeitraum-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ELZeitraumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ELZeitraumType getZeitraum() {
|
||||||
|
return zeitraum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zeitraum-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ELZeitraumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZeitraum(ELZeitraumType value) {
|
||||||
|
this.zeitraum = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der maxResults-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public long getMaxResults() {
|
||||||
|
return maxResults;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der maxResults-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMaxResults(long value) {
|
||||||
|
this.maxResults = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der offset-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public long getOffset() {
|
||||||
|
return offset;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der offset-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOffset(long value) {
|
||||||
|
this.offset = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der orderBy-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getOrderBy() {
|
||||||
|
return orderBy;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der orderBy-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOrderBy(String value) {
|
||||||
|
this.orderBy = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,102 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Typ für Ergebnisse von Suchen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CommonSearchResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CommonSearchResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="ActualOffset" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||||
|
* <element name="ActualMaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||||
|
* <element name="TotalResults" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CommonSearchResponse_Type", propOrder = {
|
||||||
|
"actualOffset",
|
||||||
|
"actualMaxResults",
|
||||||
|
"totalResults"
|
||||||
|
})
|
||||||
|
public abstract class CommonSearchResponseType
|
||||||
|
extends CommonResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "ActualOffset")
|
||||||
|
@XmlSchemaType(name = "unsignedInt")
|
||||||
|
protected long actualOffset;
|
||||||
|
@XmlElement(name = "ActualMaxResults")
|
||||||
|
@XmlSchemaType(name = "unsignedInt")
|
||||||
|
protected long actualMaxResults;
|
||||||
|
@XmlElement(name = "TotalResults")
|
||||||
|
@XmlSchemaType(name = "unsignedInt")
|
||||||
|
protected long totalResults;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der actualOffset-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public long getActualOffset() {
|
||||||
|
return actualOffset;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der actualOffset-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setActualOffset(long value) {
|
||||||
|
this.actualOffset = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der actualMaxResults-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public long getActualMaxResults() {
|
||||||
|
return actualMaxResults;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der actualMaxResults-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setActualMaxResults(long value) {
|
||||||
|
this.actualMaxResults = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der totalResults-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public long getTotalResults() {
|
||||||
|
return totalResults;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der totalResults-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setTotalResults(long value) {
|
||||||
|
this.totalResults = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,191 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.activation.DataHandler;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlMimeType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deprecated, verwende ProzessDokument_Type.
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Dateianhang_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Dateianhang_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="DateiType" type="{urn:omds3CommonServiceTypes-1-1-0}TypeDateianhang_Type" minOccurs="0"/>
|
||||||
|
* <element name="DateiName">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="100"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* <element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
||||||
|
* <element name="DateiBeschreibung" minOccurs="0">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="200"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Dateianhang_Type", propOrder = {
|
||||||
|
"mimetype",
|
||||||
|
"dateiType",
|
||||||
|
"dateiName",
|
||||||
|
"dateiData",
|
||||||
|
"dateiBeschreibung"
|
||||||
|
})
|
||||||
|
public class DateianhangType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Mimetype", required = true)
|
||||||
|
protected String mimetype;
|
||||||
|
@XmlElement(name = "DateiType")
|
||||||
|
protected Integer dateiType;
|
||||||
|
@XmlElement(name = "DateiName", required = true)
|
||||||
|
protected String dateiName;
|
||||||
|
@XmlElement(name = "DateiData", required = true)
|
||||||
|
@XmlMimeType("application/octet-stream")
|
||||||
|
protected DataHandler dateiData;
|
||||||
|
@XmlElement(name = "DateiBeschreibung")
|
||||||
|
protected String dateiBeschreibung;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mimetype-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMimetype() {
|
||||||
|
return mimetype;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mimetype-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMimetype(String value) {
|
||||||
|
this.mimetype = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dateiType-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getDateiType() {
|
||||||
|
return dateiType;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dateiType-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDateiType(Integer value) {
|
||||||
|
this.dateiType = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dateiName-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getDateiName() {
|
||||||
|
return dateiName;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dateiName-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDateiName(String value) {
|
||||||
|
this.dateiName = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dateiData-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link DataHandler }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DataHandler getDateiData() {
|
||||||
|
return dateiData;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dateiData-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link DataHandler }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDateiData(DataHandler value) {
|
||||||
|
this.dateiData = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dateiBeschreibung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getDateiBeschreibung() {
|
||||||
|
return dateiBeschreibung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dateiBeschreibung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDateiBeschreibung(String value) {
|
||||||
|
this.dateiBeschreibung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,112 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type Datenverwendung
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Datenverwendung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Datenverwendung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="ZustimmungZurElektrUebermittlungVorvertraglDokumente" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||||
|
* <element name="ElektrUebermittlungVorvertraglDokumenteEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="ZustimmungZurVerwendungDerDatenZuWerbezwecken" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Datenverwendung_Type", propOrder = {
|
||||||
|
"zustimmungZurElektrUebermittlungVorvertraglDokumente",
|
||||||
|
"elektrUebermittlungVorvertraglDokumenteEmail",
|
||||||
|
"zustimmungZurVerwendungDerDatenZuWerbezwecken"
|
||||||
|
})
|
||||||
|
public class DatenverwendungType {
|
||||||
|
|
||||||
|
@XmlElement(name = "ZustimmungZurElektrUebermittlungVorvertraglDokumente")
|
||||||
|
protected Boolean zustimmungZurElektrUebermittlungVorvertraglDokumente;
|
||||||
|
@XmlElement(name = "ElektrUebermittlungVorvertraglDokumenteEmail")
|
||||||
|
protected String elektrUebermittlungVorvertraglDokumenteEmail;
|
||||||
|
@XmlElement(name = "ZustimmungZurVerwendungDerDatenZuWerbezwecken")
|
||||||
|
protected boolean zustimmungZurVerwendungDerDatenZuWerbezwecken;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Boolean isZustimmungZurElektrUebermittlungVorvertraglDokumente() {
|
||||||
|
return zustimmungZurElektrUebermittlungVorvertraglDokumente;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZustimmungZurElektrUebermittlungVorvertraglDokumente(Boolean value) {
|
||||||
|
this.zustimmungZurElektrUebermittlungVorvertraglDokumente = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der elektrUebermittlungVorvertraglDokumenteEmail-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getElektrUebermittlungVorvertraglDokumenteEmail() {
|
||||||
|
return elektrUebermittlungVorvertraglDokumenteEmail;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der elektrUebermittlungVorvertraglDokumenteEmail-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setElektrUebermittlungVorvertraglDokumenteEmail(String value) {
|
||||||
|
this.elektrUebermittlungVorvertraglDokumenteEmail = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isZustimmungZurVerwendungDerDatenZuWerbezwecken() {
|
||||||
|
return zustimmungZurVerwendungDerDatenZuWerbezwecken;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZustimmungZurVerwendungDerDatenZuWerbezwecken(boolean value) {
|
||||||
|
this.zustimmungZurVerwendungDerDatenZuWerbezwecken = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für DirectionCd_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="DirectionCd_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="IN"/>
|
||||||
|
* <enumeration value="OUT"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "DirectionCd_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum DirectionCdType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Input-Wert
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
IN,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Output-Wert
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
OUT;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static DirectionCdType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,156 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.activation.DataHandler;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlMimeType;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ zur Übermittlung von Dokumenten als Binary plus Metadaten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für DokumentBinaryData_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="DokumentBinaryData_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
||||||
|
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Groesse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||||
|
* <element name="Datum" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "DokumentBinaryData_Type", propOrder = {
|
||||||
|
"dateiData",
|
||||||
|
"mimetype",
|
||||||
|
"groesse",
|
||||||
|
"datum"
|
||||||
|
})
|
||||||
|
public class DokumentBinaryDataType
|
||||||
|
extends DokumentDataType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "DateiData", required = true)
|
||||||
|
@XmlMimeType("application/octet-stream")
|
||||||
|
protected DataHandler dateiData;
|
||||||
|
@XmlElement(name = "Mimetype", required = true)
|
||||||
|
protected String mimetype;
|
||||||
|
@XmlElement(name = "Groesse")
|
||||||
|
protected Long groesse;
|
||||||
|
@XmlElement(name = "Datum")
|
||||||
|
@XmlSchemaType(name = "dateTime")
|
||||||
|
protected XMLGregorianCalendar datum;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dateiData-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link DataHandler }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DataHandler getDateiData() {
|
||||||
|
return dateiData;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dateiData-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link DataHandler }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDateiData(DataHandler value) {
|
||||||
|
this.dateiData = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mimetype-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMimetype() {
|
||||||
|
return mimetype;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mimetype-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMimetype(String value) {
|
||||||
|
this.mimetype = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der groesse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Long getGroesse() {
|
||||||
|
return groesse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der groesse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGroesse(Long value) {
|
||||||
|
this.groesse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der datum-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getDatum() {
|
||||||
|
return datum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der datum-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDatum(XMLGregorianCalendar value) {
|
||||||
|
this.datum = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Typ zur Übermittlung von Dokumentendaten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für DokumentData_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="DokumentData_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "DokumentData_Type")
|
||||||
|
@XmlSeeAlso({
|
||||||
|
DokumentBinaryDataType.class
|
||||||
|
})
|
||||||
|
public abstract class DokumentDataType {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,309 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.activation.DataHandler;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlMimeType;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ mit Informationen zu einem Dokument (kann auch das Dokument selbst enthalten)
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für DokumentInfo_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="DokumentInfo_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
|
||||||
|
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
|
||||||
|
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Groesse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||||
|
* <element name="Datum" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
|
||||||
|
* <element name="ReferenzWeitereDokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="ArtAusfolgung" minOccurs="0">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||||
|
* <enumeration value="0"/>
|
||||||
|
* <enumeration value="1"/>
|
||||||
|
* <enumeration value="2"/>
|
||||||
|
* <enumeration value="3"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* <element name="Unterschrift" minOccurs="0">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||||
|
* <enumeration value="0"/>
|
||||||
|
* <enumeration value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "DokumentInfo_Type", propOrder = {
|
||||||
|
"content",
|
||||||
|
"name",
|
||||||
|
"documentType",
|
||||||
|
"mimetype",
|
||||||
|
"groesse",
|
||||||
|
"datum",
|
||||||
|
"referenzWeitereDokumente",
|
||||||
|
"artAusfolgung",
|
||||||
|
"unterschrift"
|
||||||
|
})
|
||||||
|
public class DokumentInfoType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Content")
|
||||||
|
@XmlMimeType("application/octet-stream")
|
||||||
|
protected DataHandler content;
|
||||||
|
@XmlElement(name = "Name")
|
||||||
|
protected String name;
|
||||||
|
@XmlElement(name = "DocumentType")
|
||||||
|
protected int documentType;
|
||||||
|
@XmlElement(name = "Mimetype")
|
||||||
|
protected String mimetype;
|
||||||
|
@XmlElement(name = "Groesse")
|
||||||
|
protected Long groesse;
|
||||||
|
@XmlElement(name = "Datum")
|
||||||
|
@XmlSchemaType(name = "dateTime")
|
||||||
|
protected XMLGregorianCalendar datum;
|
||||||
|
@XmlElement(name = "ReferenzWeitereDokumente")
|
||||||
|
protected List<DokumentInfoType> referenzWeitereDokumente;
|
||||||
|
@XmlElement(name = "ArtAusfolgung")
|
||||||
|
protected Short artAusfolgung;
|
||||||
|
@XmlElement(name = "Unterschrift")
|
||||||
|
protected Short unterschrift;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der content-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link DataHandler }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DataHandler getContent() {
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der content-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link DataHandler }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setContent(DataHandler value) {
|
||||||
|
this.content = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der name-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der name-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setName(String value) {
|
||||||
|
this.name = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der documentType-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getDocumentType() {
|
||||||
|
return documentType;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der documentType-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDocumentType(int value) {
|
||||||
|
this.documentType = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mimetype-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMimetype() {
|
||||||
|
return mimetype;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mimetype-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMimetype(String value) {
|
||||||
|
this.mimetype = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der groesse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Long getGroesse() {
|
||||||
|
return groesse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der groesse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGroesse(Long value) {
|
||||||
|
this.groesse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der datum-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getDatum() {
|
||||||
|
return datum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der datum-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDatum(XMLGregorianCalendar value) {
|
||||||
|
this.datum = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the referenzWeitereDokumente property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the referenzWeitereDokumente property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getReferenzWeitereDokumente().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link DokumentInfoType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<DokumentInfoType> getReferenzWeitereDokumente() {
|
||||||
|
if (referenzWeitereDokumente == null) {
|
||||||
|
referenzWeitereDokumente = new ArrayList<DokumentInfoType>();
|
||||||
|
}
|
||||||
|
return this.referenzWeitereDokumente;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der artAusfolgung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Short }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Short getArtAusfolgung() {
|
||||||
|
return artAusfolgung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der artAusfolgung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Short }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setArtAusfolgung(Short value) {
|
||||||
|
this.artAusfolgung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der unterschrift-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Short }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Short getUnterschrift() {
|
||||||
|
return unterschrift;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der unterschrift-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Short }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setUnterschrift(Short value) {
|
||||||
|
this.unterschrift = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,262 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Information zu einem einzelnen Dokument
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für DokumentenReferenz_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="DokumentenReferenz_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Id" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
|
||||||
|
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
|
||||||
|
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Groesse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||||
|
* <element name="Datum" type="{urn:omds20}Datum-Zeit"/>
|
||||||
|
* <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
|
||||||
|
* <element name="ReferenzWeitereDokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "DokumentenReferenz_Type", propOrder = {
|
||||||
|
"id",
|
||||||
|
"name",
|
||||||
|
"documentType",
|
||||||
|
"mimetype",
|
||||||
|
"groesse",
|
||||||
|
"datum",
|
||||||
|
"objektSpezifikation",
|
||||||
|
"referenzWeitereDokumente"
|
||||||
|
})
|
||||||
|
public class DokumentenReferenzType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Id", required = true)
|
||||||
|
protected ElementIdType id;
|
||||||
|
@XmlElement(name = "Name", required = true)
|
||||||
|
protected String name;
|
||||||
|
@XmlElement(name = "DocumentType")
|
||||||
|
protected int documentType;
|
||||||
|
@XmlElement(name = "Mimetype")
|
||||||
|
protected String mimetype;
|
||||||
|
@XmlElement(name = "Groesse")
|
||||||
|
protected Long groesse;
|
||||||
|
@XmlElement(name = "Datum", required = true)
|
||||||
|
@XmlSchemaType(name = "dateTime")
|
||||||
|
protected XMLGregorianCalendar datum;
|
||||||
|
@XmlElement(name = "ObjektSpezifikation")
|
||||||
|
protected ObjektSpezifikationType objektSpezifikation;
|
||||||
|
@XmlElement(name = "ReferenzWeitereDokumente")
|
||||||
|
protected List<DokumentenReferenzType> referenzWeitereDokumente;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der id-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ElementIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ElementIdType getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der id-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ElementIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setId(ElementIdType value) {
|
||||||
|
this.id = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der name-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der name-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setName(String value) {
|
||||||
|
this.name = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der documentType-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getDocumentType() {
|
||||||
|
return documentType;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der documentType-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDocumentType(int value) {
|
||||||
|
this.documentType = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der mimetype-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMimetype() {
|
||||||
|
return mimetype;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der mimetype-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMimetype(String value) {
|
||||||
|
this.mimetype = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der groesse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Long getGroesse() {
|
||||||
|
return groesse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der groesse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Long }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGroesse(Long value) {
|
||||||
|
this.groesse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der datum-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getDatum() {
|
||||||
|
return datum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der datum-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDatum(XMLGregorianCalendar value) {
|
||||||
|
this.datum = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der objektSpezifikation-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ObjektSpezifikationType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjektSpezifikationType getObjektSpezifikation() {
|
||||||
|
return objektSpezifikation;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der objektSpezifikation-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ObjektSpezifikationType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setObjektSpezifikation(ObjektSpezifikationType value) {
|
||||||
|
this.objektSpezifikation = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the referenzWeitereDokumente property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the referenzWeitereDokumente property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getReferenzWeitereDokumente().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link DokumentenReferenzType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<DokumentenReferenzType> getReferenzWeitereDokumente() {
|
||||||
|
if (referenzWeitereDokumente == null) {
|
||||||
|
referenzWeitereDokumente = new ArrayList<DokumentenReferenzType>();
|
||||||
|
}
|
||||||
|
return this.referenzWeitereDokumente;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für einen einzelnen Eintrag einer Schlüsselliste
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für EintragSchluesselliste_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EintragSchluesselliste_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Schluessel" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EintragSchluesselliste_Type", propOrder = {
|
||||||
|
"text",
|
||||||
|
"schluessel"
|
||||||
|
})
|
||||||
|
public class EintragSchluessellisteType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Text", required = true)
|
||||||
|
protected String text;
|
||||||
|
@XmlElement(name = "Schluessel", required = true)
|
||||||
|
protected String schluessel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der text-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getText() {
|
||||||
|
return text;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der text-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setText(String value) {
|
||||||
|
this.text = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der schluessel-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getSchluessel() {
|
||||||
|
return schluessel;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der schluessel-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSchluessel(String value) {
|
||||||
|
this.schluessel = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Einwilligung Bekanntgabe Gesundheitsdaten an VN
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für EinwGesDatenVN_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EinwGesDatenVN_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EinwGesDatenVN_Type")
|
||||||
|
public class EinwGesDatenVNType
|
||||||
|
extends EinwilligungPersDatenType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Einwilligung Sprachaufzeichnung
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für EinwSprachaufz_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EinwSprachaufz_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EinwSprachaufz_Type")
|
||||||
|
public class EinwSprachaufzType
|
||||||
|
extends EinwilligungPersDatenType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Einwilligung Verarbeitung Gesundheitsdaten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für EinwVerarbGesDaten_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EinwVerarbGesDaten_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EinwVerarbGesDaten_Type")
|
||||||
|
public class EinwVerarbGesDatenType
|
||||||
|
extends EinwilligungPersDatenType
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Typ für Einwilligung personenbezogene Daten
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für EinwilligungPersDaten_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="EinwilligungPersDaten_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Einwilligung_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "EinwilligungPersDaten_Type", propOrder = {
|
||||||
|
"personRefLfnr"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
EinwVerarbGesDatenType.class,
|
||||||
|
EinwGesDatenVNType.class,
|
||||||
|
EinwSprachaufzType.class
|
||||||
|
})
|
||||||
|
public abstract class EinwilligungPersDatenType
|
||||||
|
extends EinwilligungType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "PersonRefLfnr")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int personRefLfnr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der personRefLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getPersonRefLfnr() {
|
||||||
|
return personRefLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der personRefLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPersonRefLfnr(int value) {
|
||||||
|
this.personRefLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,96 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Typ für Einwilligung
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Einwilligung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Einwilligung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Zustimmung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||||
|
* <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Einwilligung_Type", propOrder = {
|
||||||
|
"zustimmung",
|
||||||
|
"text"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
EinwilligungPersDatenType.class
|
||||||
|
})
|
||||||
|
public abstract class EinwilligungType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Zustimmung")
|
||||||
|
protected Boolean zustimmung;
|
||||||
|
@XmlElement(name = "Text")
|
||||||
|
protected String text;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zustimmung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Boolean isZustimmung() {
|
||||||
|
return zustimmung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zustimmung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZustimmung(Boolean value) {
|
||||||
|
this.zustimmung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der text-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getText() {
|
||||||
|
return text;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der text-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setText(String value) {
|
||||||
|
this.text = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,164 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ein einzelnes Element einer Fondsauswahl
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ElementFondsauswahl_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ElementFondsauswahl_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <choice>
|
||||||
|
* <element name="ISIN" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
|
||||||
|
* <element name="WKN" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
|
||||||
|
* </choice>
|
||||||
|
* <element name="Prozentanteil" minOccurs="0">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}float">
|
||||||
|
* <minInclusive value="0"/>
|
||||||
|
* <maxInclusive value="100"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* <element name="ZusaetzlicheFondsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheFondsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ElementFondsauswahl_Type", propOrder = {
|
||||||
|
"isin",
|
||||||
|
"wkn",
|
||||||
|
"prozentanteil",
|
||||||
|
"zusaetzlicheFondsdaten"
|
||||||
|
})
|
||||||
|
public class ElementFondsauswahlType {
|
||||||
|
|
||||||
|
@XmlElement(name = "ISIN")
|
||||||
|
protected AttributEnumType isin;
|
||||||
|
@XmlElement(name = "WKN")
|
||||||
|
protected AttributEnumType wkn;
|
||||||
|
@XmlElement(name = "Prozentanteil")
|
||||||
|
protected Float prozentanteil;
|
||||||
|
@XmlElement(name = "ZusaetzlicheFondsdaten")
|
||||||
|
protected List<ZusaetzlicheFondsdatenType> zusaetzlicheFondsdaten;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der isin-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AttributEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributEnumType getISIN() {
|
||||||
|
return isin;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der isin-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AttributEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setISIN(AttributEnumType value) {
|
||||||
|
this.isin = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der wkn-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AttributEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributEnumType getWKN() {
|
||||||
|
return wkn;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der wkn-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AttributEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWKN(AttributEnumType value) {
|
||||||
|
this.wkn = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der prozentanteil-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Float }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Float getProzentanteil() {
|
||||||
|
return prozentanteil;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der prozentanteil-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Float }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProzentanteil(Float value) {
|
||||||
|
this.prozentanteil = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the zusaetzlicheFondsdaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the zusaetzlicheFondsdaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getZusaetzlicheFondsdaten().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ZusaetzlicheFondsdatenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ZusaetzlicheFondsdatenType> getZusaetzlicheFondsdaten() {
|
||||||
|
if (zusaetzlicheFondsdaten == null) {
|
||||||
|
zusaetzlicheFondsdaten = new ArrayList<ZusaetzlicheFondsdatenType>();
|
||||||
|
}
|
||||||
|
return this.zusaetzlicheFondsdaten;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ein Typ für eine Objekt-Id in Verbindung mit einem möglichen Ablaufzeitpunkt und dem Hinweis, ob die Id nur einmalig oder auch mehrmalig verwendet werden kann
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ElementIdType complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ElementIdType">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="idValidUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
|
||||||
|
* <element name="idIsSingleUse" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ElementIdType", propOrder = {
|
||||||
|
"id",
|
||||||
|
"idValidUntil",
|
||||||
|
"idIsSingleUse"
|
||||||
|
})
|
||||||
|
public class ElementIdType {
|
||||||
|
|
||||||
|
@XmlElement(required = true)
|
||||||
|
protected String id;
|
||||||
|
@XmlElement(required = true, nillable = true)
|
||||||
|
@XmlSchemaType(name = "dateTime")
|
||||||
|
protected XMLGregorianCalendar idValidUntil;
|
||||||
|
protected boolean idIsSingleUse;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der id-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der id-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setId(String value) {
|
||||||
|
this.id = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der idValidUntil-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getIdValidUntil() {
|
||||||
|
return idValidUntil;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der idValidUntil-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setIdValidUntil(XMLGregorianCalendar value) {
|
||||||
|
this.idValidUntil = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der idIsSingleUse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isIdIsSingleUse() {
|
||||||
|
return idIsSingleUse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der idIsSingleUse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setIdIsSingleUse(boolean value) {
|
||||||
|
this.idIsSingleUse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,187 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.TarifLebenType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.LeistungsartUnfallType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Basistyp für ein Elementarprodukt, 2. Generation
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ElementarproduktGenerisch_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ElementarproduktGenerisch_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Eingeschlossen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="EinschlussAenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||||
|
* <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Versicherungssumme" type="{urn:omds20}decimal14_2" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = {
|
||||||
|
"eingeschlossen",
|
||||||
|
"einschlussAenderbar",
|
||||||
|
"attributMetadaten",
|
||||||
|
"beschreibungTxt",
|
||||||
|
"versicherungssumme"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
LeistungsartUnfallType.class,
|
||||||
|
TarifLebenType.class,
|
||||||
|
ElementarproduktSachPrivatType.class
|
||||||
|
})
|
||||||
|
public abstract class ElementarproduktGenerischType
|
||||||
|
extends ElementarproduktType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Eingeschlossen")
|
||||||
|
protected boolean eingeschlossen;
|
||||||
|
@XmlElement(name = "EinschlussAenderbar")
|
||||||
|
protected Boolean einschlussAenderbar;
|
||||||
|
@XmlElement(name = "AttributMetadaten")
|
||||||
|
protected List<AttributMetadatenType> attributMetadaten;
|
||||||
|
@XmlElement(name = "BeschreibungTxt")
|
||||||
|
protected String beschreibungTxt;
|
||||||
|
@XmlElement(name = "Versicherungssumme")
|
||||||
|
protected BigDecimal versicherungssumme;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der eingeschlossen-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isEingeschlossen() {
|
||||||
|
return eingeschlossen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der eingeschlossen-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEingeschlossen(boolean value) {
|
||||||
|
this.eingeschlossen = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der einschlussAenderbar-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Boolean isEinschlussAenderbar() {
|
||||||
|
return einschlussAenderbar;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der einschlussAenderbar-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEinschlussAenderbar(Boolean value) {
|
||||||
|
this.einschlussAenderbar = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the attributMetadaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the attributMetadaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAttributMetadaten().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link AttributMetadatenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<AttributMetadatenType> getAttributMetadaten() {
|
||||||
|
if (attributMetadaten == null) {
|
||||||
|
attributMetadaten = new ArrayList<AttributMetadatenType>();
|
||||||
|
}
|
||||||
|
return this.attributMetadaten;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBeschreibungTxt() {
|
||||||
|
return beschreibungTxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBeschreibungTxt(String value) {
|
||||||
|
this.beschreibungTxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versicherungssumme-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getVersicherungssumme() {
|
||||||
|
return versicherungssumme;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versicherungssumme-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersicherungssumme(BigDecimal value) {
|
||||||
|
this.versicherungssumme = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,141 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.ElementarproduktKfzType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Basistyp für ein Elementarprodukt
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Elementarprodukt_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Elementarprodukt_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
|
||||||
|
* <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
|
* <element name="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Elementarprodukt_Type", propOrder = {
|
||||||
|
"vtgBeg",
|
||||||
|
"refSicherstellungLfnr",
|
||||||
|
"zusaetzlicheElementarproduktdaten"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
ElementarproduktGenerischType.class,
|
||||||
|
ElementarproduktKfzType.class,
|
||||||
|
VerkehrsrechtsschutzKfzType.class
|
||||||
|
})
|
||||||
|
public abstract class ElementarproduktType
|
||||||
|
extends ProduktbausteinType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "VtgBeg")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar vtgBeg;
|
||||||
|
@XmlElement(name = "RefSicherstellungLfnr")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer refSicherstellungLfnr;
|
||||||
|
@XmlElement(name = "ZusaetzlicheElementarproduktdaten")
|
||||||
|
protected List<ZusaetzlicheElementarproduktdatenType> zusaetzlicheElementarproduktdaten;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgBeg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getVtgBeg() {
|
||||||
|
return vtgBeg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgBeg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgBeg(XMLGregorianCalendar value) {
|
||||||
|
this.vtgBeg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getRefSicherstellungLfnr() {
|
||||||
|
return refSicherstellungLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRefSicherstellungLfnr(Integer value) {
|
||||||
|
this.refSicherstellungLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the zusaetzlicheElementarproduktdaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the zusaetzlicheElementarproduktdaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getZusaetzlicheElementarproduktdaten().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ZusaetzlicheElementarproduktdatenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ZusaetzlicheElementarproduktdatenType> getZusaetzlicheElementarproduktdaten() {
|
||||||
|
if (zusaetzlicheElementarproduktdaten == null) {
|
||||||
|
zusaetzlicheElementarproduktdaten = new ArrayList<ZusaetzlicheElementarproduktdatenType>();
|
||||||
|
}
|
||||||
|
return this.zusaetzlicheElementarproduktdaten;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,94 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Einfache Implementierung einer zu ersetzenden Polizze mit Angabe eines Änderungsgrunds
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ErsatzpolizzeMitAendGrund_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ErsatzpolizzeMitAendGrund_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="AendGrundCd" type="{urn:omds20}AendGrundCd_Type"/>
|
||||||
|
* <element name="AendGrundbez" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ErsatzpolizzeMitAendGrund_Type", propOrder = {
|
||||||
|
"aendGrundCd",
|
||||||
|
"aendGrundbez"
|
||||||
|
})
|
||||||
|
public class ErsatzpolizzeMitAendGrundType
|
||||||
|
extends ErsatzpolizzeType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "AendGrundCd", required = true)
|
||||||
|
protected String aendGrundCd;
|
||||||
|
@XmlElement(name = "AendGrundbez")
|
||||||
|
protected String aendGrundbez;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aendGrundCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAendGrundCd() {
|
||||||
|
return aendGrundCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aendGrundCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAendGrundCd(String value) {
|
||||||
|
this.aendGrundCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aendGrundbez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAendGrundbez() {
|
||||||
|
return aendGrundbez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aendGrundbez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAendGrundbez(String value) {
|
||||||
|
this.aendGrundbez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,96 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Beschreibung einer durch Konvertierung zu ersetzenden Polizze
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Ersatzpolizze_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Ersatzpolizze_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
|
||||||
|
* <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Ersatzpolizze_Type", propOrder = {
|
||||||
|
"polizzennr",
|
||||||
|
"vertragsID"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
ErsatzpolizzeMitAendGrundType.class
|
||||||
|
})
|
||||||
|
public abstract class ErsatzpolizzeType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Polizzennr", required = true)
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlElement(name = "VertragsID")
|
||||||
|
protected String vertragsID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polizzennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolizzennr() {
|
||||||
|
return polizzennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polizzennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolizzennr(String value) {
|
||||||
|
this.polizzennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vertragsID-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVertragsID() {
|
||||||
|
return vertragsID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vertragsID-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVertragsID(String value) {
|
||||||
|
this.vertragsID = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für Ersatzpolizzen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Ersatzpolizzen_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Ersatzpolizzen_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
|
||||||
|
* <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
|
||||||
|
* <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Ersatzpolizzen_Type", propOrder = {
|
||||||
|
"ersatzpolizzennummer1",
|
||||||
|
"ersatzpolizzennummer2",
|
||||||
|
"ersatzpolizzennummer3"
|
||||||
|
})
|
||||||
|
public class ErsatzpolizzenType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Ersatzpolizzennummer1", required = true)
|
||||||
|
protected String ersatzpolizzennummer1;
|
||||||
|
@XmlElement(name = "Ersatzpolizzennummer2")
|
||||||
|
protected String ersatzpolizzennummer2;
|
||||||
|
@XmlElement(name = "Ersatzpolizzennummer3")
|
||||||
|
protected String ersatzpolizzennummer3;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getErsatzpolizzennummer1() {
|
||||||
|
return ersatzpolizzennummer1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setErsatzpolizzennummer1(String value) {
|
||||||
|
this.ersatzpolizzennummer1 = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getErsatzpolizzennummer2() {
|
||||||
|
return ersatzpolizzennummer2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setErsatzpolizzennummer2(String value) {
|
||||||
|
this.ersatzpolizzennummer2 = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getErsatzpolizzennummer3() {
|
||||||
|
return ersatzpolizzennummer3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setErsatzpolizzennummer3(String value) {
|
||||||
|
this.ersatzpolizzennummer3 = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fragen FATCA bei natürlichen Personen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für FATCA_NatPersonType complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="FATCA_NatPersonType">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="US_Indizien" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="US_Steuerpflicht" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "FATCA_NatPersonType", propOrder = {
|
||||||
|
"usIndizien",
|
||||||
|
"usSteuerpflicht"
|
||||||
|
})
|
||||||
|
public class FATCANatPersonType {
|
||||||
|
|
||||||
|
@XmlElement(name = "US_Indizien")
|
||||||
|
protected boolean usIndizien;
|
||||||
|
@XmlElement(name = "US_Steuerpflicht")
|
||||||
|
protected boolean usSteuerpflicht;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der usIndizien-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isUSIndizien() {
|
||||||
|
return usIndizien;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der usIndizien-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setUSIndizien(boolean value) {
|
||||||
|
this.usIndizien = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der usSteuerpflicht-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isUSSteuerpflicht() {
|
||||||
|
return usSteuerpflicht;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der usSteuerpflicht-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setUSSteuerpflicht(boolean value) {
|
||||||
|
this.usSteuerpflicht = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,132 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fragen FATCA bei sonstigen Personen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für FATCA_SonstPersonType complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="FATCA_SonstPersonType">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="LandFirmensitz" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
|
||||||
|
* <element name="GIIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="KonzessionFinanzen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="NichtFinanzielleDienstleistungen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "FATCA_SonstPersonType", propOrder = {
|
||||||
|
"landFirmensitz",
|
||||||
|
"giin",
|
||||||
|
"konzessionFinanzen",
|
||||||
|
"nichtFinanzielleDienstleistungen"
|
||||||
|
})
|
||||||
|
public class FATCASonstPersonType {
|
||||||
|
|
||||||
|
@XmlElement(name = "LandFirmensitz", required = true)
|
||||||
|
protected AttributEnumType landFirmensitz;
|
||||||
|
@XmlElement(name = "GIIN")
|
||||||
|
protected String giin;
|
||||||
|
@XmlElement(name = "KonzessionFinanzen")
|
||||||
|
protected boolean konzessionFinanzen;
|
||||||
|
@XmlElement(name = "NichtFinanzielleDienstleistungen")
|
||||||
|
protected boolean nichtFinanzielleDienstleistungen;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der landFirmensitz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AttributEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributEnumType getLandFirmensitz() {
|
||||||
|
return landFirmensitz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der landFirmensitz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AttributEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLandFirmensitz(AttributEnumType value) {
|
||||||
|
this.landFirmensitz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der giin-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getGIIN() {
|
||||||
|
return giin;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der giin-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGIIN(String value) {
|
||||||
|
this.giin = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der konzessionFinanzen-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isKonzessionFinanzen() {
|
||||||
|
return konzessionFinanzen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der konzessionFinanzen-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKonzessionFinanzen(boolean value) {
|
||||||
|
this.konzessionFinanzen = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der nichtFinanzielleDienstleistungen-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isNichtFinanzielleDienstleistungen() {
|
||||||
|
return nichtFinanzielleDienstleistungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der nichtFinanzielleDienstleistungen-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNichtFinanzielleDienstleistungen(boolean value) {
|
||||||
|
this.nichtFinanzielleDienstleistungen = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fragen gemäß FATCA
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für FATCA_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="FATCA_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <choice>
|
||||||
|
* <element name="US_TIN" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="FATCA_NatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_NatPersonType"/>
|
||||||
|
* <element name="FATCA_SonstPerson" type="{urn:omds3CommonServiceTypes-1-1-0}FATCA_SonstPersonType"/>
|
||||||
|
* </choice>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "FATCA_Type", propOrder = {
|
||||||
|
"ustin",
|
||||||
|
"fatcaNatPerson",
|
||||||
|
"fatcaSonstPerson"
|
||||||
|
})
|
||||||
|
public class FATCAType {
|
||||||
|
|
||||||
|
@XmlElement(name = "US_TIN")
|
||||||
|
protected String ustin;
|
||||||
|
@XmlElement(name = "FATCA_NatPerson")
|
||||||
|
protected FATCANatPersonType fatcaNatPerson;
|
||||||
|
@XmlElement(name = "FATCA_SonstPerson")
|
||||||
|
protected FATCASonstPersonType fatcaSonstPerson;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ustin-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getUSTIN() {
|
||||||
|
return ustin;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ustin-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setUSTIN(String value) {
|
||||||
|
this.ustin = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der fatcaNatPerson-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link FATCANatPersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FATCANatPersonType getFATCANatPerson() {
|
||||||
|
return fatcaNatPerson;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der fatcaNatPerson-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link FATCANatPersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFATCANatPerson(FATCANatPersonType value) {
|
||||||
|
this.fatcaNatPerson = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der fatcaSonstPerson-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link FATCASonstPersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FATCASonstPersonType getFATCASonstPerson() {
|
||||||
|
return fatcaSonstPerson;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der fatcaSonstPerson-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link FATCASonstPersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFATCASonstPerson(FATCASonstPersonType value) {
|
||||||
|
this.fatcaSonstPerson = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,863 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.Entsch2Type;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Basisklasse für alle Fahrzeuge in der Kfz-Versicherung
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Fahrzeug_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Fahrzeug_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
|
||||||
|
* <attribute name="Marke">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="40"/>
|
||||||
|
* </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="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" type="{urn:omds20}AntriebsArtCd_Type" />
|
||||||
|
* <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Fahrgestnr">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="20"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <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">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="12"/>
|
||||||
|
* <minLength value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="Listenpreis" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
|
||||||
|
* <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
|
||||||
|
* <attribute name="AufbauNatC" type="{urn:omds3CommonServiceTypes-1-1-0}AufbauNatC_Type" />
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Fahrzeug_Type", propOrder = {
|
||||||
|
"zulassungsdaten"
|
||||||
|
})
|
||||||
|
public class FahrzeugType
|
||||||
|
extends VersichertesInteresseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Zulassungsdaten")
|
||||||
|
protected ZulassungsdatenType zulassungsdaten;
|
||||||
|
@XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String fzgArtCd;
|
||||||
|
@XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String marke;
|
||||||
|
@XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String handelsbez;
|
||||||
|
@XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String typVarVer;
|
||||||
|
@XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected Entsch2Type leasingkz;
|
||||||
|
@XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer modelljahr;
|
||||||
|
@XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer leistung;
|
||||||
|
@XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer plaetze;
|
||||||
|
@XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected BigDecimal nutzlast;
|
||||||
|
@XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer hubraum;
|
||||||
|
@XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String antriebsArtCd;
|
||||||
|
@XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer co2Ausstoss;
|
||||||
|
@XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String fahrgestnr;
|
||||||
|
@XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String motornr;
|
||||||
|
@XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String natCode;
|
||||||
|
@XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String verwendzweckCd;
|
||||||
|
@XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected XMLGregorianCalendar erstzulassdat;
|
||||||
|
@XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String landesCd;
|
||||||
|
@XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String polKennz;
|
||||||
|
@XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer tueren;
|
||||||
|
@XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer baujahr;
|
||||||
|
@XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer gesamtgewicht;
|
||||||
|
@XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected BigDecimal listenpreis;
|
||||||
|
@XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected BigDecimal sonderausstattung;
|
||||||
|
@XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer eigengewicht;
|
||||||
|
@XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected XMLGregorianCalendar zulassdatHalter;
|
||||||
|
@XmlAttribute(name = "AufbauNatC", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
protected String aufbauNatC;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zulassungsdaten-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ZulassungsdatenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZulassungsdatenType getZulassungsdaten() {
|
||||||
|
return zulassungsdaten;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zulassungsdaten-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ZulassungsdatenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZulassungsdaten(ZulassungsdatenType value) {
|
||||||
|
this.zulassungsdaten = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der fzgArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFzgArtCd() {
|
||||||
|
return fzgArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der fzgArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFzgArtCd(String value) {
|
||||||
|
this.fzgArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der marke-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMarke() {
|
||||||
|
return marke;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der marke-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMarke(String value) {
|
||||||
|
this.marke = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der handelsbez-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getHandelsbez() {
|
||||||
|
return handelsbez;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der handelsbez-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHandelsbez(String value) {
|
||||||
|
this.handelsbez = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der typVarVer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getTypVarVer() {
|
||||||
|
return typVarVer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der typVarVer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setTypVarVer(String value) {
|
||||||
|
this.typVarVer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der leasingkz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Entsch2Type getLeasingkz() {
|
||||||
|
return leasingkz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der leasingkz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Entsch2Type }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLeasingkz(Entsch2Type value) {
|
||||||
|
this.leasingkz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der modelljahr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getModelljahr() {
|
||||||
|
return modelljahr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der modelljahr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setModelljahr(Integer value) {
|
||||||
|
this.modelljahr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der leistung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getLeistung() {
|
||||||
|
return leistung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der leistung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLeistung(Integer value) {
|
||||||
|
this.leistung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der plaetze-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getPlaetze() {
|
||||||
|
return plaetze;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der plaetze-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPlaetze(Integer value) {
|
||||||
|
this.plaetze = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der nutzlast-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getNutzlast() {
|
||||||
|
return nutzlast;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der nutzlast-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNutzlast(BigDecimal value) {
|
||||||
|
this.nutzlast = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hubraum-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getHubraum() {
|
||||||
|
return hubraum;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hubraum-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHubraum(Integer value) {
|
||||||
|
this.hubraum = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antriebsArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAntriebsArtCd() {
|
||||||
|
return antriebsArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antriebsArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntriebsArtCd(String value) {
|
||||||
|
this.antriebsArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der co2Ausstoss-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getCO2Ausstoss() {
|
||||||
|
return co2Ausstoss;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der co2Ausstoss-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setCO2Ausstoss(Integer value) {
|
||||||
|
this.co2Ausstoss = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der fahrgestnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getFahrgestnr() {
|
||||||
|
return fahrgestnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der fahrgestnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFahrgestnr(String value) {
|
||||||
|
this.fahrgestnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der motornr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getMotornr() {
|
||||||
|
return motornr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der motornr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMotornr(String value) {
|
||||||
|
this.motornr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der natCode-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getNatCode() {
|
||||||
|
return natCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der natCode-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNatCode(String value) {
|
||||||
|
this.natCode = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verwendzweckCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVerwendzweckCd() {
|
||||||
|
return verwendzweckCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verwendzweckCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerwendzweckCd(String value) {
|
||||||
|
this.verwendzweckCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der erstzulassdat-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getErstzulassdat() {
|
||||||
|
return erstzulassdat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der erstzulassdat-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setErstzulassdat(XMLGregorianCalendar value) {
|
||||||
|
this.erstzulassdat = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der landesCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getLandesCd() {
|
||||||
|
return landesCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der landesCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLandesCd(String value) {
|
||||||
|
this.landesCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polKennz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolKennz() {
|
||||||
|
return polKennz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polKennz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolKennz(String value) {
|
||||||
|
this.polKennz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der tueren-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getTueren() {
|
||||||
|
return tueren;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der tueren-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setTueren(Integer value) {
|
||||||
|
this.tueren = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der baujahr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getBaujahr() {
|
||||||
|
return baujahr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der baujahr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBaujahr(Integer value) {
|
||||||
|
this.baujahr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gesamtgewicht-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getGesamtgewicht() {
|
||||||
|
return gesamtgewicht;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gesamtgewicht-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGesamtgewicht(Integer value) {
|
||||||
|
this.gesamtgewicht = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der listenpreis-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getListenpreis() {
|
||||||
|
return listenpreis;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der listenpreis-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setListenpreis(BigDecimal value) {
|
||||||
|
this.listenpreis = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sonderausstattung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getSonderausstattung() {
|
||||||
|
return sonderausstattung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sonderausstattung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSonderausstattung(BigDecimal value) {
|
||||||
|
this.sonderausstattung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der eigengewicht-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getEigengewicht() {
|
||||||
|
return eigengewicht;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der eigengewicht-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEigengewicht(Integer value) {
|
||||||
|
this.eigengewicht = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zulassdatHalter-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getZulassdatHalter() {
|
||||||
|
return zulassdatHalter;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zulassdatHalter-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZulassdatHalter(XMLGregorianCalendar value) {
|
||||||
|
this.zulassdatHalter = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der aufbauNatC-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getAufbauNatC() {
|
||||||
|
return aufbauNatC;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der aufbauNatC-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAufbauNatC(String value) {
|
||||||
|
this.aufbauNatC = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,165 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fragen gemäß dem Gemeinsamen Meldestandard-Gesetz
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für GMSG_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="GMSG_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="SteuerlichAnsaessig" maxOccurs="unbounded">
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
|
||||||
|
* <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "GMSG_Type", propOrder = {
|
||||||
|
"steuerlichAnsaessig"
|
||||||
|
})
|
||||||
|
public class GMSGType {
|
||||||
|
|
||||||
|
@XmlElement(name = "SteuerlichAnsaessig", required = true)
|
||||||
|
protected List<GMSGType.SteuerlichAnsaessig> steuerlichAnsaessig;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the steuerlichAnsaessig property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the steuerlichAnsaessig property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getSteuerlichAnsaessig().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link GMSGType.SteuerlichAnsaessig }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<GMSGType.SteuerlichAnsaessig> getSteuerlichAnsaessig() {
|
||||||
|
if (steuerlichAnsaessig == null) {
|
||||||
|
steuerlichAnsaessig = new ArrayList<GMSGType.SteuerlichAnsaessig>();
|
||||||
|
}
|
||||||
|
return this.steuerlichAnsaessig;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für anonymous complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType>
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Land" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
|
||||||
|
* <element name="Steuernummer" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "", propOrder = {
|
||||||
|
"land",
|
||||||
|
"steuernummer"
|
||||||
|
})
|
||||||
|
public static class SteuerlichAnsaessig {
|
||||||
|
|
||||||
|
@XmlElement(name = "Land", required = true)
|
||||||
|
protected AttributEnumType land;
|
||||||
|
@XmlElement(name = "Steuernummer")
|
||||||
|
protected AttributStringType steuernummer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der land-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AttributEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributEnumType getLand() {
|
||||||
|
return land;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der land-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AttributEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setLand(AttributEnumType value) {
|
||||||
|
this.land = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der steuernummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AttributStringType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributStringType getSteuernummer() {
|
||||||
|
return steuernummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der steuernummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AttributStringType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSteuernummer(AttributStringType value) {
|
||||||
|
this.steuernummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für GeschaeftsobjektArt_Type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="GeschaeftsobjektArt_Type">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="VTG"/>
|
||||||
|
* <enumeration value="SC"/>
|
||||||
|
* <enumeration value="AN"/>
|
||||||
|
* <enumeration value="IB"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "GeschaeftsobjektArt_Type")
|
||||||
|
@XmlEnum
|
||||||
|
public enum GeschaeftsobjektArtType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Vertrag
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VTG,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Schaden
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
SC,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Antrag
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
AN,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interventionsbericht
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
IB;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GeschaeftsobjektArtType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,148 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gläubiger einer Sicherstellung
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für GlaeubigerSicherstellung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="GlaeubigerSicherstellung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Institut" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="PLZ" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Strasse" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Vertragsnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "GlaeubigerSicherstellung_Type", propOrder = {
|
||||||
|
"institut",
|
||||||
|
"plz",
|
||||||
|
"strasse",
|
||||||
|
"vertragsnummer"
|
||||||
|
})
|
||||||
|
public class GlaeubigerSicherstellungType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Institut", required = true)
|
||||||
|
protected String institut;
|
||||||
|
@XmlElement(name = "PLZ", required = true)
|
||||||
|
protected String plz;
|
||||||
|
@XmlElement(name = "Strasse", required = true)
|
||||||
|
protected String strasse;
|
||||||
|
@XmlElement(name = "Vertragsnummer", required = true)
|
||||||
|
protected String vertragsnummer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der institut-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getInstitut() {
|
||||||
|
return institut;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der institut-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setInstitut(String value) {
|
||||||
|
this.institut = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der plz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPLZ() {
|
||||||
|
return plz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der plz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPLZ(String value) {
|
||||||
|
this.plz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der strasse-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getStrasse() {
|
||||||
|
return strasse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der strasse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setStrasse(String value) {
|
||||||
|
this.strasse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vertragsnummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVertragsnummer() {
|
||||||
|
return vertragsnummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vertragsnummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVertragsnummer(String value) {
|
||||||
|
this.vertragsnummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,177 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.math.BigInteger;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden.
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Kontierung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Kontierung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||||
|
* <element name="Vermittlername" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||||
|
* <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||||
|
* <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Kontierung_Type", propOrder = {
|
||||||
|
"vermittlernummer",
|
||||||
|
"vermittlername",
|
||||||
|
"abschluss",
|
||||||
|
"folge",
|
||||||
|
"betreuung"
|
||||||
|
})
|
||||||
|
public class KontierungType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Vermittlernummer", required = true)
|
||||||
|
protected String vermittlernummer;
|
||||||
|
@XmlElement(name = "Vermittlername")
|
||||||
|
protected String vermittlername;
|
||||||
|
@XmlElement(name = "Abschluss", required = true)
|
||||||
|
protected BigInteger abschluss;
|
||||||
|
@XmlElement(name = "Folge", required = true)
|
||||||
|
protected BigInteger folge;
|
||||||
|
@XmlElement(name = "Betreuung", required = true)
|
||||||
|
protected BigInteger betreuung;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vermittlernummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVermittlernummer() {
|
||||||
|
return vermittlernummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vermittlernummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVermittlernummer(String value) {
|
||||||
|
this.vermittlernummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vermittlername-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVermittlername() {
|
||||||
|
return vermittlername;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vermittlername-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVermittlername(String value) {
|
||||||
|
this.vermittlername = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der abschluss-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigInteger getAbschluss() {
|
||||||
|
return abschluss;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der abschluss-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAbschluss(BigInteger value) {
|
||||||
|
this.abschluss = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der folge-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigInteger getFolge() {
|
||||||
|
return folge;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der folge-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setFolge(BigInteger value) {
|
||||||
|
this.folge = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der betreuung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigInteger getBetreuung() {
|
||||||
|
return betreuung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der betreuung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBetreuung(BigInteger value) {
|
||||||
|
this.betreuung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,97 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für KostenFixOderProzent_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="KostenFixOderProzent_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <choice>
|
||||||
|
* <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
|
||||||
|
* <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte"/>
|
||||||
|
* </choice>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "KostenFixOderProzent_Type", propOrder = {
|
||||||
|
"absoluterBetrag",
|
||||||
|
"prozentVs"
|
||||||
|
})
|
||||||
|
public class KostenFixOderProzentType {
|
||||||
|
|
||||||
|
@XmlElement(name = "AbsoluterBetrag")
|
||||||
|
protected BigDecimal absoluterBetrag;
|
||||||
|
@XmlElement(name = "ProzentVs")
|
||||||
|
@XmlSchemaType(name = "unsignedByte")
|
||||||
|
protected Short prozentVs;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der absoluterBetrag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getAbsoluterBetrag() {
|
||||||
|
return absoluterBetrag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der absoluterBetrag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAbsoluterBetrag(BigDecimal value) {
|
||||||
|
this.absoluterBetrag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der prozentVs-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Short }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Short getProzentVs() {
|
||||||
|
return prozentVs;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der prozentVs-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Short }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProzentVs(Short value) {
|
||||||
|
this.prozentVs = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,189 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ Kreditkarte
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Kreditkarte_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Kreditkarte_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||||
|
* <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||||
|
* <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||||
|
* <attribute name="Pruefziffer" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||||
|
* <totalDigits value="3"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="AblaufMonat" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||||
|
* <totalDigits value="2"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* <attribute name="AblaufJahr" use="required">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||||
|
* <totalDigits value="2"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </attribute>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Kreditkarte_Type")
|
||||||
|
public class KreditkarteType {
|
||||||
|
|
||||||
|
@XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected String gesellschaft;
|
||||||
|
@XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected String kartennummer;
|
||||||
|
@XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected String inhaber;
|
||||||
|
@XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected long pruefziffer;
|
||||||
|
@XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected short ablaufMonat;
|
||||||
|
@XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected short ablaufJahr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gesellschaft-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getGesellschaft() {
|
||||||
|
return gesellschaft;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gesellschaft-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGesellschaft(String value) {
|
||||||
|
this.gesellschaft = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der kartennummer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getKartennummer() {
|
||||||
|
return kartennummer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der kartennummer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setKartennummer(String value) {
|
||||||
|
this.kartennummer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der inhaber-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getInhaber() {
|
||||||
|
return inhaber;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der inhaber-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setInhaber(String value) {
|
||||||
|
this.inhaber = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der pruefziffer-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public long getPruefziffer() {
|
||||||
|
return pruefziffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der pruefziffer-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPruefziffer(long value) {
|
||||||
|
this.pruefziffer = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ablaufMonat-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public short getAblaufMonat() {
|
||||||
|
return ablaufMonat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ablaufMonat-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAblaufMonat(short value) {
|
||||||
|
this.ablaufMonat = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der ablaufJahr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public short getAblaufJahr() {
|
||||||
|
return ablaufJahr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ablaufJahr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAblaufJahr(short value) {
|
||||||
|
this.ablaufJahr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,857 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.JAXBElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementDecl;
|
||||||
|
import javax.xml.bind.annotation.XmlRegistry;
|
||||||
|
import javax.xml.namespace.QName;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This object contains factory methods for each
|
||||||
|
* Java content interface and Java element interface
|
||||||
|
* generated in the at.vvo.omds.types.omds3Types.r1_8_0.common package.
|
||||||
|
* <p>An ObjectFactory allows you to programatically
|
||||||
|
* construct new instances of the Java representation
|
||||||
|
* for XML content. The Java representation of XML
|
||||||
|
* content can consist of schema derived interfaces
|
||||||
|
* and classes representing the binding of schema
|
||||||
|
* type definitions, element declarations and model
|
||||||
|
* groups. Factory methods for each of these are
|
||||||
|
* provided in this class.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlRegistry
|
||||||
|
public class ObjectFactory {
|
||||||
|
|
||||||
|
private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault");
|
||||||
|
private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd");
|
||||||
|
private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId");
|
||||||
|
private final static QName _Person_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Person");
|
||||||
|
private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_8_0.common
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjectFactory() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link GMSGType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GMSGType createGMSGType() {
|
||||||
|
return new GMSGType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZahlwegType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZahlwegType createZahlwegType() {
|
||||||
|
return new ZahlwegType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ProzessDokumentType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ProzessDokumentType createProzessDokumentType() {
|
||||||
|
return new ProzessDokumentType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjektIdType createObjektIdType() {
|
||||||
|
return new ObjektIdType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ServiceFault }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ServiceFault createServiceFault() {
|
||||||
|
return new ServiceFault();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PersonType createPersonType() {
|
||||||
|
return new PersonType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AdresseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AdresseType createAdresseType() {
|
||||||
|
return new AdresseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AgentFilterType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AgentFilterType createAgentFilterType() {
|
||||||
|
return new AgentFilterType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ElementIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ElementIdType createElementIdType() {
|
||||||
|
return new ElementIdType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ResponseStatusType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ResponseStatusType createResponseStatusType() {
|
||||||
|
return new ResponseStatusType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link Referenz }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Referenz createReferenz() {
|
||||||
|
return new Referenz();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link DateianhangType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DateianhangType createDateianhangType() {
|
||||||
|
return new DateianhangType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link DokumentBinaryDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DokumentBinaryDataType createDokumentBinaryDataType() {
|
||||||
|
return new DokumentBinaryDataType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AutorisierungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AutorisierungType createAutorisierungType() {
|
||||||
|
return new AutorisierungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AutorisierungsAnforderungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AutorisierungsAnforderungType createAutorisierungsAnforderungType() {
|
||||||
|
return new AutorisierungsAnforderungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AutorisierungsartType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AutorisierungsartType createAutorisierungsartType() {
|
||||||
|
return new AutorisierungsartType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ProzessDokRequirementType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ProzessDokRequirementType createProzessDokRequirementType() {
|
||||||
|
return new ProzessDokRequirementType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ProzessDokToReturnType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ProzessDokToReturnType createProzessDokToReturnType() {
|
||||||
|
return new ProzessDokToReturnType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ProzessDokHandoutType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ProzessDokHandoutType createProzessDokHandoutType() {
|
||||||
|
return new ProzessDokHandoutType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link KontierungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public KontierungType createKontierungType() {
|
||||||
|
return new KontierungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZusatzproduktGenerischType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZusatzproduktGenerischType createZusatzproduktGenerischType() {
|
||||||
|
return new ZusatzproduktGenerischType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BeteiligtePersonVertragType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BeteiligtePersonVertragType createBeteiligtePersonVertragType() {
|
||||||
|
return new BeteiligtePersonVertragType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PraemieType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PraemieType createPraemieType() {
|
||||||
|
return new PraemieType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VersicherungssteuerType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VersicherungssteuerType createVersicherungssteuerType() {
|
||||||
|
return new VersicherungssteuerType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link TechnicalKeyValueType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public TechnicalKeyValueType createTechnicalKeyValueType() {
|
||||||
|
return new TechnicalKeyValueType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VertragspersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VertragspersonType createVertragspersonType() {
|
||||||
|
return new VertragspersonType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VinkulierungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VinkulierungType createVinkulierungType() {
|
||||||
|
return new VinkulierungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VinkularglaeubigerType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VinkularglaeubigerType createVinkularglaeubigerType() {
|
||||||
|
return new VinkularglaeubigerType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BezugsrechtType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BezugsrechtType createBezugsrechtType() {
|
||||||
|
return new BezugsrechtType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BezugsberechtigungGesetzlicheErbenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BezugsberechtigungGesetzlicheErbenType createBezugsberechtigungGesetzlicheErbenType() {
|
||||||
|
return new BezugsberechtigungGesetzlicheErbenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BezugsberechtigungTestamentarischeErbenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BezugsberechtigungTestamentarischeErbenType createBezugsberechtigungTestamentarischeErbenType() {
|
||||||
|
return new BezugsberechtigungTestamentarischeErbenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BezugsberechtigungUeberbringerType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BezugsberechtigungUeberbringerType createBezugsberechtigungUeberbringerType() {
|
||||||
|
return new BezugsberechtigungUeberbringerType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BezugsberechtigungNamentlich }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BezugsberechtigungNamentlich createBezugsberechtigungNamentlich() {
|
||||||
|
return new BezugsberechtigungNamentlich();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PersonNamentlichesBezugsrechtType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PersonNamentlichesBezugsrechtType createPersonNamentlichesBezugsrechtType() {
|
||||||
|
return new PersonNamentlichesBezugsrechtType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BezugsberechtigungVersicherungsnehmerType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BezugsberechtigungVersicherungsnehmerType createBezugsberechtigungVersicherungsnehmerType() {
|
||||||
|
return new BezugsberechtigungVersicherungsnehmerType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BezugsberechtigungVersichertePersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BezugsberechtigungVersichertePersonType createBezugsberechtigungVersichertePersonType() {
|
||||||
|
return new BezugsberechtigungVersichertePersonType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BezugsberechtigungIndividuell }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BezugsberechtigungIndividuell createBezugsberechtigungIndividuell() {
|
||||||
|
return new BezugsberechtigungIndividuell();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BonusMalusSystemType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BonusMalusSystemType createBonusMalusSystemType() {
|
||||||
|
return new BonusMalusSystemType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link OffeneSchaedenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public OffeneSchaedenType createOffeneSchaedenType() {
|
||||||
|
return new OffeneSchaedenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link OffenerSchadenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public OffenerSchadenType createOffenerSchadenType() {
|
||||||
|
return new OffenerSchadenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VorversicherungenImplType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VorversicherungenImplType createVorversicherungenImplType() {
|
||||||
|
return new VorversicherungenImplType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VorversicherungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VorversicherungType createVorversicherungType() {
|
||||||
|
return new VorversicherungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VorversicherungenDetailType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VorversicherungenDetailType createVorversicherungenDetailType() {
|
||||||
|
return new VorversicherungenDetailType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link DatenverwendungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DatenverwendungType createDatenverwendungType() {
|
||||||
|
return new DatenverwendungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ErsatzpolizzenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ErsatzpolizzenType createErsatzpolizzenType() {
|
||||||
|
return new ErsatzpolizzenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ErsatzpolizzeMitAendGrundType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ErsatzpolizzeMitAendGrundType createErsatzpolizzeMitAendGrundType() {
|
||||||
|
return new ErsatzpolizzeMitAendGrundType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link DokumentInfoType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DokumentInfoType createDokumentInfoType() {
|
||||||
|
return new DokumentInfoType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZahlungsdatenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZahlungsdatenType createZahlungsdatenType() {
|
||||||
|
return new ZahlungsdatenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link KreditkarteType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public KreditkarteType createKreditkarteType() {
|
||||||
|
return new KreditkarteType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BankverbindungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BankverbindungType createBankverbindungType() {
|
||||||
|
return new BankverbindungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PersBankverbindungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PersBankverbindungType createPersBankverbindungType() {
|
||||||
|
return new PersBankverbindungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VersichertePersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VersichertePersonType createVersichertePersonType() {
|
||||||
|
return new VersichertePersonType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link RisikoNatPersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public RisikoNatPersonType createRisikoNatPersonType() {
|
||||||
|
return new RisikoNatPersonType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link FahrzeugType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FahrzeugType createFahrzeugType() {
|
||||||
|
return new FahrzeugType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZulassungsdatenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZulassungsdatenType createZulassungsdatenType() {
|
||||||
|
return new ZulassungsdatenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VersicherteLiegenschaftType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VersicherteLiegenschaftType createVersicherteLiegenschaftType() {
|
||||||
|
return new VersicherteLiegenschaftType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link KostenFixOderProzentType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public KostenFixOderProzentType createKostenFixOderProzentType() {
|
||||||
|
return new KostenFixOderProzentType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SelbstbehaltType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SelbstbehaltType createSelbstbehaltType() {
|
||||||
|
return new SelbstbehaltType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link UploadDokumentType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public UploadDokumentType createUploadDokumentType() {
|
||||||
|
return new UploadDokumentType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link DokumentenReferenzType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DokumentenReferenzType createDokumentenReferenzType() {
|
||||||
|
return new DokumentenReferenzType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZeitraumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZeitraumType createZeitraumType() {
|
||||||
|
return new ZeitraumType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PolizzenObjektSpezifikationType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PolizzenObjektSpezifikationType createPolizzenObjektSpezifikationType() {
|
||||||
|
return new PolizzenObjektSpezifikationType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SchadenObjektSpezifikationType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SchadenObjektSpezifikationType createSchadenObjektSpezifikationType() {
|
||||||
|
return new SchadenObjektSpezifikationType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributMsgType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributMsgType createAttributMsgType() {
|
||||||
|
return new AttributMsgType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributMetadatenStringType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributMetadatenStringType createAttributMetadatenStringType() {
|
||||||
|
return new AttributMetadatenStringType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributMetadatenIntType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributMetadatenIntType createAttributMetadatenIntType() {
|
||||||
|
return new AttributMetadatenIntType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributMetadatenDezimalType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributMetadatenDezimalType createAttributMetadatenDezimalType() {
|
||||||
|
return new AttributMetadatenDezimalType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributMetadatenDatumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributMetadatenDatumType createAttributMetadatenDatumType() {
|
||||||
|
return new AttributMetadatenDatumType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributMetadatenEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributMetadatenEnumType createAttributMetadatenEnumType() {
|
||||||
|
return new AttributMetadatenEnumType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link EintragSchluessellisteType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public EintragSchluessellisteType createEintragSchluessellisteType() {
|
||||||
|
return new EintragSchluessellisteType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributStringType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributStringType createAttributStringType() {
|
||||||
|
return new AttributStringType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributIntType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributIntType createAttributIntType() {
|
||||||
|
return new AttributIntType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributDezimalType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributDezimalType createAttributDezimalType() {
|
||||||
|
return new AttributDezimalType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributDoubleType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributDoubleType createAttributDoubleType() {
|
||||||
|
return new AttributDoubleType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributDatumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributDatumType createAttributDatumType() {
|
||||||
|
return new AttributDatumType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributEnumType createAttributEnumType() {
|
||||||
|
return new AttributEnumType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AttributMultiEnumType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributMultiEnumType createAttributMultiEnumType() {
|
||||||
|
return new AttributMultiEnumType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link AbtretungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AbtretungType createAbtretungType() {
|
||||||
|
return new AbtretungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VerpfaendungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerpfaendungType createVerpfaendungType() {
|
||||||
|
return new VerpfaendungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PfandglaeubigerType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PfandglaeubigerType createPfandglaeubigerType() {
|
||||||
|
return new PfandglaeubigerType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link VinkulierungPersonenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VinkulierungPersonenType createVinkulierungPersonenType() {
|
||||||
|
return new VinkulierungPersonenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link GlaeubigerSicherstellungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GlaeubigerSicherstellungType createGlaeubigerSicherstellungType() {
|
||||||
|
return new GlaeubigerSicherstellungType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link EinwVerarbGesDatenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public EinwVerarbGesDatenType createEinwVerarbGesDatenType() {
|
||||||
|
return new EinwVerarbGesDatenType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link EinwGesDatenVNType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public EinwGesDatenVNType createEinwGesDatenVNType() {
|
||||||
|
return new EinwGesDatenVNType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link EinwSprachaufzType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public EinwSprachaufzType createEinwSprachaufzType() {
|
||||||
|
return new EinwSprachaufzType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link FATCAType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FATCAType createFATCAType() {
|
||||||
|
return new FATCAType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link FATCANatPersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FATCANatPersonType createFATCANatPersonType() {
|
||||||
|
return new FATCANatPersonType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link FATCASonstPersonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public FATCASonstPersonType createFATCASonstPersonType() {
|
||||||
|
return new FATCASonstPersonType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PEPType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PEPType createPEPType() {
|
||||||
|
return new PEPType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link TreuhaenderfrageType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public TreuhaenderfrageType createTreuhaenderfrageType() {
|
||||||
|
return new TreuhaenderfrageType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ElementFondsauswahlType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ElementFondsauswahlType createElementFondsauswahlType() {
|
||||||
|
return new ElementFondsauswahlType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link GMSGType.SteuerlichAnsaessig }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GMSGType.SteuerlichAnsaessig createGMSGTypeSteuerlichAnsaessig() {
|
||||||
|
return new GMSGType.SteuerlichAnsaessig();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ZahlwegType.Kundenkonto }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() {
|
||||||
|
return new ZahlwegType.Kundenkonto();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link ProzessDokumentType.Autorisierungen }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ProzessDokumentType.Autorisierungen createProzessDokumentTypeAutorisierungen() {
|
||||||
|
return new ProzessDokumentType.Autorisierungen();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "serviceFault")
|
||||||
|
public JAXBElement<ServiceFault> createServiceFault(ServiceFault value) {
|
||||||
|
return new JAXBElement<ServiceFault>(_ServiceFault_QNAME, ServiceFault.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link String }{@code >}
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd")
|
||||||
|
public JAXBElement<String> createOrdnungsbegriffZuordFremd(String value) {
|
||||||
|
return new JAXBElement<String>(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "ObjektId")
|
||||||
|
public JAXBElement<ObjektIdType> createObjektId(ObjektIdType value) {
|
||||||
|
return new JAXBElement<ObjektIdType>(_ObjektId_QNAME, ObjektIdType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link PersonType }{@code >}
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link PersonType }{@code >}
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Person")
|
||||||
|
public JAXBElement<PersonType> createPerson(PersonType value) {
|
||||||
|
return new JAXBElement<PersonType>(_Person_QNAME, PersonType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >}
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link AdresseType }{@code >}
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "Adresse")
|
||||||
|
public JAXBElement<AdresseType> createAdresse(AdresseType value) {
|
||||||
|
return new JAXBElement<AdresseType>(_Adresse_QNAME, AdresseType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,129 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type für Objektreferenzen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ObjektId_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ObjektId_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Id" minOccurs="0">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <maxLength value="255"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ObjektId_Type", propOrder = {
|
||||||
|
"id",
|
||||||
|
"gueltigAb",
|
||||||
|
"ordnungsbegriffZuordFremd"
|
||||||
|
})
|
||||||
|
public class ObjektIdType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Id")
|
||||||
|
protected String id;
|
||||||
|
@XmlElement(name = "GueltigAb")
|
||||||
|
@XmlSchemaType(name = "dateTime")
|
||||||
|
protected XMLGregorianCalendar gueltigAb;
|
||||||
|
@XmlElement(name = "OrdnungsbegriffZuordFremd")
|
||||||
|
protected String ordnungsbegriffZuordFremd;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der id-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der id-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setId(String value) {
|
||||||
|
this.id = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der gueltigAb-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getGueltigAb() {
|
||||||
|
return gueltigAb;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der gueltigAb-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGueltigAb(XMLGregorianCalendar value) {
|
||||||
|
this.gueltigAb = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getOrdnungsbegriffZuordFremd() {
|
||||||
|
return ordnungsbegriffZuordFremd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOrdnungsbegriffZuordFremd(String value) {
|
||||||
|
this.ordnungsbegriffZuordFremd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SchadenmelderVermittlerType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Eine abstrakte Spezifikation eines Objekts
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ObjektSpezifikation_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ObjektSpezifikation_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ObjektSpezifikation_Type")
|
||||||
|
@XmlSeeAlso({
|
||||||
|
SchadenmelderVermittlerType.class,
|
||||||
|
PolizzenObjektSpezifikationType.class,
|
||||||
|
SchadenObjektSpezifikationType.class
|
||||||
|
})
|
||||||
|
public abstract class ObjektSpezifikationType {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type Offene Schäden
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für OffeneSchaeden_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="OffeneSchaeden_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
|
||||||
|
* <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
|
||||||
|
* <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "OffeneSchaeden_Type", propOrder = {
|
||||||
|
"offenerSchaden1",
|
||||||
|
"offenerSchaden2",
|
||||||
|
"offenerSchaden3"
|
||||||
|
})
|
||||||
|
public class OffeneSchaedenType {
|
||||||
|
|
||||||
|
@XmlElement(name = "OffenerSchaden1", required = true)
|
||||||
|
protected OffenerSchadenType offenerSchaden1;
|
||||||
|
@XmlElement(name = "OffenerSchaden2")
|
||||||
|
protected OffenerSchadenType offenerSchaden2;
|
||||||
|
@XmlElement(name = "OffenerSchaden3")
|
||||||
|
protected OffenerSchadenType offenerSchaden3;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der offenerSchaden1-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link OffenerSchadenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public OffenerSchadenType getOffenerSchaden1() {
|
||||||
|
return offenerSchaden1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der offenerSchaden1-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link OffenerSchadenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOffenerSchaden1(OffenerSchadenType value) {
|
||||||
|
this.offenerSchaden1 = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der offenerSchaden2-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link OffenerSchadenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public OffenerSchadenType getOffenerSchaden2() {
|
||||||
|
return offenerSchaden2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der offenerSchaden2-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link OffenerSchadenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOffenerSchaden2(OffenerSchadenType value) {
|
||||||
|
this.offenerSchaden2 = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der offenerSchaden3-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link OffenerSchadenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public OffenerSchadenType getOffenerSchaden3() {
|
||||||
|
return offenerSchaden3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der offenerSchaden3-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link OffenerSchadenType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOffenerSchaden3(OffenerSchadenType value) {
|
||||||
|
this.offenerSchaden3 = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.math.BigInteger;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type einzelner offener Schaden
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für OffenerSchaden_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="OffenerSchaden_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||||
|
* <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "OffenerSchaden_Type", propOrder = {
|
||||||
|
"monat",
|
||||||
|
"jahr"
|
||||||
|
})
|
||||||
|
public class OffenerSchadenType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Monat", required = true)
|
||||||
|
protected BigInteger monat;
|
||||||
|
@XmlElement(name = "Jahr", required = true)
|
||||||
|
protected BigInteger jahr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der monat-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigInteger getMonat() {
|
||||||
|
return monat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der monat-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMonat(BigInteger value) {
|
||||||
|
this.monat = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der jahr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigInteger getJahr() {
|
||||||
|
return jahr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der jahr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigInteger }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setJahr(BigInteger value) {
|
||||||
|
this.jahr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Beschreibung einer PEP
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für PEP_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="PEP_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="PEP" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "PEP_Type", propOrder = {
|
||||||
|
"pep",
|
||||||
|
"beschreibung"
|
||||||
|
})
|
||||||
|
public class PEPType {
|
||||||
|
|
||||||
|
@XmlElement(name = "PEP")
|
||||||
|
protected boolean pep;
|
||||||
|
@XmlElement(name = "Beschreibung")
|
||||||
|
protected String beschreibung;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der pep-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isPEP() {
|
||||||
|
return pep;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der pep-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPEP(boolean value) {
|
||||||
|
this.pep = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der beschreibung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBeschreibung() {
|
||||||
|
return beschreibung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der beschreibung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBeschreibung(String value) {
|
||||||
|
this.beschreibung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PartnerRoleType.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="PartnerRoleType">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <length value="2"/>
|
||||||
|
* <enumeration value="VN"/>
|
||||||
|
* <enumeration value="VP"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "PartnerRoleType")
|
||||||
|
@XmlEnum
|
||||||
|
public enum PartnerRoleType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Versicherungsnehmer
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VN,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Versicherte Person
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
VP;
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return name();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static PartnerRoleType fromValue(String v) {
|
||||||
|
return valueOf(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* beschreibt eine Bankverbindug, welche einer Person ueber eine Referenz zugeordnet ist
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für PersBankverbindung_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="PersBankverbindung_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type">
|
||||||
|
* <attribute name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "PersBankverbindung_Type")
|
||||||
|
public class PersBankverbindungType
|
||||||
|
extends BankverbindungType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlAttribute(name = "PersonRefLfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer personRefLfnr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der personRefLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getPersonRefLfnr() {
|
||||||
|
return personRefLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der personRefLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPersonRefLfnr(Integer value) {
|
||||||
|
this.personRefLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PersonNamentlichesBezugsrecht_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="PersonNamentlichesBezugsrecht_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Prozentsatz" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||||
|
* <element name="Zugunsten" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "PersonNamentlichesBezugsrecht_Type", propOrder = {
|
||||||
|
"prozentsatz",
|
||||||
|
"zugunsten"
|
||||||
|
})
|
||||||
|
public class PersonNamentlichesBezugsrechtType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Prozentsatz")
|
||||||
|
protected Double prozentsatz;
|
||||||
|
@XmlElement(name = "Zugunsten")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int zugunsten;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der prozentsatz-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Double getProzentsatz() {
|
||||||
|
return prozentsatz;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der prozentsatz-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProzentsatz(Double value) {
|
||||||
|
this.prozentsatz = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zugunsten-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getZugunsten() {
|
||||||
|
return zugunsten;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zugunsten-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZugunsten(int value) {
|
||||||
|
this.zugunsten = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,421 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.ELAnzahlType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.ELEinstufungType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.ELEntscheidungsfrageType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.ELIdentifizierungType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.ELKommunikationType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.ELLegitimationType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.ELTextType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.NATUERLICHEPERSONType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.PersArtCdType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.SONSTIGEPERSONType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Der Typ für eine Person mit ObjektId
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Person_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Person_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
|
||||||
|
* <choice>
|
||||||
|
* <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
|
||||||
|
* <element ref="{urn:omds20}SONSTIGE_PERSON"/>
|
||||||
|
* </choice>
|
||||||
|
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Legitimation" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Anzahl" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Einstufung" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Entscheidungsfrage" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Identifizierung" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Person_Type", propOrder = {
|
||||||
|
"objektId",
|
||||||
|
"natuerlicheperson",
|
||||||
|
"sonstigeperson",
|
||||||
|
"adresse",
|
||||||
|
"elKommunikation",
|
||||||
|
"elLegitimation",
|
||||||
|
"elAnzahl",
|
||||||
|
"elEinstufung",
|
||||||
|
"elEntscheidungsfrage",
|
||||||
|
"elIdentifizierung",
|
||||||
|
"elText"
|
||||||
|
})
|
||||||
|
public class PersonType {
|
||||||
|
|
||||||
|
@XmlElement(name = "ObjektId")
|
||||||
|
protected ObjektIdType objektId;
|
||||||
|
@XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20")
|
||||||
|
protected NATUERLICHEPERSONType natuerlicheperson;
|
||||||
|
@XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20")
|
||||||
|
protected SONSTIGEPERSONType sonstigeperson;
|
||||||
|
@XmlElement(name = "Adresse")
|
||||||
|
protected AdresseType adresse;
|
||||||
|
@XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20")
|
||||||
|
protected List<ELKommunikationType> elKommunikation;
|
||||||
|
@XmlElement(name = "EL-Legitimation", namespace = "urn:omds20")
|
||||||
|
protected List<ELLegitimationType> elLegitimation;
|
||||||
|
@XmlElement(name = "EL-Anzahl", namespace = "urn:omds20")
|
||||||
|
protected List<ELAnzahlType> elAnzahl;
|
||||||
|
@XmlElement(name = "EL-Einstufung", namespace = "urn:omds20")
|
||||||
|
protected List<ELEinstufungType> elEinstufung;
|
||||||
|
@XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20")
|
||||||
|
protected List<ELEntscheidungsfrageType> elEntscheidungsfrage;
|
||||||
|
@XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20")
|
||||||
|
protected List<ELIdentifizierungType> elIdentifizierung;
|
||||||
|
@XmlElement(name = "EL-Text", namespace = "urn:omds20")
|
||||||
|
protected List<ELTextType> elText;
|
||||||
|
@XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
|
protected PersArtCdType persArtCd;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben)
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjektIdType getObjektId() {
|
||||||
|
return objektId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der objektId-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setObjektId(ObjektIdType value) {
|
||||||
|
this.objektId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der natuerlicheperson-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link NATUERLICHEPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public NATUERLICHEPERSONType getNATUERLICHEPERSON() {
|
||||||
|
return natuerlicheperson;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der natuerlicheperson-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link NATUERLICHEPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) {
|
||||||
|
this.natuerlicheperson = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der sonstigeperson-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SONSTIGEPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SONSTIGEPERSONType getSONSTIGEPERSON() {
|
||||||
|
return sonstigeperson;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der sonstigeperson-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SONSTIGEPERSONType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setSONSTIGEPERSON(SONSTIGEPERSONType value) {
|
||||||
|
this.sonstigeperson = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Die Hauptadresse des Partners mit ObjektId
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AdresseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AdresseType getAdresse() {
|
||||||
|
return adresse;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der adresse-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AdresseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAdresse(AdresseType value) {
|
||||||
|
this.adresse = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elKommunikation property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the elKommunikation property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELKommunikation().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELKommunikationType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELKommunikationType> getELKommunikation() {
|
||||||
|
if (elKommunikation == null) {
|
||||||
|
elKommunikation = new ArrayList<ELKommunikationType>();
|
||||||
|
}
|
||||||
|
return this.elKommunikation;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elLegitimation property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the elLegitimation property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELLegitimation().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELLegitimationType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELLegitimationType> getELLegitimation() {
|
||||||
|
if (elLegitimation == null) {
|
||||||
|
elLegitimation = new ArrayList<ELLegitimationType>();
|
||||||
|
}
|
||||||
|
return this.elLegitimation;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elAnzahl property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the elAnzahl property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELAnzahl().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELAnzahlType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELAnzahlType> getELAnzahl() {
|
||||||
|
if (elAnzahl == null) {
|
||||||
|
elAnzahl = new ArrayList<ELAnzahlType>();
|
||||||
|
}
|
||||||
|
return this.elAnzahl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elEinstufung property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the elEinstufung property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELEinstufung().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELEinstufungType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELEinstufungType> getELEinstufung() {
|
||||||
|
if (elEinstufung == null) {
|
||||||
|
elEinstufung = new ArrayList<ELEinstufungType>();
|
||||||
|
}
|
||||||
|
return this.elEinstufung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elEntscheidungsfrage property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the elEntscheidungsfrage property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELEntscheidungsfrage().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELEntscheidungsfrageType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELEntscheidungsfrageType> getELEntscheidungsfrage() {
|
||||||
|
if (elEntscheidungsfrage == null) {
|
||||||
|
elEntscheidungsfrage = new ArrayList<ELEntscheidungsfrageType>();
|
||||||
|
}
|
||||||
|
return this.elEntscheidungsfrage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elIdentifizierung property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the elIdentifizierung property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELIdentifizierung().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELIdentifizierungType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELIdentifizierungType> getELIdentifizierung() {
|
||||||
|
if (elIdentifizierung == null) {
|
||||||
|
elIdentifizierung = new ArrayList<ELIdentifizierungType>();
|
||||||
|
}
|
||||||
|
return this.elIdentifizierung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the elText property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the elText property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getELText().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ELTextType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ELTextType> getELText() {
|
||||||
|
if (elText == null) {
|
||||||
|
elText = new ArrayList<ELTextType>();
|
||||||
|
}
|
||||||
|
return this.elText;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der persArtCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link PersArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PersArtCdType getPersArtCd() {
|
||||||
|
return persArtCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der persArtCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link PersArtCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPersArtCd(PersArtCdType value) {
|
||||||
|
this.persArtCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Eigenschaften Pfandgläubiger
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Pfandglaeubiger_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Pfandglaeubiger_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Anteil" type="{http://www.w3.org/2001/XMLSchema}double"/>
|
||||||
|
* <element name="Glaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Pfandglaeubiger_Type", propOrder = {
|
||||||
|
"anteil",
|
||||||
|
"glaeubiger"
|
||||||
|
})
|
||||||
|
public class PfandglaeubigerType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Anteil")
|
||||||
|
protected double anteil;
|
||||||
|
@XmlElement(name = "Glaeubiger", required = true)
|
||||||
|
protected GlaeubigerSicherstellungType glaeubiger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der anteil-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public double getAnteil() {
|
||||||
|
return anteil;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der anteil-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAnteil(double value) {
|
||||||
|
this.anteil = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der glaeubiger-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link GlaeubigerSicherstellungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public GlaeubigerSicherstellungType getGlaeubiger() {
|
||||||
|
return glaeubiger;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der glaeubiger-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link GlaeubigerSicherstellungType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setGlaeubiger(GlaeubigerSicherstellungType value) {
|
||||||
|
this.glaeubiger = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,130 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.PolicyPartnerRole;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Die Spezifikation eines Polizzenobjektes
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für PolizzenObjektSpezifikation_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="PolizzenObjektSpezifikation_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
|
||||||
|
* <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
|
||||||
|
* <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = {
|
||||||
|
"polizzennr",
|
||||||
|
"vtgProdCd",
|
||||||
|
"rollePartner"
|
||||||
|
})
|
||||||
|
public class PolizzenObjektSpezifikationType
|
||||||
|
extends ObjektSpezifikationType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Polizzennr", required = true)
|
||||||
|
protected String polizzennr;
|
||||||
|
@XmlElement(name = "VtgProdCd")
|
||||||
|
protected String vtgProdCd;
|
||||||
|
@XmlElement(name = "RollePartner")
|
||||||
|
protected List<PolicyPartnerRole> rollePartner;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der polizzennr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getPolizzennr() {
|
||||||
|
return polizzennr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der polizzennr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPolizzennr(String value) {
|
||||||
|
this.polizzennr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgProdCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVtgProdCd() {
|
||||||
|
return vtgProdCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgProdCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgProdCd(String value) {
|
||||||
|
this.vtgProdCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the rollePartner property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the rollePartner property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getRollePartner().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link PolicyPartnerRole }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<PolicyPartnerRole> getRollePartner() {
|
||||||
|
if (rollePartner == null) {
|
||||||
|
rollePartner = new ArrayList<PolicyPartnerRole>();
|
||||||
|
}
|
||||||
|
return this.rollePartner;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlEnum;
|
||||||
|
import javax.xml.bind.annotation.XmlEnumValue;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java-Klasse für PolizzenversandType.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
* <pre>
|
||||||
|
* <simpleType name="PolizzenversandType">
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="MAK2"/>
|
||||||
|
* <enumeration value="VN1"/>
|
||||||
|
* <enumeration value="MAKVN"/>
|
||||||
|
* <enumeration value="MAK1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlType(name = "PolizzenversandType")
|
||||||
|
@XmlEnum
|
||||||
|
public enum PolizzenversandType {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("MAK2")
|
||||||
|
MAK_2("MAK2"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 1fach Versicherungsnehmer: Kunde erhält Original
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("VN1")
|
||||||
|
VN_1("VN1"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
MAKVN("MAKVN"),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 1fach Makler: Makler erhält Original
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlEnumValue("MAK1")
|
||||||
|
MAK_1("MAK1");
|
||||||
|
private final String value;
|
||||||
|
|
||||||
|
PolizzenversandType(String v) {
|
||||||
|
value = v;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String value() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static PolizzenversandType fromValue(String v) {
|
||||||
|
for (PolizzenversandType c: PolizzenversandType.values()) {
|
||||||
|
if (c.value.equals(v)) {
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new IllegalArgumentException(v);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,271 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds2Types.v2_14.WaehrungsCdType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Darstellung einer Praemie
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Praemie_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Praemie_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
|
||||||
|
* <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
|
||||||
|
* <element name="PraemieNto" type="{urn:omds20}decimal"/>
|
||||||
|
* <element name="PraemieBto" type="{urn:omds20}decimal"/>
|
||||||
|
* <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
|
||||||
|
* <element name="Unterjaehrigkeitszuschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||||
|
* <element name="Abschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Praemie_Type", propOrder = {
|
||||||
|
"zahlrhythmus",
|
||||||
|
"zahlweg",
|
||||||
|
"praemieNto",
|
||||||
|
"praemieBto",
|
||||||
|
"versicherungssteuer",
|
||||||
|
"waehrungsCd",
|
||||||
|
"unterjaehrigkeitszuschlag",
|
||||||
|
"abschlag"
|
||||||
|
})
|
||||||
|
public class PraemieType {
|
||||||
|
|
||||||
|
@XmlElement(name = "Zahlrhythmus", required = true)
|
||||||
|
protected String zahlrhythmus;
|
||||||
|
@XmlElement(name = "Zahlweg")
|
||||||
|
protected String zahlweg;
|
||||||
|
@XmlElement(name = "PraemieNto", required = true)
|
||||||
|
protected BigDecimal praemieNto;
|
||||||
|
@XmlElement(name = "PraemieBto", required = true)
|
||||||
|
protected BigDecimal praemieBto;
|
||||||
|
@XmlElement(name = "Versicherungssteuer")
|
||||||
|
protected List<VersicherungssteuerType> versicherungssteuer;
|
||||||
|
@XmlElement(name = "WaehrungsCd")
|
||||||
|
@XmlSchemaType(name = "string")
|
||||||
|
protected WaehrungsCdType waehrungsCd;
|
||||||
|
@XmlElement(name = "Unterjaehrigkeitszuschlag")
|
||||||
|
protected Double unterjaehrigkeitszuschlag;
|
||||||
|
@XmlElement(name = "Abschlag")
|
||||||
|
protected Double abschlag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlrhythmus-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZahlrhythmus() {
|
||||||
|
return zahlrhythmus;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlrhythmus-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlrhythmus(String value) {
|
||||||
|
this.zahlrhythmus = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlweg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZahlweg() {
|
||||||
|
return zahlweg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlweg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlweg(String value) {
|
||||||
|
this.zahlweg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemieNto-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getPraemieNto() {
|
||||||
|
return praemieNto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemieNto-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemieNto(BigDecimal value) {
|
||||||
|
this.praemieNto = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der praemieBto-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getPraemieBto() {
|
||||||
|
return praemieBto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der praemieBto-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setPraemieBto(BigDecimal value) {
|
||||||
|
this.praemieBto = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the versicherungssteuer property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the versicherungssteuer property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getVersicherungssteuer().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link VersicherungssteuerType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<VersicherungssteuerType> getVersicherungssteuer() {
|
||||||
|
if (versicherungssteuer == null) {
|
||||||
|
versicherungssteuer = new ArrayList<VersicherungssteuerType>();
|
||||||
|
}
|
||||||
|
return this.versicherungssteuer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der waehrungsCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public WaehrungsCdType getWaehrungsCd() {
|
||||||
|
return waehrungsCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der waehrungsCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link WaehrungsCdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setWaehrungsCd(WaehrungsCdType value) {
|
||||||
|
this.waehrungsCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der unterjaehrigkeitszuschlag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Double getUnterjaehrigkeitszuschlag() {
|
||||||
|
return unterjaehrigkeitszuschlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der unterjaehrigkeitszuschlag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setUnterjaehrigkeitszuschlag(Double value) {
|
||||||
|
this.unterjaehrigkeitszuschlag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der abschlag-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Double getAbschlag() {
|
||||||
|
return abschlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der abschlag-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Double }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAbschlag(Double value) {
|
||||||
|
this.abschlag = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,155 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.ProduktSachPrivatType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Basistyp für ein Produkt, 2. Generation
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ProduktGenerisch_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ProduktGenerisch_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Eingeschlossen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="EinschlussAenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||||
|
* <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ProduktGenerisch_Type", propOrder = {
|
||||||
|
"eingeschlossen",
|
||||||
|
"einschlussAenderbar",
|
||||||
|
"attributMetadaten",
|
||||||
|
"beschreibungTxt"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
ProduktMitVpType.class,
|
||||||
|
ProduktSachPrivatType.class
|
||||||
|
})
|
||||||
|
public abstract class ProduktGenerischType
|
||||||
|
extends ProduktType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Eingeschlossen")
|
||||||
|
protected boolean eingeschlossen;
|
||||||
|
@XmlElement(name = "EinschlussAenderbar")
|
||||||
|
protected Boolean einschlussAenderbar;
|
||||||
|
@XmlElement(name = "AttributMetadaten")
|
||||||
|
protected List<AttributMetadatenType> attributMetadaten;
|
||||||
|
@XmlElement(name = "BeschreibungTxt")
|
||||||
|
protected String beschreibungTxt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der eingeschlossen-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isEingeschlossen() {
|
||||||
|
return eingeschlossen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der eingeschlossen-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEingeschlossen(boolean value) {
|
||||||
|
this.eingeschlossen = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der einschlussAenderbar-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Boolean isEinschlussAenderbar() {
|
||||||
|
return einschlussAenderbar;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der einschlussAenderbar-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEinschlussAenderbar(Boolean value) {
|
||||||
|
this.einschlussAenderbar = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the attributMetadaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the attributMetadaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAttributMetadaten().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link AttributMetadatenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<AttributMetadatenType> getAttributMetadaten() {
|
||||||
|
if (attributMetadaten == null) {
|
||||||
|
attributMetadaten = new ArrayList<AttributMetadatenType>();
|
||||||
|
}
|
||||||
|
return this.attributMetadaten;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBeschreibungTxt() {
|
||||||
|
return beschreibungTxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBeschreibungTxt(String value) {
|
||||||
|
this.beschreibungTxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,102 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.ProduktLebenType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.ProduktUnfallType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Basistyp für eine Produktelement vom Typ "Versicherte Person"
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ProduktMitVp_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ProduktMitVp_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Bezugsberechtigungen" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="VersPersonenRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ProduktMitVp_Type", propOrder = {
|
||||||
|
"bezugsberechtigungen",
|
||||||
|
"versPersonenRefLfnr"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
ProduktUnfallType.class,
|
||||||
|
ProduktLebenType.class
|
||||||
|
})
|
||||||
|
public abstract class ProduktMitVpType
|
||||||
|
extends ProduktGenerischType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Bezugsberechtigungen")
|
||||||
|
protected List<BezugsberechtigungType> bezugsberechtigungen;
|
||||||
|
@XmlElement(name = "VersPersonenRefLfnr")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected int versPersonenRefLfnr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the bezugsberechtigungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the bezugsberechtigungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getBezugsberechtigungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link BezugsberechtigungType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<BezugsberechtigungType> getBezugsberechtigungen() {
|
||||||
|
if (bezugsberechtigungen == null) {
|
||||||
|
bezugsberechtigungen = new ArrayList<BezugsberechtigungType>();
|
||||||
|
}
|
||||||
|
return this.bezugsberechtigungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der versPersonenRefLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public int getVersPersonenRefLfnr() {
|
||||||
|
return versPersonenRefLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der versPersonenRefLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVersPersonenRefLfnr(int value) {
|
||||||
|
this.versPersonenRefLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,254 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.ProduktKfzType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.ZusatzproduktKfzType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Basistyp für ein Produkt
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Produkt_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Produkt_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
|
||||||
|
* <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
|
||||||
|
* <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
|
||||||
|
* <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type"/>
|
||||||
|
* <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
|
* <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Produkt_Type", propOrder = {
|
||||||
|
"vtgBeg",
|
||||||
|
"produktgeneration",
|
||||||
|
"zahlweg",
|
||||||
|
"zahlrhythmus",
|
||||||
|
"hauptfaelligkeit",
|
||||||
|
"refSicherstellungLfnr",
|
||||||
|
"zusaetzlicheProduktdaten"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
ProduktGenerischType.class,
|
||||||
|
ProduktKfzType.class,
|
||||||
|
ZusatzproduktKfzType.class
|
||||||
|
})
|
||||||
|
public abstract class ProduktType
|
||||||
|
extends ProduktbausteinType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "VtgBeg")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar vtgBeg;
|
||||||
|
@XmlElement(name = "Produktgeneration")
|
||||||
|
protected String produktgeneration;
|
||||||
|
@XmlElement(name = "Zahlweg")
|
||||||
|
protected String zahlweg;
|
||||||
|
@XmlElement(name = "Zahlrhythmus")
|
||||||
|
protected String zahlrhythmus;
|
||||||
|
@XmlElement(name = "Hauptfaelligkeit", required = true)
|
||||||
|
@XmlSchemaType(name = "gMonthDay")
|
||||||
|
protected XMLGregorianCalendar hauptfaelligkeit;
|
||||||
|
@XmlElement(name = "RefSicherstellungLfnr")
|
||||||
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
|
protected Integer refSicherstellungLfnr;
|
||||||
|
@XmlElement(name = "ZusaetzlicheProduktdaten")
|
||||||
|
protected List<ZusaetzlicheProduktdatenType> zusaetzlicheProduktdaten;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgBeg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getVtgBeg() {
|
||||||
|
return vtgBeg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgBeg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgBeg(XMLGregorianCalendar value) {
|
||||||
|
this.vtgBeg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der produktgeneration-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getProduktgeneration() {
|
||||||
|
return produktgeneration;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der produktgeneration-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setProduktgeneration(String value) {
|
||||||
|
this.produktgeneration = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlweg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZahlweg() {
|
||||||
|
return zahlweg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlweg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlweg(String value) {
|
||||||
|
this.zahlweg = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlrhythmus-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZahlrhythmus() {
|
||||||
|
return zahlrhythmus;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlrhythmus-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlrhythmus(String value) {
|
||||||
|
this.zahlrhythmus = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der hauptfaelligkeit-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getHauptfaelligkeit() {
|
||||||
|
return hauptfaelligkeit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der hauptfaelligkeit-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setHauptfaelligkeit(XMLGregorianCalendar value) {
|
||||||
|
this.hauptfaelligkeit = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Integer getRefSicherstellungLfnr() {
|
||||||
|
return refSicherstellungLfnr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Integer }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setRefSicherstellungLfnr(Integer value) {
|
||||||
|
this.refSicherstellungLfnr = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the zusaetzlicheProduktdaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the zusaetzlicheProduktdaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getZusaetzlicheProduktdaten().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ZusaetzlicheProduktdatenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ZusaetzlicheProduktdatenType> getZusaetzlicheProduktdaten() {
|
||||||
|
if (zusaetzlicheProduktdaten == null) {
|
||||||
|
zusaetzlicheProduktdaten = new ArrayList<ZusaetzlicheProduktdatenType>();
|
||||||
|
}
|
||||||
|
return this.zusaetzlicheProduktdaten;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,149 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Typ für Produktbausteine im Antragsprozess der 2. Generation
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ProduktbausteinGenerisch_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ProduktbausteinGenerisch_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Eingeschlossen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="EinschlussAenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||||
|
* <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ProduktbausteinGenerisch_Type", propOrder = {
|
||||||
|
"eingeschlossen",
|
||||||
|
"einschlussAenderbar",
|
||||||
|
"attributMetadaten",
|
||||||
|
"beschreibungTxt"
|
||||||
|
})
|
||||||
|
public abstract class ProduktbausteinGenerischType
|
||||||
|
extends ProduktbausteinType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Eingeschlossen")
|
||||||
|
protected boolean eingeschlossen;
|
||||||
|
@XmlElement(name = "EinschlussAenderbar")
|
||||||
|
protected Boolean einschlussAenderbar;
|
||||||
|
@XmlElement(name = "AttributMetadaten")
|
||||||
|
protected List<AttributMetadatenType> attributMetadaten;
|
||||||
|
@XmlElement(name = "BeschreibungTxt")
|
||||||
|
protected String beschreibungTxt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der eingeschlossen-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isEingeschlossen() {
|
||||||
|
return eingeschlossen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der eingeschlossen-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEingeschlossen(boolean value) {
|
||||||
|
this.eingeschlossen = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der einschlussAenderbar-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Boolean isEinschlussAenderbar() {
|
||||||
|
return einschlussAenderbar;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der einschlussAenderbar-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setEinschlussAenderbar(Boolean value) {
|
||||||
|
this.einschlussAenderbar = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the attributMetadaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the attributMetadaten property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAttributMetadaten().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link AttributMetadatenType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<AttributMetadatenType> getAttributMetadaten() {
|
||||||
|
if (attributMetadaten == null) {
|
||||||
|
attributMetadaten = new ArrayList<AttributMetadatenType>();
|
||||||
|
}
|
||||||
|
return this.attributMetadaten;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getBeschreibungTxt() {
|
||||||
|
return beschreibungTxt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBeschreibungTxt(String value) {
|
||||||
|
this.beschreibungTxt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,141 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstrakter Typ für alle Produktbausteine im Antragsprozess
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für Produktbaustein_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Produktbaustein_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}BasisProduktbaustein_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="VtgEnde" type="{urn:omds20}Datum" minOccurs="0"/>
|
||||||
|
* <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="JahrespraemieNto" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Produktbaustein_Type", propOrder = {
|
||||||
|
"vtgEnde",
|
||||||
|
"praemie",
|
||||||
|
"jahrespraemieNto"
|
||||||
|
})
|
||||||
|
@XmlSeeAlso({
|
||||||
|
ProduktbausteinGenerischType.class,
|
||||||
|
ZusatzproduktType.class,
|
||||||
|
VerkaufsproduktType.class,
|
||||||
|
ProduktType.class,
|
||||||
|
ElementarproduktType.class
|
||||||
|
})
|
||||||
|
public abstract class ProduktbausteinType
|
||||||
|
extends BasisProduktbausteinType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "VtgEnde")
|
||||||
|
@XmlSchemaType(name = "date")
|
||||||
|
protected XMLGregorianCalendar vtgEnde;
|
||||||
|
@XmlElement(name = "Praemie")
|
||||||
|
protected List<PraemieType> praemie;
|
||||||
|
@XmlElement(name = "JahrespraemieNto")
|
||||||
|
protected BigDecimal jahrespraemieNto;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgEnde-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public XMLGregorianCalendar getVtgEnde() {
|
||||||
|
return vtgEnde;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgEnde-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link XMLGregorianCalendar }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgEnde(XMLGregorianCalendar value) {
|
||||||
|
this.vtgEnde = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the praemie property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the praemie property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getPraemie().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link PraemieType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<PraemieType> getPraemie() {
|
||||||
|
if (praemie == null) {
|
||||||
|
praemie = new ArrayList<PraemieType>();
|
||||||
|
}
|
||||||
|
return this.praemie;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der jahrespraemieNto-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BigDecimal getJahrespraemieNto() {
|
||||||
|
return jahrespraemieNto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der jahrespraemieNto-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link BigDecimal }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setJahrespraemieNto(BigDecimal value) {
|
||||||
|
this.jahrespraemieNto = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bereitstellung Dokument für Kunde, nicht zu unterschreiben
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ProzessDokHandout_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ProzessDokHandout_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="DokData" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type"/>
|
||||||
|
* <element name="ArtAusfolgung">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||||
|
* <enumeration value="0"/>
|
||||||
|
* <enumeration value="1"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ProzessDokHandout_Type", propOrder = {
|
||||||
|
"dokData",
|
||||||
|
"artAusfolgung"
|
||||||
|
})
|
||||||
|
public class ProzessDokHandoutType
|
||||||
|
extends ProzessDokumentBasisType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "DokData", required = true)
|
||||||
|
protected DokumentDataType dokData;
|
||||||
|
@XmlElement(name = "ArtAusfolgung")
|
||||||
|
protected short artAusfolgung;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dokData-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link DokumentDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public DokumentDataType getDokData() {
|
||||||
|
return dokData;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dokData-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link DokumentDataType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDokData(DokumentDataType value) {
|
||||||
|
this.dokData = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der artAusfolgung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public short getArtAusfolgung() {
|
||||||
|
return artAusfolgung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der artAusfolgung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setArtAusfolgung(short value) {
|
||||||
|
this.artAusfolgung = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,187 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_8_0.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Anforderung eines beizubringenden Dokuments
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für ProzessDokRequirement_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="ProzessDokRequirement_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokumentBasis_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="DokAnforderungsId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
|
||||||
|
* <element name="Autorisierungen" type="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsAnforderung_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||||
|
* <element name="ZulaessigeMimetypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "ProzessDokRequirement_Type", propOrder = {
|
||||||
|
"dokAnforderungsId",
|
||||||
|
"autorisierungen",
|
||||||
|
"docUploadRequired",
|
||||||
|
"zulaessigeMimetypes",
|
||||||
|
"meldungen"
|
||||||
|
})
|
||||||
|
public class ProzessDokRequirementType
|
||||||
|
extends ProzessDokumentBasisType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "DokAnforderungsId", required = true)
|
||||||
|
protected ObjektIdType dokAnforderungsId;
|
||||||
|
@XmlElement(name = "Autorisierungen")
|
||||||
|
protected List<AutorisierungsAnforderungType> autorisierungen;
|
||||||
|
@XmlElement(name = "DocUploadRequired")
|
||||||
|
protected boolean docUploadRequired;
|
||||||
|
@XmlElement(name = "ZulaessigeMimetypes")
|
||||||
|
protected List<String> zulaessigeMimetypes;
|
||||||
|
@XmlElement(name = "Meldungen")
|
||||||
|
protected List<ServiceFault> meldungen;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der dokAnforderungsId-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public ObjektIdType getDokAnforderungsId() {
|
||||||
|
return dokAnforderungsId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der dokAnforderungsId-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link ObjektIdType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDokAnforderungsId(ObjektIdType value) {
|
||||||
|
this.dokAnforderungsId = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the autorisierungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the autorisierungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getAutorisierungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link AutorisierungsAnforderungType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<AutorisierungsAnforderungType> getAutorisierungen() {
|
||||||
|
if (autorisierungen == null) {
|
||||||
|
autorisierungen = new ArrayList<AutorisierungsAnforderungType>();
|
||||||
|
}
|
||||||
|
return this.autorisierungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der docUploadRequired-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public boolean isDocUploadRequired() {
|
||||||
|
return docUploadRequired;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der docUploadRequired-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setDocUploadRequired(boolean value) {
|
||||||
|
this.docUploadRequired = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the zulaessigeMimetypes property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the zulaessigeMimetypes property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getZulaessigeMimetypes().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getZulaessigeMimetypes() {
|
||||||
|
if (zulaessigeMimetypes == null) {
|
||||||
|
zulaessigeMimetypes = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.zulaessigeMimetypes;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the meldungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the meldungen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getMeldungen().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link ServiceFault }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<ServiceFault> getMeldungen() {
|
||||||
|
if (meldungen == null) {
|
||||||
|
meldungen = new ArrayList<ServiceFault>();
|
||||||
|
}
|
||||||
|
return this.meldungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user