diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AListenAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AListenAttributType.java deleted file mode 100644 index bc2da687..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AListenAttributType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakte Ebene fuer Listen mit einem oder mehreren wählbaren Werten - * - *

Java-Klasse für AListenAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 values; - @XmlElement(name = "MinAnz") - @XmlSchemaType(name = "unsignedShort") - protected Integer minAnz; - - /** - * Gets the value of the values property. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ASingleAttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ASingleAttributType.java deleted file mode 100644 index 22908792..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ASingleAttributType.java +++ /dev/null @@ -1,74 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp für Attribute mit einem Wert - * - *

Java-Klasse für ASingleAttribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbgelehnteRisikenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbgelehnteRisikenType.java deleted file mode 100644 index 8d3a79cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbgelehnteRisikenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ zur Beschreibung abgelehnter Risiken - * - *

Java-Klasse für AbgelehnteRisiken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AbgelehnteRisiken_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AbgelehnteRisiken_Type") -public abstract class AbgelehnteRisikenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbtretungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbtretungType.java deleted file mode 100644 index a247f7fd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AbtretungType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Sicherstellung vom Typ Abtretung / Zession - * - *

Java-Klasse für Abtretung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AdresseType.java deleted file mode 100644 index bd6ca22e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AdresseType.java +++ /dev/null @@ -1,302 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für eine Adresse mit ObjektId - * - *

Java-Klasse für Adresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AgentFilterType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AgentFilterType.java deleted file mode 100644 index 33665e04..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AgentFilterType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein spezieller AuthorizationFilterType, der eine Anfrage dahingehend einschränkt, dass nur Ergebnisse für eine bestimmte MaklerID oder Vermnr (Vermittlernummer) zurück gegeben werden - * - *

Java-Klasse für AgentFilter_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the vermnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVermnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVermnr() { - if (vermnr == null) { - vermnr = new ArrayList(); - } - return this.vermnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDatumType.java deleted file mode 100644 index e1265b9e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDatumType.java +++ /dev/null @@ -1,192 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Auf xsd:date basierendes Attribut mit Metadaten - * - *

Java-Klasse für AttributDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDezimalType.java deleted file mode 100644 index 308183bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDezimalType.java +++ /dev/null @@ -1,186 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_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 - * - *

Java-Klasse für AttributDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDoubleType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDoubleType.java deleted file mode 100644 index d3d3b4c7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributDoubleType.java +++ /dev/null @@ -1,185 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Auf xsd:double basierendes Attribut mit Metadaten - * - *

Java-Klasse für AttributDouble_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Double } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributEnumType.java deleted file mode 100644 index 08c2af00..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributEnumType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Attribut mit Metadaten für Schlüssellisten - * - *

Java-Klasse für AttributEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributIntType.java deleted file mode 100644 index c4b14530..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributIntType.java +++ /dev/null @@ -1,185 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Auf xsd:int basierendes Attribut mit Metadaten - * - *

Java-Klasse für AttributInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDatumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDatumType.java deleted file mode 100644 index 42967823..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDatumType.java +++ /dev/null @@ -1,163 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Typ mit Metadaten für xsd:date-Attribute - * - *

Java-Klasse für AttributMetadatenDatum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link XMLGregorianCalendar } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDezimalType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDezimalType.java deleted file mode 100644 index d7713da5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenDezimalType.java +++ /dev/null @@ -1,158 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_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 - * - *

Java-Klasse für AttributMetadatenDezimal_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BigDecimal } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenEnumType.java deleted file mode 100644 index c216ce86..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenEnumType.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ mit Metadaten für Schlüssellisten - * - *

Java-Klasse für AttributMetadatenEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link EintragSchluessellisteType } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenIntType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenIntType.java deleted file mode 100644 index 9000950f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenIntType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ mit Metadaten für xsd:int-Attribute - * - *

Java-Klasse für AttributMetadatenInt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenStringType.java deleted file mode 100644 index 9eec20c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenStringType.java +++ /dev/null @@ -1,188 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ mit Metadaten für xsd:string-Attribute - * - *

Java-Klasse für AttributMetadatenString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenType.java deleted file mode 100644 index dedb9756..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMetadatenType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp für Metadaten von Attributen - * - *

Java-Klasse für AttributMetadaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMsgType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMsgType.java deleted file mode 100644 index 2201148a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMsgType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_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 - * - *

Java-Klasse für AttributMsg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMultiEnumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMultiEnumType.java deleted file mode 100644 index 3c96bd53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributMultiEnumType.java +++ /dev/null @@ -1,134 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Attribut mit Metadaten für Schlüssellisten, bei dem mehrere Einträge auswählbar sind. - * - *

Java-Klasse für AttributMultiEnum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AttributMultiEnum_Type", propOrder = { - "value", - "_default", - "maxAnz" -}) -public class AttributMultiEnumType - extends AListenAttributType -{ - - @XmlElement(name = "Value") - protected List value; - @XmlElement(name = "Default") - protected List _default; - @XmlElement(name = "MaxAnz") - protected Object maxAnz; - - /** - * Gets the value of the value property. - * - *

- * 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 set method for the value property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValue().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValue() { - if (value == null) { - value = new ArrayList(); - } - return this.value; - } - - /** - * Gets the value of the default property. - * - *

- * 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 set method for the default property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDefault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getDefault() { - if (_default == null) { - _default = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributStringType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributStringType.java deleted file mode 100644 index ddba7e6a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributStringType.java +++ /dev/null @@ -1,216 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Auf xsd:string basierendes Attribut mit Metadaten - * - *

Java-Klasse für AttributString_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the values property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getValues().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getValues() { - if (values == null) { - values = new ArrayList(); - } - return this.values; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributType.java deleted file mode 100644 index 1994d4a5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AttributType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp für Attribute die Metadaten enthalten können (feiner Unterschied zu AttributMetadaten_Type) - * - *

Java-Klasse für Attribut_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AuthorizationFilter.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AuthorizationFilter.java deleted file mode 100644 index 944ae9b6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/AuthorizationFilter.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Definiert einen abstrakten Filter um bestimmte spezifische Elemente herauszufiltern - * - *

Java-Klasse für AuthorizationFilter complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AuthorizationFilter">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AuthorizationFilter") -@XmlSeeAlso({ - AgentFilterType.class -}) -public abstract class AuthorizationFilter { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BankverbindungType.java deleted file mode 100644 index 5a279b74..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BankverbindungType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * beschreibt eine Bankverbindug - * - *

Java-Klasse für Bankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BasisProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BasisProduktbausteinType.java deleted file mode 100644 index c1f98b63..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BasisProduktbausteinType.java +++ /dev/null @@ -1,164 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für alle Gemeinsamkeiten von Produktbausteinen - * - *

Java-Klasse für BasisProduktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 bedingungen; - @XmlElement(name = "Meldungen") - protected List 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. - * - *

- * 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 set method for the bedingungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBedingungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getBedingungen() { - if (bedingungen == null) { - bedingungen = new ArrayList(); - } - return this.bedingungen; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BeteiligtePersonVertragType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BeteiligtePersonVertragType.java deleted file mode 100644 index 058ff095..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BeteiligtePersonVertragType.java +++ /dev/null @@ -1,86 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind - * - *

Java-Klasse für BeteiligtePersonVertrag_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungGesetzlicheErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungGesetzlicheErbenType.java deleted file mode 100644 index 3993d86f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungGesetzlicheErbenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung gesetzliche Erben - * - *

Java-Klasse für BezugsberechtigungGesetzlicheErben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungGesetzlicheErben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungGesetzlicheErben_Type") -public class BezugsberechtigungGesetzlicheErbenType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungIndividuell.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungIndividuell.java deleted file mode 100644 index 5dbcd068..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungIndividuell.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung Individuell - * - *

Java-Klasse für BezugsberechtigungIndividuell complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungNamentlich.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungNamentlich.java deleted file mode 100644 index d4cbf9ae..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungNamentlich.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung namentlich - * - *

Java-Klasse für BezugsberechtigungNamentlich complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the personen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersonNamentlichesBezugsrechtType } - * - * - */ - public List getPersonen() { - if (personen == null) { - personen = new ArrayList(); - } - return this.personen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungTestamentarischeErbenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungTestamentarischeErbenType.java deleted file mode 100644 index 251668cc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungTestamentarischeErbenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung testamentarische Erben - * - *

Java-Klasse für BezugsberechtigungTestamentarischeErben_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungTestamentarischeErben_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungTestamentarischeErben_Type") -public class BezugsberechtigungTestamentarischeErbenType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungType.java deleted file mode 100644 index a5f4c46a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell - * - *

Java-Klasse für Bezugsberechtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungUeberbringerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungUeberbringerType.java deleted file mode 100644 index b91f4f03..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungUeberbringerType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung Überbringer - * - *

Java-Klasse für BezugsberechtigungUeberbringer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungUeberbringer_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungUeberbringer_Type") -public class BezugsberechtigungUeberbringerType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersichertePersonType.java deleted file mode 100644 index f9ec4914..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersichertePersonType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung VersichertePerson - * - *

Java-Klasse für BezugsberechtigungVersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungVersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungVersichertePerson_Type") -public class BezugsberechtigungVersichertePersonType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersicherungsnehmerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersicherungsnehmerType.java deleted file mode 100644 index 8d7bbc58..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BezugsberechtigungVersicherungsnehmerType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Bezugsberechtigung Versicherungsnehmer - * - *

Java-Klasse für BezugsberechtigungVersicherungsnehmer_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BezugsberechtigungVersicherungsnehmer_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BezugsberechtigungVersicherungsnehmer_Type") -public class BezugsberechtigungVersicherungsnehmerType - extends BezugsberechtigungType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BonusMalusSystemType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BonusMalusSystemType.java deleted file mode 100644 index f2b41c17..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/BonusMalusSystemType.java +++ /dev/null @@ -1,157 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Type Bonus Malus System - * - *

Java-Klasse für BonusMalusSystem_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DatenverwendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DatenverwendungType.java deleted file mode 100644 index 5423026c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DatenverwendungType.java +++ /dev/null @@ -1,112 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Type Datenverwendung - * - *

Java-Klasse für Datenverwendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentenReferenzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentenReferenzType.java deleted file mode 100644 index 8f9aeb24..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/DokumentenReferenzType.java +++ /dev/null @@ -1,262 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für DokumentenReferenz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the referenzWeitereDokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzWeitereDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getReferenzWeitereDokumente() { - if (referenzWeitereDokumente == null) { - referenzWeitereDokumente = new ArrayList(); - } - return this.referenzWeitereDokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EintragSchluessellisteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EintragSchluessellisteType.java deleted file mode 100644 index f766a416..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EintragSchluessellisteType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für einen einzelnen Eintrag einer Schlüsselliste - * - *

Java-Klasse für EintragSchluesselliste_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwGesDatenVNType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwGesDatenVNType.java deleted file mode 100644 index 410e16c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwGesDatenVNType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Bekanntgabe Gesundheitsdaten an VN - * - *

Java-Klasse für EinwGesDatenVN_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwGesDatenVN_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwGesDatenVN_Type") -public class EinwGesDatenVNType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwSprachaufzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwSprachaufzType.java deleted file mode 100644 index 8f157190..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwSprachaufzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Sprachaufzeichnung - * - *

Java-Klasse für EinwSprachaufz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwSprachaufz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwSprachaufz_Type") -public class EinwSprachaufzType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwVerarbGesDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwVerarbGesDatenType.java deleted file mode 100644 index 5d749dd8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwVerarbGesDatenType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Einwilligung Verarbeitung Gesundheitsdaten - * - *

Java-Klasse für EinwVerarbGesDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="EinwVerarbGesDaten_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EinwVerarbGesDaten_Type") -public class EinwVerarbGesDatenType - extends EinwilligungPersDatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungPersDatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungPersDatenType.java deleted file mode 100644 index 48b95ab5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungPersDatenType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für Einwilligung personenbezogene Daten - * - *

Java-Klasse für EinwilligungPersDaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungType.java deleted file mode 100644 index e617cfcd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/EinwilligungType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für Einwilligung - * - *

Java-Klasse für Einwilligung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementFondsauswahlType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementFondsauswahlType.java deleted file mode 100644 index 2d1407db..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementFondsauswahlType.java +++ /dev/null @@ -1,164 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein einzelnes Element einer Fondsauswahl - * - *

Java-Klasse für ElementFondsauswahl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the zusaetzlicheFondsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheFondsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheFondsdatenType } - * - * - */ - public List getZusaetzlicheFondsdaten() { - if (zusaetzlicheFondsdaten == null) { - zusaetzlicheFondsdaten = new ArrayList(); - } - return this.zusaetzlicheFondsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementIdType.java deleted file mode 100644 index 9abc8561..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ElementIdType.java +++ /dev/null @@ -1,114 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -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 - * - *

Java-Klasse für ElementIdType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzenType.java deleted file mode 100644 index fdc7d0cb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ErsatzpolizzenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für Ersatzpolizzen - * - *

Java-Klasse für Ersatzpolizzen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCANatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCANatPersonType.java deleted file mode 100644 index 39ce21c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCANatPersonType.java +++ /dev/null @@ -1,76 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen FATCA bei natürlichen Personen - * - *

Java-Klasse für FATCA_NatPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCASonstPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCASonstPersonType.java deleted file mode 100644 index ce3c3a3f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCASonstPersonType.java +++ /dev/null @@ -1,132 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen FATCA bei sonstigen Personen - * - *

Java-Klasse für FATCA_SonstPersonType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCAType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCAType.java deleted file mode 100644 index 3e8e0232..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FATCAType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen gemäß FATCA - * - *

Java-Klasse für FATCA_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FahrzeugType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FahrzeugType.java deleted file mode 100644 index 6ee7644b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/FahrzeugType.java +++ /dev/null @@ -1,863 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_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 - * - *

Java-Klasse für Fahrzeug_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GMSGType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GMSGType.java deleted file mode 100644 index 3caaee9c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GMSGType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Fragen gemäß dem Gemeinsamen Meldestandard-Gesetz - * - *

Java-Klasse für GMSG_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GMSG_Type", propOrder = { - "steuerlichAnsaessig" -}) -public class GMSGType { - - @XmlElement(name = "SteuerlichAnsaessig", required = true) - protected List steuerlichAnsaessig; - - /** - * Gets the value of the steuerlichAnsaessig property. - * - *

- * 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 set method for the steuerlichAnsaessig property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSteuerlichAnsaessig().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GMSGType.SteuerlichAnsaessig } - * - * - */ - public List getSteuerlichAnsaessig() { - if (steuerlichAnsaessig == null) { - steuerlichAnsaessig = new ArrayList(); - } - return this.steuerlichAnsaessig; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <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>
-     * 
- * - * - */ - @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; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GlaeubigerSicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GlaeubigerSicherstellungType.java deleted file mode 100644 index 8ec6b9f3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/GlaeubigerSicherstellungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Gläubiger einer Sicherstellung - * - *

Java-Klasse für GlaeubigerSicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KostenFixOderProzentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KostenFixOderProzentType.java deleted file mode 100644 index 67635373..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KostenFixOderProzentType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_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 - * - *

Java-Klasse für KostenFixOderProzent_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KreditkarteType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KreditkarteType.java deleted file mode 100644 index 88907a28..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/KreditkarteType.java +++ /dev/null @@ -1,189 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ Kreditkarte - * - *

Java-Klasse für Kreditkarte_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektIdType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektIdType.java deleted file mode 100644 index e8955f00..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektIdType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Type für Objektreferenzen - * - *

Java-Klasse für ObjektId_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektSpezifikationType.java deleted file mode 100644 index 21abc6e4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ObjektSpezifikationType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SchadenmelderVermittlerType; - - -/** - * Eine abstrakte Spezifikation eines Objekts - * - *

Java-Klasse für ObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ObjektSpezifikation_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ObjektSpezifikation_Type") -@XmlSeeAlso({ - PolizzenObjektSpezifikationType.class, - SchadenObjektSpezifikationType.class, - SchadenmelderVermittlerType.class -}) -public abstract class ObjektSpezifikationType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffeneSchaedenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffeneSchaedenType.java deleted file mode 100644 index 23c42120..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffeneSchaedenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Type Offene Schäden - * - *

Java-Klasse für OffeneSchaeden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffenerSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffenerSchadenType.java deleted file mode 100644 index c01d7c16..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/OffenerSchadenType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_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 - * - *

Java-Klasse für OffenerSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PEPType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PEPType.java deleted file mode 100644 index c2eb2cbb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PEPType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Beschreibung einer PEP - * - *

Java-Klasse für PEP_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersBankverbindungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersBankverbindungType.java deleted file mode 100644 index bf4a40ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersBankverbindungType.java +++ /dev/null @@ -1,64 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * beschreibt eine Bankverbindug, welche einer Person ueber eine Referenz zugeordnet ist - * - *

Java-Klasse für PersBankverbindung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonNamentlichesBezugsrechtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonNamentlichesBezugsrechtType.java deleted file mode 100644 index d9520536..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonNamentlichesBezugsrechtType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für PersonNamentlichesBezugsrecht_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonType.java deleted file mode 100644 index 018aada0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PersonType.java +++ /dev/null @@ -1,421 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.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 - * - *

Java-Klasse für Person_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 elKommunikation; - @XmlElement(name = "EL-Legitimation", namespace = "urn:omds20") - protected List elLegitimation; - @XmlElement(name = "EL-Anzahl", namespace = "urn:omds20") - protected List elAnzahl; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20") - protected List elEinstufung; - @XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20") - protected List elEntscheidungsfrage; - @XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20") - protected List elIdentifizierung; - @XmlElement(name = "EL-Text", namespace = "urn:omds20") - protected List 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. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - - /** - * Gets the value of the elLegitimation property. - * - *

- * 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 set method for the elLegitimation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELLegitimation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELLegitimationType } - * - * - */ - public List getELLegitimation() { - if (elLegitimation == null) { - elLegitimation = new ArrayList(); - } - return this.elLegitimation; - } - - /** - * Gets the value of the elAnzahl property. - * - *

- * 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 set method for the elAnzahl property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELAnzahl().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELAnzahlType } - * - * - */ - public List getELAnzahl() { - if (elAnzahl == null) { - elAnzahl = new ArrayList(); - } - return this.elAnzahl; - } - - /** - * Gets the value of the elEinstufung property. - * - *

- * 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 set method for the elEinstufung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEinstufung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEinstufungType } - * - * - */ - public List getELEinstufung() { - if (elEinstufung == null) { - elEinstufung = new ArrayList(); - } - return this.elEinstufung; - } - - /** - * Gets the value of the elEntscheidungsfrage property. - * - *

- * 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 set method for the elEntscheidungsfrage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELEntscheidungsfrage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELEntscheidungsfrageType } - * - * - */ - public List getELEntscheidungsfrage() { - if (elEntscheidungsfrage == null) { - elEntscheidungsfrage = new ArrayList(); - } - return this.elEntscheidungsfrage; - } - - /** - * Gets the value of the elIdentifizierung property. - * - *

- * 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 set method for the elIdentifizierung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELIdentifizierung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELIdentifizierungType } - * - * - */ - public List getELIdentifizierung() { - if (elIdentifizierung == null) { - elIdentifizierung = new ArrayList(); - } - return this.elIdentifizierung; - } - - /** - * Gets the value of the elText property. - * - *

- * 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 set method for the elText property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELText().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELTextType } - * - * - */ - public List getELText() { - if (elText == null) { - elText = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PfandglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PfandglaeubigerType.java deleted file mode 100644 index fe3ce1ab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PfandglaeubigerType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eigenschaften Pfandgläubiger - * - *

Java-Klasse für Pfandglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PolizzenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PolizzenObjektSpezifikationType.java deleted file mode 100644 index 8a60d698..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/PolizzenObjektSpezifikationType.java +++ /dev/null @@ -1,130 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.servicetypes.PolicyPartnerRole; - - -/** - * Die Spezifikation eines Polizzenobjektes - * - *

Java-Klasse für PolizzenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the rollePartner property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRollePartner().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getRollePartner() { - if (rollePartner == null) { - rollePartner = new ArrayList(); - } - return this.rollePartner; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinGenerischType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinGenerischType.java deleted file mode 100644 index e545618e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinGenerischType.java +++ /dev/null @@ -1,149 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für Produktbausteine im Antragsprozess der 2. Generation - * - *

Java-Klasse für ProduktbausteinGenerisch_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the attributMetadaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAttributMetadaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributMetadatenType } - * - * - */ - public List getAttributMetadaten() { - if (attributMetadaten == null) { - attributMetadaten = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinType.java deleted file mode 100644 index e56b7cd1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ProduktbausteinType.java +++ /dev/null @@ -1,141 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_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 - * - *

Java-Klasse für Produktbaustein_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the praemie property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPraemie().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PraemieType } - * - * - */ - public List getPraemie() { - if (praemie == null) { - praemie = new ArrayList(); - } - 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RaucherType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RaucherType.java deleted file mode 100644 index 31e1676b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RaucherType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstraktes Element, welches Antworten auf die Frage "Raucher?" enthält, z.B. in Leben - * - *

Java-Klasse für Raucher_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Raucher_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Raucher_Type") -public abstract class RaucherType - extends AttributType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/Referenz.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/Referenz.java deleted file mode 100644 index b725f8c4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/Referenz.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Ein Link auf ein Element - * - *

Java-Klasse für Referenz complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Referenz">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Link" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Referenz", propOrder = { - "link", - "bezeichnung" -}) -public class Referenz { - - @XmlElement(name = "Link", required = true) - protected Object link; - @XmlElement(name = "Bezeichnung") - protected Object bezeichnung; - - /** - * Ruft den Wert der link-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getLink() { - return link; - } - - /** - * Legt den Wert der link-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setLink(Object value) { - this.link = value; - } - - /** - * Ruft den Wert der bezeichnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getBezeichnung() { - return bezeichnung; - } - - /** - * Legt den Wert der bezeichnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setBezeichnung(Object value) { - this.bezeichnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ResponseStatusType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ResponseStatusType.java deleted file mode 100644 index c379d275..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ResponseStatusType.java +++ /dev/null @@ -1,162 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Statusinformationen im Response eines Serviceaufrufs - * - *

Java-Klasse für ResponseStatus_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ResponseStatus_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Ergebnis" type="{urn:omds3CommonServiceTypes-1-1-0}Status_Type"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Referenzen" type="{urn:omds3CommonServiceTypes-1-1-0}Referenz" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResponseStatus_Type", propOrder = { - "korrelationsId", - "ergebnis", - "meldungen", - "referenzen" -}) -public class ResponseStatusType { - - @XmlElement(name = "KorrelationsId", required = true) - protected String korrelationsId; - @XmlElement(name = "Ergebnis", required = true) - @XmlSchemaType(name = "string") - protected StatusType ergebnis; - @XmlElement(name = "Meldungen") - protected List meldungen; - @XmlElement(name = "Referenzen") - protected List referenzen; - - /** - * 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; - } - - /** - * Ruft den Wert der ergebnis-Eigenschaft ab. - * - * @return - * possible object is - * {@link StatusType } - * - */ - public StatusType getErgebnis() { - return ergebnis; - } - - /** - * Legt den Wert der ergebnis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link StatusType } - * - */ - public void setErgebnis(StatusType value) { - this.ergebnis = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - - /** - * Gets the value of the referenzen property. - * - *

- * 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 set method for the referenzen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getReferenzen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Referenz } - * - * - */ - public List getReferenzen() { - if (referenzen == null) { - referenzen = new ArrayList(); - } - return this.referenzen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RisikoNatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RisikoNatPersonType.java deleted file mode 100644 index 4f494148..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/RisikoNatPersonType.java +++ /dev/null @@ -1,501 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Risikoattribute natürlicher Personen - * - *

Java-Klasse für RisikoNatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoNatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Gewicht" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Groesse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributInt_Type" minOccurs="0"/>
- *         <element name="Raucher" type="{urn:omds3CommonServiceTypes-1-1-0}Raucher_Type" minOccurs="0"/>
- *         <element name="Sozialversicherungsanstalt" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Gefahrenklasse" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Beruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributString_Type" minOccurs="0"/>
- *         <element name="MedizinischerBeruf" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="FreizeitSportRisiken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Risikozuschlaege" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GesetzlicheUV" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="PersonenartKranken" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="Berufsgruppe" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="ManuelleTaetigkeit" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type" minOccurs="0"/>
- *         <element name="BehandelnderArzt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="KontaktRueckfragen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoNatPerson_Type", propOrder = { - "gewicht", - "groesse", - "raucher", - "sozialversicherungsanstalt", - "gefahrenklasse", - "beruf", - "medizinischerBeruf", - "freizeitSportRisiken", - "risikozuschlaege", - "gesetzlicheUV", - "personenartKranken", - "berufsgruppe", - "manuelleTaetigkeit", - "behandelnderArzt", - "kontaktRueckfragen", - "zusaetzlicheRisikodaten" -}) -public class RisikoNatPersonType { - - @XmlElement(name = "Gewicht") - protected AttributIntType gewicht; - @XmlElement(name = "Groesse") - protected AttributIntType groesse; - @XmlElement(name = "Raucher") - protected RaucherType raucher; - @XmlElement(name = "Sozialversicherungsanstalt") - protected AttributEnumType sozialversicherungsanstalt; - @XmlElement(name = "Gefahrenklasse") - protected AttributEnumType gefahrenklasse; - @XmlElement(name = "Beruf") - protected AttributStringType beruf; - @XmlElement(name = "MedizinischerBeruf") - protected AttributEnumType medizinischerBeruf; - @XmlElement(name = "FreizeitSportRisiken") - protected List freizeitSportRisiken; - @XmlElement(name = "Risikozuschlaege") - protected List risikozuschlaege; - @XmlElement(name = "GesetzlicheUV") - protected AttributEnumType gesetzlicheUV; - @XmlElement(name = "PersonenartKranken") - protected AttributEnumType personenartKranken; - @XmlElement(name = "Berufsgruppe") - protected AttributEnumType berufsgruppe; - @XmlElement(name = "ManuelleTaetigkeit") - protected AttributEnumType manuelleTaetigkeit; - @XmlElement(name = "BehandelnderArzt") - protected String behandelnderArzt; - @XmlElement(name = "KontaktRueckfragen") - protected String kontaktRueckfragen; - @XmlElement(name = "ZusaetzlicheRisikodaten") - protected List zusaetzlicheRisikodaten; - - /** - * Ruft den Wert der gewicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGewicht() { - return gewicht; - } - - /** - * Legt den Wert der gewicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGewicht(AttributIntType value) { - this.gewicht = value; - } - - /** - * Ruft den Wert der groesse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributIntType } - * - */ - public AttributIntType getGroesse() { - return groesse; - } - - /** - * Legt den Wert der groesse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributIntType } - * - */ - public void setGroesse(AttributIntType value) { - this.groesse = value; - } - - /** - * Ruft den Wert der raucher-Eigenschaft ab. - * - * @return - * possible object is - * {@link RaucherType } - * - */ - public RaucherType getRaucher() { - return raucher; - } - - /** - * Legt den Wert der raucher-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RaucherType } - * - */ - public void setRaucher(RaucherType value) { - this.raucher = value; - } - - /** - * Ruft den Wert der sozialversicherungsanstalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getSozialversicherungsanstalt() { - return sozialversicherungsanstalt; - } - - /** - * Legt den Wert der sozialversicherungsanstalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setSozialversicherungsanstalt(AttributEnumType value) { - this.sozialversicherungsanstalt = value; - } - - /** - * Ruft den Wert der gefahrenklasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGefahrenklasse() { - return gefahrenklasse; - } - - /** - * Legt den Wert der gefahrenklasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGefahrenklasse(AttributEnumType value) { - this.gefahrenklasse = value; - } - - /** - * Ruft den Wert der beruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributStringType } - * - */ - public AttributStringType getBeruf() { - return beruf; - } - - /** - * Legt den Wert der beruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributStringType } - * - */ - public void setBeruf(AttributStringType value) { - this.beruf = value; - } - - /** - * Ruft den Wert der medizinischerBeruf-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getMedizinischerBeruf() { - return medizinischerBeruf; - } - - /** - * Legt den Wert der medizinischerBeruf-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setMedizinischerBeruf(AttributEnumType value) { - this.medizinischerBeruf = value; - } - - /** - * Gets the value of the freizeitSportRisiken property. - * - *

- * 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 set method for the freizeitSportRisiken property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getFreizeitSportRisiken().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - public List getFreizeitSportRisiken() { - if (freizeitSportRisiken == null) { - freizeitSportRisiken = new ArrayList(); - } - return this.freizeitSportRisiken; - } - - /** - * Gets the value of the risikozuschlaege property. - * - *

- * 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 set method for the risikozuschlaege property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikozuschlaege().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AttributEnumType } - * - * - */ - public List getRisikozuschlaege() { - if (risikozuschlaege == null) { - risikozuschlaege = new ArrayList(); - } - return this.risikozuschlaege; - } - - /** - * Ruft den Wert der gesetzlicheUV-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getGesetzlicheUV() { - return gesetzlicheUV; - } - - /** - * Legt den Wert der gesetzlicheUV-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setGesetzlicheUV(AttributEnumType value) { - this.gesetzlicheUV = value; - } - - /** - * Ruft den Wert der personenartKranken-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getPersonenartKranken() { - return personenartKranken; - } - - /** - * Legt den Wert der personenartKranken-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setPersonenartKranken(AttributEnumType value) { - this.personenartKranken = value; - } - - /** - * Ruft den Wert der berufsgruppe-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getBerufsgruppe() { - return berufsgruppe; - } - - /** - * Legt den Wert der berufsgruppe-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setBerufsgruppe(AttributEnumType value) { - this.berufsgruppe = value; - } - - /** - * Ruft den Wert der manuelleTaetigkeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link AttributEnumType } - * - */ - public AttributEnumType getManuelleTaetigkeit() { - return manuelleTaetigkeit; - } - - /** - * Legt den Wert der manuelleTaetigkeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AttributEnumType } - * - */ - public void setManuelleTaetigkeit(AttributEnumType value) { - this.manuelleTaetigkeit = value; - } - - /** - * Ruft den Wert der behandelnderArzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandelnderArzt() { - return behandelnderArzt; - } - - /** - * Legt den Wert der behandelnderArzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandelnderArzt(String value) { - this.behandelnderArzt = value; - } - - /** - * Ruft den Wert der kontaktRueckfragen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKontaktRueckfragen() { - return kontaktRueckfragen; - } - - /** - * Legt den Wert der kontaktRueckfragen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKontaktRueckfragen(String value) { - this.kontaktRueckfragen = value; - } - - /** - * Gets the value of the zusaetzlicheRisikodaten property. - * - *

- * 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 set method for the zusaetzlicheRisikodaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheRisikodaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRisikodatenType } - * - * - */ - public List getZusaetzlicheRisikodaten() { - if (zusaetzlicheRisikodaten == null) { - zusaetzlicheRisikodaten = new ArrayList(); - } - return this.zusaetzlicheRisikodaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SchadenObjektSpezifikationType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SchadenObjektSpezifikationType.java deleted file mode 100644 index 7f1dfd92..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SchadenObjektSpezifikationType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Die Spezifikation eines Schadenobjektes - * - *

Java-Klasse für SchadenObjektSpezifikation_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenObjektSpezifikation_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <choice>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *       </choice>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenObjektSpezifikation_Type", propOrder = { - "geschaeftsfallnummer", - "schadennr" -}) -public class SchadenObjektSpezifikationType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Geschaeftsfallnummer") - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SelbstbehaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SelbstbehaltType.java deleted file mode 100644 index 6033fe08..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SelbstbehaltType.java +++ /dev/null @@ -1,151 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_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 eines Selbstbehalts - * - *

Java-Klasse für Selbstbehalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Selbstbehalt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Selbstbehalt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Selbstbehalt_Type", propOrder = { - "selbstbehalt", - "selbstbehaltProzentVs", - "selbstbehaltMinBetrag", - "selbstbehaltMaxBetrag" -}) -public class SelbstbehaltType { - - @XmlElement(name = "Selbstbehalt") - protected BigDecimal selbstbehalt; - @XmlElement(name = "SelbstbehaltProzentVs") - @XmlSchemaType(name = "unsignedByte") - protected Short selbstbehaltProzentVs; - @XmlElement(name = "SelbstbehaltMinBetrag") - protected BigDecimal selbstbehaltMinBetrag; - @XmlElement(name = "SelbstbehaltMaxBetrag") - protected BigDecimal selbstbehaltMaxBetrag; - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehalt(BigDecimal value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der selbstbehaltProzentVs-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getSelbstbehaltProzentVs() { - return selbstbehaltProzentVs; - } - - /** - * Legt den Wert der selbstbehaltProzentVs-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setSelbstbehaltProzentVs(Short value) { - this.selbstbehaltProzentVs = value; - } - - /** - * Ruft den Wert der selbstbehaltMinBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMinBetrag() { - return selbstbehaltMinBetrag; - } - - /** - * Legt den Wert der selbstbehaltMinBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMinBetrag(BigDecimal value) { - this.selbstbehaltMinBetrag = value; - } - - /** - * Ruft den Wert der selbstbehaltMaxBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltMaxBetrag() { - return selbstbehaltMaxBetrag; - } - - /** - * Legt den Wert der selbstbehaltMaxBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltMaxBetrag(BigDecimal value) { - this.selbstbehaltMaxBetrag = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ServiceFault.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ServiceFault.java deleted file mode 100644 index 5ace0f57..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ServiceFault.java +++ /dev/null @@ -1,156 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_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; - - -/** - * Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp. - * - *

Java-Klasse für ServiceFault complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ServiceFault">
- *   <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"/>
- *         <element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceFault", propOrder = { - "errorType", - "errorCode", - "errorMsg", - "elementReference" -}) -public class ServiceFault { - - @XmlElement(required = true) - protected BigInteger errorType; - @XmlElement(required = true) - protected BigInteger errorCode; - @XmlElement(required = true) - protected String errorMsg; - protected String elementReference; - - /** - * 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; - } - - /** - * Ruft den Wert der elementReference-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getElementReference() { - return elementReference; - } - - /** - * Legt den Wert der elementReference-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setElementReference(String value) { - this.elementReference = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SicherstellungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SicherstellungType.java deleted file mode 100644 index 4a12fbca..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/SicherstellungType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_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.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer Sicherstellungen - * - *

Java-Klasse für Sicherstellung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Sicherstellung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="Betrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Unanfechtbarkeitssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Sicherstellung_Type", propOrder = { - "lfnr", - "betrag", - "unanfechtbarkeitssumme" -}) -@XmlSeeAlso({ - AbtretungType.class, - VerpfaendungType.class, - VinkulierungPersonenType.class -}) -public abstract class SicherstellungType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "Betrag") - protected BigDecimal betrag; - @XmlElement(name = "Unanfechtbarkeitssumme") - protected BigDecimal unanfechtbarkeitssumme; - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - public void setLfnr(int value) { - this.lfnr = value; - } - - /** - * Ruft den Wert der betrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getBetrag() { - return betrag; - } - - /** - * Legt den Wert der betrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setBetrag(BigDecimal value) { - this.betrag = value; - } - - /** - * Ruft den Wert der unanfechtbarkeitssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getUnanfechtbarkeitssumme() { - return unanfechtbarkeitssumme; - } - - /** - * Legt den Wert der unanfechtbarkeitssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setUnanfechtbarkeitssumme(BigDecimal value) { - this.unanfechtbarkeitssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnicalKeyValueType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnicalKeyValueType.java deleted file mode 100644 index 3a6e9739..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnicalKeyValueType.java +++ /dev/null @@ -1,92 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für nicht weiter spezifizierte technische Parameter - * - *

Java-Klasse für TechnicalKeyValue_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnicalKeyValue_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnicalKeyValue_Type", propOrder = { - "key", - "value" -}) -public class TechnicalKeyValueType { - - @XmlElement(name = "Key", required = true) - protected String key; - @XmlElement(name = "Value", required = true) - protected String value; - - /** - * Ruft den Wert der key-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Legt den Wert der key-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnischesObjektType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnischesObjektType.java deleted file mode 100644 index 5466766a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TechnischesObjektType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für technische Daten - * - *

Java-Klasse für TechnischesObjekt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TechnischesObjekt_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TechnischesObjekt_Type") -public abstract class TechnischesObjektType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TreuhaenderfrageType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TreuhaenderfrageType.java deleted file mode 100644 index c88c8bc6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/TreuhaenderfrageType.java +++ /dev/null @@ -1,84 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Details zur Treuhaenderfrage - * - *

Java-Klasse für Treuhaenderfrage_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Treuhaenderfrage_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Treuhaender" 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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Treuhaenderfrage_Type", propOrder = { - "treuhaender", - "beschreibung" -}) -public class TreuhaenderfrageType { - - @XmlElement(name = "Treuhaender") - protected boolean treuhaender; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - - /** - * Ruft den Wert der treuhaender-Eigenschaft ab. - * - */ - public boolean isTreuhaender() { - return treuhaender; - } - - /** - * Legt den Wert der treuhaender-Eigenschaft fest. - * - */ - public void setTreuhaender(boolean value) { - this.treuhaender = 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/UploadDokumentType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/UploadDokumentType.java deleted file mode 100644 index 92fc2290..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/UploadDokumentType.java +++ /dev/null @@ -1,143 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.activation.DataHandler; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlMimeType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename - * - *

Java-Klasse für Upload_Dokument_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Upload_Dokument_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Upload_Dokument_Type", propOrder = { - "name", - "mimetype", - "content", - "documentType" -}) -public class UploadDokumentType { - - @XmlElement(name = "Name", required = true) - protected String name; - @XmlElement(name = "Mimetype", required = true) - protected String mimetype; - @XmlElement(name = "Content", required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler content; - @XmlElement(name = "DocumentType") - protected int documentType; - - /** - * 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 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 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 documentType-Eigenschaft ab. - * - */ - public int getDocumentType() { - return documentType; - } - - /** - * Legt den Wert der documentType-Eigenschaft fest. - * - */ - public void setDocumentType(int value) { - this.documentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerpfaendungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerpfaendungType.java deleted file mode 100644 index 447f725a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VerpfaendungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Sicherstellung vom Typ Verpfändung - * - *

Java-Klasse für Verpfaendung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Verpfaendung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Pfandglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Pfandglaeubiger_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Verpfaendung_Type", propOrder = { - "pfandglaeubiger" -}) -public class VerpfaendungType - extends SicherstellungType -{ - - @XmlElement(name = "Pfandglaeubiger", required = true) - protected List pfandglaeubiger; - - /** - * Gets the value of the pfandglaeubiger property. - * - *

- * 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 set method for the pfandglaeubiger property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPfandglaeubiger().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PfandglaeubigerType } - * - * - */ - public List getPfandglaeubiger() { - if (pfandglaeubiger == null) { - pfandglaeubiger = new ArrayList(); - } - return this.pfandglaeubiger; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersicherteLiegenschaftType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersicherteLiegenschaftType.java deleted file mode 100644 index 72c3b03d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersicherteLiegenschaftType.java +++ /dev/null @@ -1,138 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ADRESSEType; - - -/** - * Versicherte Liegenschaft - * - *

Java-Klasse für VersicherteLiegenschaft_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersicherteLiegenschaft_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
- *         <element name="BebauteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="UeberdachteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersicherteLiegenschaft_Type", propOrder = { - "objektId", - "adresse", - "bebauteFlaecheInQm", - "ueberdachteFlaecheInQm" -}) -public class VersicherteLiegenschaftType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId", required = true) - protected ObjektIdType objektId; - @XmlElement(name = "Adresse", required = true) - protected ADRESSEType adresse; - @XmlElement(name = "BebauteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - protected int bebauteFlaecheInQm; - @XmlElement(name = "UeberdachteFlaecheInQm") - @XmlSchemaType(name = "unsignedShort") - protected int ueberdachteFlaecheInQm; - - /** - * 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 adresse-Eigenschaft ab. - * - * @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; - } - - /** - * Ruft den Wert der bebauteFlaecheInQm-Eigenschaft ab. - * - */ - public int getBebauteFlaecheInQm() { - return bebauteFlaecheInQm; - } - - /** - * Legt den Wert der bebauteFlaecheInQm-Eigenschaft fest. - * - */ - public void setBebauteFlaecheInQm(int value) { - this.bebauteFlaecheInQm = value; - } - - /** - * Ruft den Wert der ueberdachteFlaecheInQm-Eigenschaft ab. - * - */ - public int getUeberdachteFlaecheInQm() { - return ueberdachteFlaecheInQm; - } - - /** - * Legt den Wert der ueberdachteFlaecheInQm-Eigenschaft fest. - * - */ - public void setUeberdachteFlaecheInQm(int value) { - this.ueberdachteFlaecheInQm = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertePersonType.java deleted file mode 100644 index deab63dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VersichertePersonType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Versicherte Person basierend auf VersichertesInteresse_Type. Lfnr muss mit Lfnr der Person übereinstimmen. - * - *

Java-Klasse für VersichertePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertePerson_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <choice minOccurs="0">
- *           <element name="RisikoNatPerson" type="{urn:omds3CommonServiceTypes-1-1-0}RisikoNatPerson_Type"/>
- *           <element name="RisikoSonstPerson" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertePerson_Type", propOrder = { - "risikoNatPerson", - "risikoSonstPerson" -}) -public class VersichertePersonType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "RisikoNatPerson") - protected RisikoNatPersonType risikoNatPerson; - @XmlElement(name = "RisikoSonstPerson") - protected Object risikoSonstPerson; - - /** - * Ruft den Wert der risikoNatPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoNatPersonType } - * - */ - public RisikoNatPersonType getRisikoNatPerson() { - return risikoNatPerson; - } - - /** - * Legt den Wert der risikoNatPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoNatPersonType } - * - */ - public void setRisikoNatPerson(RisikoNatPersonType value) { - this.risikoNatPerson = value; - } - - /** - * Ruft den Wert der risikoSonstPerson-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getRisikoSonstPerson() { - return risikoSonstPerson; - } - - /** - * Legt den Wert der risikoSonstPerson-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setRisikoSonstPerson(Object value) { - this.risikoSonstPerson = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VertragspersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VertragspersonType.java deleted file mode 100644 index bc52100b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VertragspersonType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.VtgRolleCdType; - - -/** - * Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle - * - *

Java-Klasse für Vertragsperson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vertragsperson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vertragsperson_Type", propOrder = { - "lfdNr", - "rolle" -}) -public class VertragspersonType { - - @XmlElement(name = "LfdNr") - @XmlSchemaType(name = "unsignedInt") - protected long lfdNr; - @XmlElement(name = "Rolle", required = true) - @XmlSchemaType(name = "string") - protected VtgRolleCdType rolle; - - /** - * Ruft den Wert der lfdNr-Eigenschaft ab. - * - */ - public long getLfdNr() { - return lfdNr; - } - - /** - * Legt den Wert der lfdNr-Eigenschaft fest. - * - */ - public void setLfdNr(long value) { - this.lfdNr = value; - } - - /** - * Ruft den Wert der rolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getRolle() { - return rolle; - } - - /** - * Legt den Wert der rolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setRolle(VtgRolleCdType value) { - this.rolle = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkularglaeubigerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkularglaeubigerType.java deleted file mode 100644 index cd221134..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkularglaeubigerType.java +++ /dev/null @@ -1,176 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ zur Beschreibung einer Bank als Vinkulargläubiger - * - *

Java-Klasse für Vinkularglaeubiger_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkularglaeubiger_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Vertragsnummer">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="32"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerBank">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="2"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerPlz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="4"/>
- *               <maxLength value="5"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VinkularglaeubigerStrasse" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkularglaeubiger_Type", propOrder = { - "vertragsnummer", - "vinkularglaeubigerBank", - "vinkularglaeubigerPlz", - "vinkularglaeubigerStrasse" -}) -public class VinkularglaeubigerType { - - @XmlElement(name = "Vertragsnummer", required = true) - protected String vertragsnummer; - @XmlElement(name = "VinkularglaeubigerBank", required = true) - protected String vinkularglaeubigerBank; - @XmlElement(name = "VinkularglaeubigerPlz", required = true) - protected String vinkularglaeubigerPlz; - @XmlElement(name = "VinkularglaeubigerStrasse") - protected String vinkularglaeubigerStrasse; - - /** - * 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; - } - - /** - * Ruft den Wert der vinkularglaeubigerBank-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerBank() { - return vinkularglaeubigerBank; - } - - /** - * Legt den Wert der vinkularglaeubigerBank-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerBank(String value) { - this.vinkularglaeubigerBank = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerPlz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerPlz() { - return vinkularglaeubigerPlz; - } - - /** - * Legt den Wert der vinkularglaeubigerPlz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerPlz(String value) { - this.vinkularglaeubigerPlz = value; - } - - /** - * Ruft den Wert der vinkularglaeubigerStrasse-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVinkularglaeubigerStrasse() { - return vinkularglaeubigerStrasse; - } - - /** - * Legt den Wert der vinkularglaeubigerStrasse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVinkularglaeubigerStrasse(String value) { - this.vinkularglaeubigerStrasse = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungPersonenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungPersonenType.java deleted file mode 100644 index 6dc77be7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungPersonenType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Sicherstellung vom Typ Vinkulierung - * - *

Java-Klasse für VinkulierungPersonen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VinkulierungPersonen_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
- *       <sequence>
- *         <element name="Vinkularglaeubiger" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VinkulierungPersonen_Type", propOrder = { - "vinkularglaeubiger" -}) -public class VinkulierungPersonenType - extends SicherstellungType -{ - - @XmlElement(name = "Vinkularglaeubiger", required = true) - protected VinkularglaeubigerType vinkularglaeubiger; - - /** - * Ruft den Wert der vinkularglaeubiger-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkularglaeubigerType } - * - */ - public VinkularglaeubigerType getVinkularglaeubiger() { - return vinkularglaeubiger; - } - - /** - * Legt den Wert der vinkularglaeubiger-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkularglaeubigerType } - * - */ - public void setVinkularglaeubiger(VinkularglaeubigerType value) { - this.vinkularglaeubiger = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungType.java deleted file mode 100644 index 829f1e3a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VinkulierungType.java +++ /dev/null @@ -1,65 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.PERSONType; - - -/** - * Type Vinkulierung - * - *

Java-Klasse für Vinkulierung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vinkulierung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds20}PERSON"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vinkulierung_Type", propOrder = { - "person" -}) -public class VinkulierungType { - - @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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungType.java deleted file mode 100644 index 1a1d08db..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungType.java +++ /dev/null @@ -1,129 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Angaben zu einer Vorversicherung - * - *

Java-Klasse für Vorversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VorversicherungenDetail_Type">
- *       <sequence>
- *         <element name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" minOccurs="0"/>
- *         <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherung_Type", propOrder = { - "vtgSparteCd", - "spartenCd", - "polizzennr" -}) -public class VorversicherungType - extends VorversicherungenDetailType -{ - - @XmlElement(name = "VtgSparteCd") - protected String vtgSparteCd; - @XmlElement(name = "SpartenCd") - protected List spartenCd; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - - /** - * Ruft den Wert der vtgSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVtgSparteCd() { - return vtgSparteCd; - } - - /** - * Legt den Wert der vtgSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVtgSparteCd(String value) { - this.vtgSparteCd = value; - } - - /** - * Gets the value of the spartenCd property. - * - *

- * 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 set method for the spartenCd property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSpartenCd().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getSpartenCd() { - if (spartenCd == null) { - spartenCd = new ArrayList(); - } - return this.spartenCd; - } - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenDetailType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenDetailType.java deleted file mode 100644 index b1948b73..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenDetailType.java +++ /dev/null @@ -1,191 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Details zu einer Vorversicherung - * - *

Java-Klasse für VorversicherungenDetail_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenDetail_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WurdenVorversicherungenAufgeloest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Aufloesungsgrund" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="aus Schaden"/>
- *               <enumeration value="durch einvernehmliche Kündigung"/>
- *               <enumeration value="durch Ablauf"/>
- *               <enumeration value="durch Besitzwechsel"/>
- *               <enumeration value="aus sonstigen Gründen"/>
- *               <enumeration value="zum Ablauf gekündigte Vorversicherung"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="AuslaendischeVersicherungsgesellschaft" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type"/>
- *         <element name="ZusaetzlicheVorversicherungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVorversicherungsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenDetail_Type", propOrder = { - "wurdenVorversicherungenAufgeloest", - "aufloesungsgrund", - "auslaendischeVersicherungsgesellschaft", - "versicherungsgesellschaft", - "zusaetzlicheVorversicherungsdaten" -}) -@XmlSeeAlso({ - VorversicherungType.class, - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class -}) -public class VorversicherungenDetailType { - - @XmlElement(name = "WurdenVorversicherungenAufgeloest") - protected boolean wurdenVorversicherungenAufgeloest; - @XmlElement(name = "Aufloesungsgrund") - protected String aufloesungsgrund; - @XmlElement(name = "AuslaendischeVersicherungsgesellschaft") - protected Boolean auslaendischeVersicherungsgesellschaft; - @XmlElement(name = "Versicherungsgesellschaft", required = true) - protected String versicherungsgesellschaft; - @XmlElement(name = "ZusaetzlicheVorversicherungsdaten") - protected List zusaetzlicheVorversicherungsdaten; - - /** - * Ruft den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft ab. - * - */ - public boolean isWurdenVorversicherungenAufgeloest() { - return wurdenVorversicherungenAufgeloest; - } - - /** - * Legt den Wert der wurdenVorversicherungenAufgeloest-Eigenschaft fest. - * - */ - public void setWurdenVorversicherungenAufgeloest(boolean value) { - this.wurdenVorversicherungenAufgeloest = value; - } - - /** - * Ruft den Wert der aufloesungsgrund-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAufloesungsgrund() { - return aufloesungsgrund; - } - - /** - * Legt den Wert der aufloesungsgrund-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAufloesungsgrund(String value) { - this.aufloesungsgrund = value; - } - - /** - * Ruft den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAuslaendischeVersicherungsgesellschaft() { - return auslaendischeVersicherungsgesellschaft; - } - - /** - * Legt den Wert der auslaendischeVersicherungsgesellschaft-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAuslaendischeVersicherungsgesellschaft(Boolean value) { - this.auslaendischeVersicherungsgesellschaft = 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; - } - - /** - * Gets the value of the zusaetzlicheVorversicherungsdaten property. - * - *

- * 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 set method for the zusaetzlicheVorversicherungsdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheVorversicherungsdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheVorversicherungsdatenType } - * - * - */ - public List getZusaetzlicheVorversicherungsdaten() { - if (zusaetzlicheVorversicherungsdaten == null) { - zusaetzlicheVorversicherungsdaten = new ArrayList(); - } - return this.zusaetzlicheVorversicherungsdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenImplType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenImplType.java deleted file mode 100644 index 2a45a95e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenImplType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardimplementierung Vorversicherungen - * - *

Java-Klasse für VorversicherungenImpl_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VorversicherungenImpl_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherungen_Type">
- *       <sequence>
- *         <element name="Vorversicherungen" type="{urn:omds3CommonServiceTypes-1-1-0}Vorversicherung_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VorversicherungenImpl_Type", propOrder = { - "vorversicherungen" -}) -public class VorversicherungenImplType - extends VorversicherungenType -{ - - @XmlElement(name = "Vorversicherungen", required = true) - protected List vorversicherungen; - - /** - * Gets the value of the vorversicherungen property. - * - *

- * 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 set method for the vorversicherungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorversicherungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VorversicherungType } - * - * - */ - public List getVorversicherungen() { - if (vorversicherungen == null) { - vorversicherungen = new ArrayList(); - } - return this.vorversicherungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenType.java deleted file mode 100644 index 051255e1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/VorversicherungenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.VorversicherungenKfzType; - - -/** - * Abstrakter Typ zur Beschreibung der Vorversicherungen - * - *

Java-Klasse für Vorversicherungen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Vorversicherungen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Vorversicherungen_Type") -@XmlSeeAlso({ - VorversicherungenImplType.class, - VorversicherungenKfzType.class -}) -public abstract class VorversicherungenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZahlwegType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZahlwegType.java deleted file mode 100644 index 4fabe0b7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZahlwegType.java +++ /dev/null @@ -1,208 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ Zahlweg - * - *

Java-Klasse für Zahlweg_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zahlweg_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Zahlungsanweisung" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
- *         <element name="Lastschrift" type="{urn:omds3CommonServiceTypes-1-1-0}Bankverbindung_Type"/>
- *         <element name="Kundenkonto">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="Kreditkarte" type="{urn:omds3CommonServiceTypes-1-1-0}Kreditkarte_Type"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zahlweg_Type", propOrder = { - "zahlungsanweisung", - "lastschrift", - "kundenkonto", - "kreditkarte" -}) -public class ZahlwegType { - - @XmlElement(name = "Zahlungsanweisung") - protected Object zahlungsanweisung; - @XmlElement(name = "Lastschrift") - protected BankverbindungType lastschrift; - @XmlElement(name = "Kundenkonto") - protected ZahlwegType.Kundenkonto kundenkonto; - @XmlElement(name = "Kreditkarte") - protected KreditkarteType kreditkarte; - - /** - * Ruft den Wert der zahlungsanweisung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Object } - * - */ - public Object getZahlungsanweisung() { - return zahlungsanweisung; - } - - /** - * Legt den Wert der zahlungsanweisung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Object } - * - */ - public void setZahlungsanweisung(Object value) { - this.zahlungsanweisung = value; - } - - /** - * Ruft den Wert der lastschrift-Eigenschaft ab. - * - * @return - * possible object is - * {@link BankverbindungType } - * - */ - public BankverbindungType getLastschrift() { - return lastschrift; - } - - /** - * Legt den Wert der lastschrift-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BankverbindungType } - * - */ - public void setLastschrift(BankverbindungType value) { - this.lastschrift = value; - } - - /** - * Ruft den Wert der kundenkonto-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public ZahlwegType.Kundenkonto getKundenkonto() { - return kundenkonto; - } - - /** - * Legt den Wert der kundenkonto-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZahlwegType.Kundenkonto } - * - */ - public void setKundenkonto(ZahlwegType.Kundenkonto value) { - this.kundenkonto = value; - } - - /** - * Ruft den Wert der kreditkarte-Eigenschaft ab. - * - * @return - * possible object is - * {@link KreditkarteType } - * - */ - public KreditkarteType getKreditkarte() { - return kreditkarte; - } - - /** - * Legt den Wert der kreditkarte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KreditkarteType } - * - */ - public void setKreditkarte(KreditkarteType value) { - this.kreditkarte = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Kundenkonto { - - @XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected String kundenkontonummer; - - /** - * Ruft den Wert der kundenkontonummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKundenkontonummer() { - return kundenkontonummer; - } - - /** - * Legt den Wert der kundenkontonummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKundenkontonummer(String value) { - this.kundenkontonummer = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZeitraumType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZeitraumType.java deleted file mode 100644 index 1cb7e66c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZeitraumType.java +++ /dev/null @@ -1,88 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ein Zeitraum mit Beginn und Ende Datum - * - *

Java-Klasse für Zeitraum_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zeitraum_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="ZRBeg" type="{urn:omds20}Datum" />
- *       <attribute name="ZREnd" type="{urn:omds20}Datum" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zeitraum_Type") -public class ZeitraumType { - - @XmlAttribute(name = "ZRBeg", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrBeg; - @XmlAttribute(name = "ZREnd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected XMLGregorianCalendar zrEnd; - - /** - * Ruft den Wert der zrBeg-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZRBeg() { - return zrBeg; - } - - /** - * Legt den Wert der zrBeg-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZRBeg(XMLGregorianCalendar value) { - this.zrBeg = value; - } - - /** - * Ruft den Wert der zrEnd-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getZREnd() { - return zrEnd; - } - - /** - * Legt den Wert der zrEnd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setZREnd(XMLGregorianCalendar value) { - this.zrEnd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZulassungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZulassungsdatenType.java deleted file mode 100644 index 6ef27eb0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZulassungsdatenType.java +++ /dev/null @@ -1,120 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für Zulassungsdaten - * - *

Java-Klasse für Zulassungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zulassungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VBNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Fahrgestellnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zulassungsdaten_Type", propOrder = { - "vbNummer", - "kennzeichen", - "fahrgestellnummer" -}) -public class ZulassungsdatenType { - - @XmlElement(name = "VBNummer") - protected String vbNummer; - @XmlElement(name = "Kennzeichen") - protected String kennzeichen; - @XmlElement(name = "Fahrgestellnummer") - protected String fahrgestellnummer; - - /** - * Ruft den Wert der vbNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVBNummer() { - return vbNummer; - } - - /** - * Legt den Wert der vbNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVBNummer(String value) { - this.vbNummer = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheElementarproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheElementarproduktdatenType.java deleted file mode 100644 index a8e0ec0b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheElementarproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Elementarprodukt - * - *

Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheElementarproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type") -public abstract class ZusaetzlicheElementarproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheFondsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheFondsdatenType.java deleted file mode 100644 index e4e1363f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheFondsdatenType.java +++ /dev/null @@ -1,30 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für ZusaetzlicheFondsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheFondsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheFondsdaten_Type") -public abstract class ZusaetzlicheFondsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheProduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheProduktdatenType.java deleted file mode 100644 index 5135dec9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheProduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Produkt - * - *

Java-Klasse für ZusaetzlicheProduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheProduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheProduktdaten_Type") -public abstract class ZusaetzlicheProduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVerkaufproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVerkaufproduktdatenType.java deleted file mode 100644 index 22696adc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVerkaufproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Verkaufsprodukt - * - *

Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type") -public abstract class ZusaetzlicheVerkaufproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVorversicherungsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVorversicherungsdatenType.java deleted file mode 100644 index 0fdb9abd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheVorversicherungsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit für Vorversicherungsdaten - * - *

Java-Klasse für ZusaetzlicheVorversicherungsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheVorversicherungsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheVorversicherungsdaten_Type") -public abstract class ZusaetzlicheVorversicherungsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheZusatzproduktdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheZusatzproduktdatenType.java deleted file mode 100644 index 222f5479..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusaetzlicheZusatzproduktdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * VU-spezifische Erweiterungsmöglichkeit auf Ebene Zusatzprodukt - * - *

Java-Klasse für ZusaetzlicheZusatzproduktdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheZusatzproduktdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheZusatzproduktdaten_Type") -public abstract class ZusaetzlicheZusatzproduktdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusatzproduktType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusatzproduktType.java deleted file mode 100644 index 88507cd0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/ZusatzproduktType.java +++ /dev/null @@ -1,108 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.common; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Basistyp für ein Zusatzprodukt - * - *

Java-Klasse für Zusatzprodukt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Zusatzprodukt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
- *       <sequence>
- *         <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ZusaetzlicheZusatzproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheZusatzproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Zusatzprodukt_Type", propOrder = { - "vtgBeg", - "zusaetzlicheZusatzproduktdaten" -}) -@XmlSeeAlso({ - ZusatzproduktGenerischType.class -}) -public abstract class ZusatzproduktType - extends ProduktbausteinType -{ - - @XmlElement(name = "VtgBeg") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vtgBeg; - @XmlElement(name = "ZusaetzlicheZusatzproduktdaten") - protected List zusaetzlicheZusatzproduktdaten; - - /** - * 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; - } - - /** - * Gets the value of the zusaetzlicheZusatzproduktdaten property. - * - *

- * 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 set method for the zusaetzlicheZusatzproduktdaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheZusatzproduktdaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheZusatzproduktdatenType } - * - * - */ - public List getZusaetzlicheZusatzproduktdaten() { - if (zusaetzlicheZusatzproduktdaten == null) { - zusaetzlicheZusatzproduktdaten = new ArrayList(); - } - return this.zusaetzlicheZusatzproduktdaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/package-info.java deleted file mode 100644 index 928708c9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3CommonServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseRequestType.java deleted file mode 100644 index 13f31ea1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseRequestType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.UploadDokumentType; - - -/** - * Typ des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen - * - *

Java-Klasse für AddDocToBusinessCaseRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseRequest_Type", propOrder = { - "vuNr", - "geschaeftsfallnummer", - "dokument" -}) -public class AddDocToBusinessCaseRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "Geschaeftsfallnummer", required = true) - protected ObjektIdType geschaeftsfallnummer; - @XmlElement(name = "Dokument", required = true) - protected UploadDokumentType dokument; - - /** - * 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 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; - } - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link UploadDokumentType } - * - */ - public UploadDokumentType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UploadDokumentType } - * - */ - public void setDokument(UploadDokumentType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseResponseType.java deleted file mode 100644 index 4fdeb234..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/AddDocToBusinessCaseResponseType.java +++ /dev/null @@ -1,79 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElements; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Response von der VU, wenn ein zusätzliches Dokument übergeben wurde - * - *

Java-Klasse für AddDocToBusinessCaseResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AddDocToBusinessCaseResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice maxOccurs="unbounded">
- *         <element name="DocRef" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddDocToBusinessCaseResponse_Type", propOrder = { - "docRefOrServiceFault" -}) -public class AddDocToBusinessCaseResponseType { - - @XmlElements({ - @XmlElement(name = "DocRef", type = DokumentenReferenzType.class), - @XmlElement(name = "ServiceFault", type = ServiceFault.class) - }) - protected List docRefOrServiceFault; - - /** - * Gets the value of the docRefOrServiceFault property. - * - *

- * 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 set method for the docRefOrServiceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocRefOrServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * {@link ServiceFault } - * - * - */ - public List getDocRefOrServiceFault() { - if (docRefOrServiceFault == null) { - docRefOrServiceFault = new ArrayList(); - } - return this.docRefOrServiceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/DocumentInfosResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/DocumentInfosResponseResultType.java deleted file mode 100644 index 647e74d4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/DocumentInfosResponseResultType.java +++ /dev/null @@ -1,165 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZeitraumType; - - -/** - * Informationen zu einem Dokument - * - *

Java-Klasse für DocumentInfosResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DocumentInfosResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="DokumentInfos" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DocumentInfosResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "dokumentInfos", - "zeitraum" -}) -public class DocumentInfosResponseResultType { - - @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; - @XmlElement(name = "DokumentInfos") - protected List dokumentInfos; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - - /** - * 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; - } - - /** - * Gets the value of the dokumentInfos property. - * - *

- * 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 set method for the dokumentInfos property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumentInfos().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumentInfos() { - if (dokumentInfos == null) { - dokumentInfos = new ArrayList(); - } - return this.dokumentInfos; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectRequestType.java deleted file mode 100644 index 120fb59d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectRequestType.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt - * - *

Java-Klasse für GetDocumentsOfObjectRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfObjectRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectResponseType.java deleted file mode 100644 index 510e40a1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfObjectResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts. - * - *

Java-Klasse für GetDocumentsOfObjectResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfObjectResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfObjectResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfObjectResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodRequestType.java deleted file mode 100644 index 2b50d004..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodRequestType.java +++ /dev/null @@ -1,272 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZeitraumType; - - -/** - * Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *         <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="OrderBy" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Erstellungsdatum aufsteigend"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType", - "maxResults", - "offset", - "orderBy" -}) -public class GetDocumentsOfPeriodRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation") - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum", required = true) - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - @XmlElement(name = "MaxResults") - @XmlSchemaType(name = "unsignedShort") - protected Integer maxResults; - @XmlElement(name = "Offset") - @XmlSchemaType(name = "unsignedShort") - protected Integer offset; - @XmlElement(name = "OrderBy") - protected String orderBy; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - - /** - * Ruft den Wert der maxResults-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxResults() { - return maxResults; - } - - /** - * Legt den Wert der maxResults-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxResults(Integer value) { - this.maxResults = value; - } - - /** - * Ruft den Wert der offset-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Legt den Wert der offset-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodResponseType.java deleted file mode 100644 index b29d43a8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetDocumentsOfPeriodResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines Zeitraums - * - *

Java-Klasse für GetDocumentsOfPeriodResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetDocumentsOfPeriodResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}DocumentInfosResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetDocumentsOfPeriodResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class GetDocumentsOfPeriodResponseType { - - @XmlElement(name = "Result") - protected DocumentInfosResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link DocumentInfosResponseResultType } - * - */ - public DocumentInfosResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DocumentInfosResponseResultType } - * - */ - public void setResult(DocumentInfosResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsRequestType.java deleted file mode 100644 index f28593e8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsRequestType.java +++ /dev/null @@ -1,179 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektSpezifikationType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZeitraumType; - - -/** - * Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten - * - *

Java-Klasse für GetNumberOfDocumentsRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsRequest_Type", propOrder = { - "vuNr", - "authFilter", - "objektSpezifikation", - "zeitraum", - "dokumentType" -}) -public class GetNumberOfDocumentsRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ObjektSpezifikation", required = true) - protected ObjektSpezifikationType objektSpezifikation; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "DokumentType") - protected Integer dokumentType; - - /** - * 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 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 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; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der dokumentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDokumentType() { - return dokumentType; - } - - /** - * Legt den Wert der dokumentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDokumentType(Integer value) { - this.dokumentType = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsResponseType.java deleted file mode 100644 index 63a9dd81..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/GetNumberOfDocumentsResponseType.java +++ /dev/null @@ -1,96 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Typ mit Informationen zu den Dokumenten eines fachlichen Objekts - * - *

Java-Klasse für GetNumberOfDocumentsResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetNumberOfDocumentsResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="AnzDokumente" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetNumberOfDocumentsResponse_Type", propOrder = { - "anzDokumente", - "serviceFault" -}) -public class GetNumberOfDocumentsResponseType { - - @XmlElement(name = "AnzDokumente") - @XmlSchemaType(name = "nonNegativeInteger") - protected BigInteger anzDokumente; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der anzDokumente-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAnzDokumente() { - return anzDokumente; - } - - /** - * Legt den Wert der anzDokumente-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAnzDokumente(BigInteger value) { - this.anzDokumente = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/package-info.java deleted file mode 100644 index 3a233901..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on1basis/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on1basis; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentRequestType.java deleted file mode 100644 index 6f24c57c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType; - - -/** - * Typ um Offert- und Antragsdokumente zu beziehen - * - *

Java-Klasse für GetApplicationDocumentRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="DokumentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentRequest_Type", propOrder = { - "dokumentId" -}) -public class GetApplicationDocumentRequestType - extends CommonRequestType -{ - - @XmlElement(name = "DokumentId", required = true) - protected String dokumentId; - - /** - * Ruft den Wert der dokumentId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDokumentId() { - return dokumentId; - } - - /** - * Legt den Wert der dokumentId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDokumentId(String value) { - this.dokumentId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentResponseType.java deleted file mode 100644 index 2d07773f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/GetApplicationDocumentResponseType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentInfoType; - - -/** - * Typ um Offert- und Antragsdokumente zurückzugeben - * - *

Java-Klasse für GetApplicationDocumentResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetApplicationDocumentResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetApplicationDocumentResponse_Type", propOrder = { - "dokument" -}) -public class GetApplicationDocumentResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Dokument") - protected DokumentInfoType dokument; - - /** - * Ruft den Wert der dokument-Eigenschaft ab. - * - * @return - * possible object is - * {@link DokumentInfoType } - * - */ - public DokumentInfoType getDokument() { - return dokument; - } - - /** - * Legt den Wert der dokument-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DokumentInfoType } - * - */ - public void setDokument(DokumentInfoType value) { - this.dokument = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java deleted file mode 100644 index 35a71f93..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/ZusaetzlicheAntragsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung des Antrags um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheAntragsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdaten_Type") -public abstract class ZusaetzlicheAntragsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/package-info.java deleted file mode 100644 index d95cefc7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/common/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/AssistanceKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/AssistanceKfzType.java deleted file mode 100644 index 284e85dc..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/AssistanceKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Assistance - * - *

Java-Klasse für AssistanceKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AssistanceKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AssistanceKfz_Type") -public class AssistanceKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzRequestType.java deleted file mode 100644 index 901b6d52..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateRequestType; - - -/** - * Typ des Requestobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateKfzRequestType - extends CalculateRequestType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected SpezBerechnungKfzType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsanfrage(SpezBerechnungKfzType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzResponseType.java deleted file mode 100644 index a0e92564..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CalculateKfzResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateResponseType; - - -/** - * Typ des Responseobjekts für eine Kfz-Berechnung - * - *

Java-Klasse für CalculateKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezBerechnungKfz_Type" minOccurs="0"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}UpsellingKfzResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateKfzResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateKfzResponseType - extends CalculateResponseType -{ - - @XmlElement(name = "Berechnungsantwort") - protected SpezBerechnungKfzType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingKfzResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezBerechnungKfzType } - * - */ - public SpezBerechnungKfzType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezBerechnungKfzType } - * - */ - public void setBerechnungsantwort(SpezBerechnungKfzType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingKfzResponseType } - * - */ - public UpsellingKfzResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingKfzResponseType } - * - */ - public void setResponseUpselling(UpsellingKfzResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzRequestType.java deleted file mode 100644 index dc28cc07..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationRequestType; - - -/** - * Typ des Requestobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class CreateApplicationKfzRequestType - extends CreateApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage", required = true) - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzResponseType.java deleted file mode 100644 index adfb75ab..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationResponseType; - - -/** - * Typ des Responseobjekts für die Erzeugung eines Kfz-Antrags - * - *

Java-Klasse für CreateApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class CreateApplicationKfzResponseType - extends CreateApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzRequestType.java deleted file mode 100644 index 66d50c64..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferRequestType; - - -/** - * Typ des Request für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferKfzRequestType - extends CreateOfferRequestType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected SpezOffertKfzType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezOffertKfzType } - * - */ - public SpezOffertKfzType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezOffertKfzType } - * - */ - public void setOffertanfrage(SpezOffertKfzType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzResponseType.java deleted file mode 100644 index 13e9e773..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/CreateOfferKfzResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferResponseType; - - -/** - * Typ des Response für ein Kfz-Offert - * - *

Java-Klasse für CreateOfferKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
- *       <sequence>
- *         <element name="Offertantwort" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferKfzResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferKfzResponseType - extends CreateOfferResponseType -{ - - @XmlElement(name = "Offertantwort") - protected CreateOfferKfzResponseType.Offertantwort offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public CreateOfferKfzResponseType.Offertantwort getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link CreateOfferKfzResponseType.Offertantwort } - * - */ - public void setOffertantwort(CreateOfferKfzResponseType.Offertantwort value) { - this.offertantwort = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezOffertKfz_Type">
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "") - public static class Offertantwort - extends SpezOffertKfzType - { - - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ElementarproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ElementarproduktKfzType.java deleted file mode 100644 index 2b9c7f79..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ElementarproduktKfzType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementarproduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Elementarprodukte - * - *

Java-Klasse für ElementarproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FahrzeugRefLfdNr" minOccurs="0"/>
- *         <element name="LeasingVerbundUnternehmen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktKfz_Type", propOrder = { - "fahrzeugRefLfdNr", - "leasingVerbundUnternehmen" -}) -@XmlSeeAlso({ - HaftpflichtKfzType.class, - KaskoKfzType.class, - InsassenUnfallKfzType.class, - LenkerUnfallKfzType.class, - AssistanceKfzType.class -}) -public abstract class ElementarproduktKfzType - extends ElementarproduktType -{ - - @XmlElement(name = "FahrzeugRefLfdNr") - protected String fahrzeugRefLfdNr; - @XmlElement(name = "LeasingVerbundUnternehmen") - protected Boolean leasingVerbundUnternehmen; - - /** - * Ruft den Wert der fahrzeugRefLfdNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugRefLfdNr() { - return fahrzeugRefLfdNr; - } - - /** - * Legt den Wert der fahrzeugRefLfdNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugRefLfdNr(String value) { - this.fahrzeugRefLfdNr = value; - } - - /** - * Ruft den Wert der leasingVerbundUnternehmen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingVerbundUnternehmen() { - return leasingVerbundUnternehmen; - } - - /** - * Legt den Wert der leasingVerbundUnternehmen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingVerbundUnternehmen(Boolean value) { - this.leasingVerbundUnternehmen = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/FzZustandBesichtigungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/FzZustandBesichtigungType.java deleted file mode 100644 index 1c81f588..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/FzZustandBesichtigungType.java +++ /dev/null @@ -1,295 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Ergebnisse einer Besichtigung - * - *

Java-Klasse für FzZustandBesichtigung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="FzZustandBesichtigung_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ArtBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ArtBesichtigung_Type"/>
- *         <element name="SchaedenAnScheibenKleinglas" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAnScheibenKleinglas_Type" minOccurs="0"/>
- *         <element name="SchaedenAmFahrzeug" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SchaedenAmFahrzeug_Type" minOccurs="0"/>
- *         <element name="KilometerLtBesichtigung" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FzZustandBesichtigung_Type", propOrder = { - "zustandsberichtLiegtAlsFormularBei", - "artBesichtigung", - "schaedenAnScheibenKleinglas", - "schaedenAmFahrzeug", - "kilometerLtBesichtigung", - "vorschaeden", - "besichtigungsort", - "besichtigungsdatum", - "grundFuerNachbesichtigung" -}) -public class FzZustandBesichtigungType { - - @XmlElement(name = "ZustandsberichtLiegtAlsFormularBei") - protected Boolean zustandsberichtLiegtAlsFormularBei; - @XmlElement(name = "ArtBesichtigung", required = true) - @XmlSchemaType(name = "string") - protected ArtBesichtigungType artBesichtigung; - @XmlElement(name = "SchaedenAnScheibenKleinglas") - @XmlSchemaType(name = "string") - protected SchaedenAnScheibenKleinglasType schaedenAnScheibenKleinglas; - @XmlElement(name = "SchaedenAmFahrzeug") - @XmlSchemaType(name = "string") - protected SchaedenAmFahrzeugType schaedenAmFahrzeug; - @XmlElement(name = "KilometerLtBesichtigung") - protected BigInteger kilometerLtBesichtigung; - @XmlElement(name = "Vorschaeden") - protected String vorschaeden; - @XmlElement(name = "Besichtigungsort") - protected String besichtigungsort; - @XmlElement(name = "Besichtigungsdatum") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar besichtigungsdatum; - @XmlElement(name = "GrundFuerNachbesichtigung") - protected String grundFuerNachbesichtigung; - - /** - * Ruft den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isZustandsberichtLiegtAlsFormularBei() { - return zustandsberichtLiegtAlsFormularBei; - } - - /** - * Legt den Wert der zustandsberichtLiegtAlsFormularBei-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setZustandsberichtLiegtAlsFormularBei(Boolean value) { - this.zustandsberichtLiegtAlsFormularBei = value; - } - - /** - * Ruft den Wert der artBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArtBesichtigungType } - * - */ - public ArtBesichtigungType getArtBesichtigung() { - return artBesichtigung; - } - - /** - * Legt den Wert der artBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArtBesichtigungType } - * - */ - public void setArtBesichtigung(ArtBesichtigungType value) { - this.artBesichtigung = value; - } - - /** - * Ruft den Wert der schaedenAnScheibenKleinglas-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public SchaedenAnScheibenKleinglasType getSchaedenAnScheibenKleinglas() { - return schaedenAnScheibenKleinglas; - } - - /** - * Legt den Wert der schaedenAnScheibenKleinglas-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAnScheibenKleinglasType } - * - */ - public void setSchaedenAnScheibenKleinglas(SchaedenAnScheibenKleinglasType value) { - this.schaedenAnScheibenKleinglas = value; - } - - /** - * Ruft den Wert der schaedenAmFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchaedenAmFahrzeugType } - * - */ - public SchaedenAmFahrzeugType getSchaedenAmFahrzeug() { - return schaedenAmFahrzeug; - } - - /** - * Legt den Wert der schaedenAmFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchaedenAmFahrzeugType } - * - */ - public void setSchaedenAmFahrzeug(SchaedenAmFahrzeugType value) { - this.schaedenAmFahrzeug = value; - } - - /** - * Ruft den Wert der kilometerLtBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getKilometerLtBesichtigung() { - return kilometerLtBesichtigung; - } - - /** - * Legt den Wert der kilometerLtBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setKilometerLtBesichtigung(BigInteger value) { - this.kilometerLtBesichtigung = value; - } - - /** - * Ruft den Wert der vorschaeden-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorschaeden() { - return vorschaeden; - } - - /** - * Legt den Wert der vorschaeden-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorschaeden(String value) { - this.vorschaeden = value; - } - - /** - * Ruft den Wert der besichtigungsort-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBesichtigungsort() { - return besichtigungsort; - } - - /** - * Legt den Wert der besichtigungsort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBesichtigungsort(String value) { - this.besichtigungsort = value; - } - - /** - * Ruft den Wert der besichtigungsdatum-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBesichtigungsdatum() { - return besichtigungsdatum; - } - - /** - * Legt den Wert der besichtigungsdatum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBesichtigungsdatum(XMLGregorianCalendar value) { - this.besichtigungsdatum = value; - } - - /** - * Ruft den Wert der grundFuerNachbesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrundFuerNachbesichtigung() { - return grundFuerNachbesichtigung; - } - - /** - * Legt den Wert der grundFuerNachbesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrundFuerNachbesichtigung(String value) { - this.grundFuerNachbesichtigung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/HaftpflichtKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/HaftpflichtKfzType.java deleted file mode 100644 index 626f6ade..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/HaftpflichtKfzType.java +++ /dev/null @@ -1,211 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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; -import at.vvo.omds.types.omds2Types.v2_14.ELEinstufungType; -import at.vvo.omds.types.omds2Types.v2_14.ELVersicherungssummeType; - - -/** - * Typ für das Elementarprodukt KFZ-Haftpflicht - * - *

Java-Klasse für HaftpflichtKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HaftpflichtKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element ref="{urn:omds20}EL-Versicherungssumme"/>
- *         <element name="VarianteLeihwagen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VarianteLeihwagen_Type"/>
- *         <element ref="{urn:omds20}EL-Einstufung"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="VDNummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HaftpflichtKfz_Type", propOrder = { - "art", - "elVersicherungssumme", - "varianteLeihwagen", - "elEinstufung", - "zielpraemie", - "vdNummer" -}) -public class HaftpflichtKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "EL-Versicherungssumme", namespace = "urn:omds20", required = true) - protected ELVersicherungssummeType elVersicherungssumme; - @XmlElement(name = "VarianteLeihwagen", required = true) - @XmlSchemaType(name = "string") - protected VarianteLeihwagenType varianteLeihwagen; - @XmlElement(name = "EL-Einstufung", namespace = "urn:omds20", required = true) - protected ELEinstufungType elEinstufung; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "VDNummer") - protected String vdNummer; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Versicherungssumme Haftpflicht - * - * @return - * possible object is - * {@link ELVersicherungssummeType } - * - */ - public ELVersicherungssummeType getELVersicherungssumme() { - return elVersicherungssumme; - } - - /** - * Legt den Wert der elVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELVersicherungssummeType } - * - */ - public void setELVersicherungssumme(ELVersicherungssummeType value) { - this.elVersicherungssumme = value; - } - - /** - * Ruft den Wert der varianteLeihwagen-Eigenschaft ab. - * - * @return - * possible object is - * {@link VarianteLeihwagenType } - * - */ - public VarianteLeihwagenType getVarianteLeihwagen() { - return varianteLeihwagen; - } - - /** - * Legt den Wert der varianteLeihwagen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VarianteLeihwagenType } - * - */ - public void setVarianteLeihwagen(VarianteLeihwagenType value) { - this.varianteLeihwagen = value; - } - - /** - * Ruft den Wert der elEinstufung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ELEinstufungType } - * - */ - public ELEinstufungType getELEinstufung() { - return elEinstufung; - } - - /** - * Legt den Wert der elEinstufung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ELEinstufungType } - * - */ - public void setELEinstufung(ELEinstufungType value) { - this.elEinstufung = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der vdNummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVDNummer() { - return vdNummer; - } - - /** - * Legt den Wert der vdNummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVDNummer(String value) { - this.vdNummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/InsassenUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/InsassenUnfallKfzType.java deleted file mode 100644 index e7c05176..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/InsassenUnfallKfzType.java +++ /dev/null @@ -1,68 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Insassenunfall - * - *

Java-Klasse für InsassenUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="InsassenUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="InsassenUnfallSystem" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallSystem_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsassenUnfallKfz_Type", propOrder = { - "insassenUnfallSystem" -}) -public class InsassenUnfallKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "InsassenUnfallSystem", required = true) - @XmlSchemaType(name = "string") - protected InsassenUnfallSystemType insassenUnfallSystem; - - /** - * Ruft den Wert der insassenUnfallSystem-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallSystemType } - * - */ - public InsassenUnfallSystemType getInsassenUnfallSystem() { - return insassenUnfallSystem; - } - - /** - * Legt den Wert der insassenUnfallSystem-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallSystemType } - * - */ - public void setInsassenUnfallSystem(InsassenUnfallSystemType value) { - this.insassenUnfallSystem = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/KaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/KaskoKfzType.java deleted file mode 100644 index c6a57601..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/KaskoKfzType.java +++ /dev/null @@ -1,264 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.BezugsrechtType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VinkulierungType; - - -/** - * Abstrakter Basistyp für die Kasko-Elementarprodukte - * - *

Java-Klasse für KaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="KaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *       <sequence>
- *         <element name="Art" type="{urn:omds20}VtgSparteCd_Type"/>
- *         <element name="SelbstbehaltBisBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="KMLeistung" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="VorsteuerAbzugBerechtigung" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkulierung_Type" minOccurs="0"/>
- *         <element name="Bezugsrecht" type="{urn:omds3CommonServiceTypes-1-1-0}Bezugsrecht_Type" minOccurs="0"/>
- *         <element name="Zielpraemie" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Eingeschraenkt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KaskoKfz_Type", propOrder = { - "art", - "selbstbehaltBisBetrag", - "kmLeistung", - "vorsteuerAbzugBerechtigung", - "vinkulierung", - "bezugsrecht", - "zielpraemie", - "eingeschraenkt" -}) -@XmlSeeAlso({ - TeilkaskoKfzType.class, - VollkaskoKfzType.class -}) -public abstract class KaskoKfzType - extends ElementarproduktKfzType -{ - - @XmlElement(name = "Art", required = true) - protected String art; - @XmlElement(name = "SelbstbehaltBisBetrag") - protected BigDecimal selbstbehaltBisBetrag; - @XmlElement(name = "KMLeistung") - @XmlSchemaType(name = "unsignedInt") - protected Long kmLeistung; - @XmlElement(name = "VorsteuerAbzugBerechtigung") - protected boolean vorsteuerAbzugBerechtigung; - @XmlElement(name = "Vinkulierung") - protected VinkulierungType vinkulierung; - @XmlElement(name = "Bezugsrecht") - protected BezugsrechtType bezugsrecht; - @XmlElement(name = "Zielpraemie") - protected BigDecimal zielpraemie; - @XmlElement(name = "Eingeschraenkt", defaultValue = "0") - protected Boolean eingeschraenkt; - - /** - * Ruft den Wert der art-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArt() { - return art; - } - - /** - * Legt den Wert der art-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArt(String value) { - this.art = value; - } - - /** - * Ruft den Wert der selbstbehaltBisBetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSelbstbehaltBisBetrag() { - return selbstbehaltBisBetrag; - } - - /** - * Legt den Wert der selbstbehaltBisBetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSelbstbehaltBisBetrag(BigDecimal value) { - this.selbstbehaltBisBetrag = value; - } - - /** - * Ruft den Wert der kmLeistung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKMLeistung() { - return kmLeistung; - } - - /** - * Legt den Wert der kmLeistung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKMLeistung(Long value) { - this.kmLeistung = value; - } - - /** - * Ruft den Wert der vorsteuerAbzugBerechtigung-Eigenschaft ab. - * - */ - public boolean isVorsteuerAbzugBerechtigung() { - return vorsteuerAbzugBerechtigung; - } - - /** - * Legt den Wert der vorsteuerAbzugBerechtigung-Eigenschaft fest. - * - */ - public void setVorsteuerAbzugBerechtigung(boolean value) { - this.vorsteuerAbzugBerechtigung = value; - } - - /** - * Ruft den Wert der vinkulierung-Eigenschaft ab. - * - * @return - * possible object is - * {@link VinkulierungType } - * - */ - public VinkulierungType getVinkulierung() { - return vinkulierung; - } - - /** - * Legt den Wert der vinkulierung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VinkulierungType } - * - */ - public void setVinkulierung(VinkulierungType value) { - this.vinkulierung = value; - } - - /** - * Ruft den Wert der bezugsrecht-Eigenschaft ab. - * - * @return - * possible object is - * {@link BezugsrechtType } - * - */ - public BezugsrechtType getBezugsrecht() { - return bezugsrecht; - } - - /** - * Legt den Wert der bezugsrecht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BezugsrechtType } - * - */ - public void setBezugsrecht(BezugsrechtType value) { - this.bezugsrecht = value; - } - - /** - * Ruft den Wert der zielpraemie-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getZielpraemie() { - return zielpraemie; - } - - /** - * Legt den Wert der zielpraemie-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setZielpraemie(BigDecimal value) { - this.zielpraemie = value; - } - - /** - * Ruft den Wert der eingeschraenkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEingeschraenkt() { - return eingeschraenkt; - } - - /** - * Legt den Wert der eingeschraenkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEingeschraenkt(Boolean value) { - this.eingeschraenkt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/LenkerUnfallKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/LenkerUnfallKfzType.java deleted file mode 100644 index 07d19064..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/LenkerUnfallKfzType.java +++ /dev/null @@ -1,34 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für das Elementarprodukt KFZ-Lenkerunfall - * - *

Java-Klasse für LenkerUnfallKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LenkerUnfallKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ElementarproduktKfz_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LenkerUnfallKfz_Type") -public class LenkerUnfallKfzType - extends ElementarproduktKfzType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java deleted file mode 100644 index 2e57f3bb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzRechtsschutzType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für eine Kfz-Rechtsschutz-Versicherung, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfzRechtsschutz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfzRechtsschutz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type">
- *       <sequence>
- *         <element name="Verkehrsrechtsschutz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkehrsrechtsschutzKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfzRechtsschutz_Type", propOrder = { - "verkehrsrechtsschutz" -}) -public class ProduktKfzRechtsschutzType - extends ZusatzproduktKfzType -{ - - @XmlElement(name = "Verkehrsrechtsschutz", required = true) - protected VerkehrsrechtsschutzKfzType verkehrsrechtsschutz; - - /** - * Ruft den Wert der verkehrsrechtsschutz-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public VerkehrsrechtsschutzKfzType getVerkehrsrechtsschutz() { - return verkehrsrechtsschutz; - } - - /** - * Legt den Wert der verkehrsrechtsschutz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkehrsrechtsschutzKfzType } - * - */ - public void setVerkehrsrechtsschutz(VerkehrsrechtsschutzKfzType value) { - this.verkehrsrechtsschutz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzType.java deleted file mode 100644 index 6ac6b68c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ProduktKfzType.java +++ /dev/null @@ -1,198 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ProduktType; - - -/** - * Typ für ein Kfz-Produkt, welches einer Vertragssparte entspricht - * - *

Java-Klasse für ProduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *       <sequence>
- *         <element name="Haftpflicht" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}HaftpflichtKfz_Type"/>
- *         <choice>
- *           <element name="Teilkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}TeilkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *           <element name="Vollkasko" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VollkaskoKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         </choice>
- *         <element name="Insassenunfall" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}InsassenUnfallKfz_Type" minOccurs="0"/>
- *         <element name="Assistance" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}AssistanceKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktKfz_Type", propOrder = { - "haftpflicht", - "teilkasko", - "vollkasko", - "insassenunfall", - "assistance" -}) -public class ProduktKfzType - extends ProduktType -{ - - @XmlElement(name = "Haftpflicht", required = true) - protected HaftpflichtKfzType haftpflicht; - @XmlElement(name = "Teilkasko") - protected List teilkasko; - @XmlElement(name = "Vollkasko") - protected List vollkasko; - @XmlElement(name = "Insassenunfall") - protected InsassenUnfallKfzType insassenunfall; - @XmlElement(name = "Assistance") - protected List assistance; - - /** - * Ruft den Wert der haftpflicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link HaftpflichtKfzType } - * - */ - public HaftpflichtKfzType getHaftpflicht() { - return haftpflicht; - } - - /** - * Legt den Wert der haftpflicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link HaftpflichtKfzType } - * - */ - public void setHaftpflicht(HaftpflichtKfzType value) { - this.haftpflicht = value; - } - - /** - * Gets the value of the teilkasko property. - * - *

- * 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 set method for the teilkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTeilkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TeilkaskoKfzType } - * - * - */ - public List getTeilkasko() { - if (teilkasko == null) { - teilkasko = new ArrayList(); - } - return this.teilkasko; - } - - /** - * Gets the value of the vollkasko property. - * - *

- * 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 set method for the vollkasko property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVollkasko().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VollkaskoKfzType } - * - * - */ - public List getVollkasko() { - if (vollkasko == null) { - vollkasko = new ArrayList(); - } - return this.vollkasko; - } - - /** - * Ruft den Wert der insassenunfall-Eigenschaft ab. - * - * @return - * possible object is - * {@link InsassenUnfallKfzType } - * - */ - public InsassenUnfallKfzType getInsassenunfall() { - return insassenunfall; - } - - /** - * Legt den Wert der insassenunfall-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link InsassenUnfallKfzType } - * - */ - public void setInsassenunfall(InsassenUnfallKfzType value) { - this.insassenunfall = value; - } - - /** - * Gets the value of the assistance property. - * - *

- * 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 set method for the assistance property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAssistance().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AssistanceKfzType } - * - * - */ - public List getAssistance() { - if (assistance == null) { - assistance = new ArrayList(); - } - return this.assistance; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezBerechnungKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezBerechnungKfzType.java deleted file mode 100644 index e51307e9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezBerechnungKfzType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für SpezBerechnungKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezBerechnungKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezBerechnungKfz_Type", propOrder = { - "verkaufsprodukt" -}) -public class SpezBerechnungKfzType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezOffertKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezOffertKfzType.java deleted file mode 100644 index 60520f3a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SpezOffertKfzType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für SpezOffertKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpezOffertKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpezOffertKfz_Type", propOrder = { - "verkaufsprodukt" -}) -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.CreateOfferKfzResponseType.Offertantwort.class -}) -public class SpezOffertKfzType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktKfzType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktKfzType } - * - */ - public VerkaufsproduktKfzType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktKfzType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktKfzType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java deleted file mode 100644 index 95c7f447..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationRequestType; - - -/** - * Typ des Requestobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
- *       <sequence>
- *         <element name="Antraganfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzRequest_Type", propOrder = { - "antraganfrage" -}) -public class SubmitApplicationKfzRequestType - extends SubmitApplicationRequestType -{ - - @XmlElement(name = "Antraganfrage") - protected SpezAntragKfzType antraganfrage; - - /** - * Ruft den Wert der antraganfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntraganfrage() { - return antraganfrage; - } - - /** - * Legt den Wert der antraganfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntraganfrage(SpezAntragKfzType value) { - this.antraganfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java deleted file mode 100644 index ad24e4e3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/SubmitApplicationKfzResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationResponseType; - - -/** - * Typ des Responseobjekts für eine Antragseinreichung Kfz - * - *

Java-Klasse für SubmitApplicationKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationKfzResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
- *       <sequence>
- *         <element name="Antragantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}SpezAntragKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationKfzResponse_Type", propOrder = { - "antragantwort" -}) -public class SubmitApplicationKfzResponseType - extends SubmitApplicationResponseType -{ - - @XmlElement(name = "Antragantwort") - protected SpezAntragKfzType antragantwort; - - /** - * Ruft den Wert der antragantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpezAntragKfzType } - * - */ - public SpezAntragKfzType getAntragantwort() { - return antragantwort; - } - - /** - * Legt den Wert der antragantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpezAntragKfzType } - * - */ - public void setAntragantwort(SpezAntragKfzType value) { - this.antragantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/TeilkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/TeilkaskoKfzType.java deleted file mode 100644 index b162aa87..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/TeilkaskoKfzType.java +++ /dev/null @@ -1,58 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Teilkasko - * - *

Java-Klasse für TeilkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="TeilkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Vandalismusklausel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TeilkaskoKfz_Type", propOrder = { - "vandalismusklausel" -}) -public class TeilkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Vandalismusklausel") - protected boolean vandalismusklausel; - - /** - * Ruft den Wert der vandalismusklausel-Eigenschaft ab. - * - */ - public boolean isVandalismusklausel() { - return vandalismusklausel; - } - - /** - * Legt den Wert der vandalismusklausel-Eigenschaft fest. - * - */ - public void setVandalismusklausel(boolean value) { - this.vandalismusklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/UpsellingKfzResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/UpsellingKfzResponseType.java deleted file mode 100644 index 67206959..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/UpsellingKfzResponseType.java +++ /dev/null @@ -1,71 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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; - - -/** - * Response Upselling Alternativen - * - *

Java-Klasse für UpsellingKfzResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingKfzResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UpsellingVerkaufsprodukte" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}VerkaufsproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingKfzResponse_Type", propOrder = { - "upsellingVerkaufsprodukte" -}) -public abstract class UpsellingKfzResponseType { - - @XmlElement(name = "UpsellingVerkaufsprodukte") - protected List upsellingVerkaufsprodukte; - - /** - * Gets the value of the upsellingVerkaufsprodukte property. - * - *

- * 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 set method for the upsellingVerkaufsprodukte property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUpsellingVerkaufsprodukte().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link VerkaufsproduktKfzType } - * - * - */ - public List getUpsellingVerkaufsprodukte() { - if (upsellingVerkaufsprodukte == null) { - upsellingVerkaufsprodukte = new ArrayList(); - } - return this.upsellingVerkaufsprodukte; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkaufsproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkaufsproduktKfzType.java deleted file mode 100644 index 9ada0c34..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkaufsproduktKfzType.java +++ /dev/null @@ -1,237 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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; -import at.vvo.omds.types.omds2Types.v2_14.PersArtCdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.FahrzeugType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VerkaufsproduktType; - - -/** - * Typ für ein Kfz-Produktbündel, welches einem Vertrag entspricht - * - *

Java-Klasse für VerkaufsproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkaufsproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type">
- *       <sequence>
- *         <element name="Gebdat" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="PLZ" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="7"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="PersArtCd" type="{urn:omds20}PersArtCd_Type" minOccurs="0"/>
- *         <element name="KfzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ProduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="KfzZusatzVersicherung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusatzproduktKfz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="VersicherteFahrzeuge" type="{urn:omds3CommonServiceTypes-1-1-0}Fahrzeug_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkaufsproduktKfz_Type", propOrder = { - "gebdat", - "plz", - "persArtCd", - "kfzVersicherung", - "kfzZusatzVersicherung", - "versicherteFahrzeuge" -}) -public class VerkaufsproduktKfzType - extends VerkaufsproduktType -{ - - @XmlElement(name = "Gebdat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar gebdat; - @XmlElement(name = "PLZ") - protected String plz; - @XmlElement(name = "PersArtCd") - @XmlSchemaType(name = "string") - protected PersArtCdType persArtCd; - @XmlElement(name = "KfzVersicherung") - protected List kfzVersicherung; - @XmlElement(name = "KfzZusatzVersicherung") - protected List kfzZusatzVersicherung; - @XmlElement(name = "VersicherteFahrzeuge") - protected List versicherteFahrzeuge; - - /** - * Ruft den Wert der gebdat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGebdat() { - return gebdat; - } - - /** - * Legt den Wert der gebdat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGebdat(XMLGregorianCalendar value) { - this.gebdat = value; - } - - /** - * Ruft den Wert der 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 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; - } - - /** - * Gets the value of the kfzVersicherung property. - * - *

- * 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 set method for the kfzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProduktKfzType } - * - * - */ - public List getKfzVersicherung() { - if (kfzVersicherung == null) { - kfzVersicherung = new ArrayList(); - } - return this.kfzVersicherung; - } - - /** - * Gets the value of the kfzZusatzVersicherung property. - * - *

- * 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 set method for the kfzZusatzVersicherung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getKfzZusatzVersicherung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusatzproduktKfzType } - * - * - */ - public List getKfzZusatzVersicherung() { - if (kfzZusatzVersicherung == null) { - kfzZusatzVersicherung = new ArrayList(); - } - return this.kfzZusatzVersicherung; - } - - /** - * Gets the value of the versicherteFahrzeuge property. - * - *

- * 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 set method for the versicherteFahrzeuge property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersicherteFahrzeuge().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FahrzeugType } - * - * - */ - public List getVersicherteFahrzeuge() { - if (versicherteFahrzeuge == null) { - versicherteFahrzeuge = new ArrayList(); - } - return this.versicherteFahrzeuge; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java deleted file mode 100644 index c3270405..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VerkehrsrechtsschutzKfzType.java +++ /dev/null @@ -1,35 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementarproduktType; - - -/** - * Typ für das Elementarprodukt KFZ-Verkehrsrechtsschutz - * - *

Java-Klasse für VerkehrsrechtsschutzKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VerkehrsrechtsschutzKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerkehrsrechtsschutzKfz_Type") -public class VerkehrsrechtsschutzKfzType - extends ElementarproduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VollkaskoKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VollkaskoKfzType.java deleted file mode 100644 index d8317480..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/VollkaskoKfzType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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 das Elementarprodukt KFZ-Vollkasko - * - *

Java-Klasse für VollkaskoKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VollkaskoKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}KaskoKfz_Type">
- *       <sequence>
- *         <element name="Neuwertklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Leasingklausel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VollkaskoKfz_Type", propOrder = { - "neuwertklausel", - "leasingklausel" -}) -public class VollkaskoKfzType - extends KaskoKfzType -{ - - @XmlElement(name = "Neuwertklausel") - protected Boolean neuwertklausel; - @XmlElement(name = "Leasingklausel") - protected Boolean leasingklausel; - - /** - * Ruft den Wert der neuwertklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isNeuwertklausel() { - return neuwertklausel; - } - - /** - * Legt den Wert der neuwertklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setNeuwertklausel(Boolean value) { - this.neuwertklausel = value; - } - - /** - * Ruft den Wert der leasingklausel-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLeasingklausel() { - return leasingklausel; - } - - /** - * Legt den Wert der leasingklausel-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLeasingklausel(Boolean value) { - this.leasingklausel = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/WechselkennzeichenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/WechselkennzeichenType.java deleted file mode 100644 index ea051c28..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/WechselkennzeichenType.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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 Wechselkennzeichen - * - *

Java-Klasse für Wechselkennzeichen_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Wechselkennzeichen_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WechselkennzeichenArt">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <enumeration value="Neues Fahrzeug als WKZ in bestehenden Vertrag einbündeln"/>
- *               <enumeration value="Fahrzeugwechsel im bestehenden WKZ-Vertrag"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Wechselkennzeichen_Type", propOrder = { - "wechselkennzeichenArt", - "bestehenderWechselkennzeichenvertrag", - "ersetztWirdFahrgestellnummer" -}) -public class WechselkennzeichenType { - - @XmlElement(name = "WechselkennzeichenArt", required = true) - protected String wechselkennzeichenArt; - @XmlElement(name = "BestehenderWechselkennzeichenvertrag", required = true) - protected String bestehenderWechselkennzeichenvertrag; - @XmlElement(name = "ErsetztWirdFahrgestellnummer") - protected String ersetztWirdFahrgestellnummer; - - /** - * Ruft den Wert der wechselkennzeichenArt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWechselkennzeichenArt() { - return wechselkennzeichenArt; - } - - /** - * Legt den Wert der wechselkennzeichenArt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWechselkennzeichenArt(String value) { - this.wechselkennzeichenArt = value; - } - - /** - * Ruft den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBestehenderWechselkennzeichenvertrag() { - return bestehenderWechselkennzeichenvertrag; - } - - /** - * Legt den Wert der bestehenderWechselkennzeichenvertrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBestehenderWechselkennzeichenvertrag(String value) { - this.bestehenderWechselkennzeichenvertrag = value; - } - - /** - * Ruft den Wert der ersetztWirdFahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErsetztWirdFahrgestellnummer() { - return ersetztWirdFahrgestellnummer; - } - - /** - * Legt den Wert der ersetztWirdFahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErsetztWirdFahrgestellnummer(String value) { - this.ersetztWirdFahrgestellnummer = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java deleted file mode 100644 index bd574f47..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheAntragsdatenKfzType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ für VU-Spezifische Erweiterungen bei der Kfz-Beschreibung im Antrag - * - *

Java-Klasse für ZusaetzlicheAntragsdatenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheAntragsdatenKfz_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheAntragsdatenKfz_Type") -public class ZusaetzlicheAntragsdatenKfzType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java deleted file mode 100644 index 3db3a2a0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusaetzlicheKfzdatenType.java +++ /dev/null @@ -1,270 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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 zusätzliche Kfz-Daten - * - *

Java-Klasse für ZusaetzlicheKfzdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheKfzdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="KfzKennzeichen">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="3"/>
- *               <maxLength value="9"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type"/>
- *         <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="Wechselkennzeichen" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Wechselkennzeichen_Type" minOccurs="0"/>
- *         <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FzZustandBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}FzZustandBesichtigung_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheAntragsdatenKfz" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ZusaetzlicheAntragsdatenKfz_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheKfzdaten_Type", propOrder = { - "kfzKennzeichen", - "fahrgestellnummer", - "erfolgtAnmeldungZeitgleichMitAbmeldung", - "abmeldedatumWechselkennzeichenFahrzeug", - "wechselkennzeichen", - "fahrzeugzustand", - "fzZustandBesichtigung", - "zusaetzlicheAntragsdatenKfz" -}) -public class ZusaetzlicheKfzdatenType { - - @XmlElement(name = "KfzKennzeichen", required = true) - protected String kfzKennzeichen; - @XmlElement(name = "Fahrgestellnummer", required = true) - protected String fahrgestellnummer; - @XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung") - protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung; - @XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug; - @XmlElement(name = "Wechselkennzeichen") - protected WechselkennzeichenType wechselkennzeichen; - @XmlElement(name = "Fahrzeugzustand") - protected String fahrzeugzustand; - @XmlElement(name = "FzZustandBesichtigung") - protected FzZustandBesichtigungType fzZustandBesichtigung; - @XmlElement(name = "ZusaetzlicheAntragsdatenKfz") - protected ZusaetzlicheAntragsdatenKfzType zusaetzlicheAntragsdatenKfz; - - /** - * Ruft den Wert der kfzKennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKfzKennzeichen() { - return kfzKennzeichen; - } - - /** - * Legt den Wert der kfzKennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKfzKennzeichen(String value) { - this.kfzKennzeichen = value; - } - - /** - * Ruft den Wert der fahrgestellnummer-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrgestellnummer() { - return fahrgestellnummer; - } - - /** - * Legt den Wert der fahrgestellnummer-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrgestellnummer(String value) { - this.fahrgestellnummer = value; - } - - /** - * Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() { - return erfolgtAnmeldungZeitgleichMitAbmeldung; - } - - /** - * Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) { - this.erfolgtAnmeldungZeitgleichMitAbmeldung = value; - } - - /** - * Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() { - return abmeldedatumWechselkennzeichenFahrzeug; - } - - /** - * Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) { - this.abmeldedatumWechselkennzeichenFahrzeug = value; - } - - /** - * Ruft den Wert der wechselkennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link WechselkennzeichenType } - * - */ - public WechselkennzeichenType getWechselkennzeichen() { - return wechselkennzeichen; - } - - /** - * Legt den Wert der wechselkennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WechselkennzeichenType } - * - */ - public void setWechselkennzeichen(WechselkennzeichenType value) { - this.wechselkennzeichen = value; - } - - /** - * Ruft den Wert der fahrzeugzustand-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFahrzeugzustand() { - return fahrzeugzustand; - } - - /** - * Legt den Wert der fahrzeugzustand-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFahrzeugzustand(String value) { - this.fahrzeugzustand = value; - } - - /** - * Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab. - * - * @return - * possible object is - * {@link FzZustandBesichtigungType } - * - */ - public FzZustandBesichtigungType getFzZustandBesichtigung() { - return fzZustandBesichtigung; - } - - /** - * Legt den Wert der fzZustandBesichtigung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link FzZustandBesichtigungType } - * - */ - public void setFzZustandBesichtigung(FzZustandBesichtigungType value) { - this.fzZustandBesichtigung = value; - } - - /** - * Ruft den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public ZusaetzlicheAntragsdatenKfzType getZusaetzlicheAntragsdatenKfz() { - return zusaetzlicheAntragsdatenKfz; - } - - /** - * Legt den Wert der zusaetzlicheAntragsdatenKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheAntragsdatenKfzType } - * - */ - public void setZusaetzlicheAntragsdatenKfz(ZusaetzlicheAntragsdatenKfzType value) { - this.zusaetzlicheAntragsdatenKfz = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusatzproduktKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusatzproduktKfzType.java deleted file mode 100644 index 0d0fb22c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/ZusatzproduktKfzType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; - -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_7_0.common.ProduktType; - - -/** - * Abstrakte Basisklasse für KFZ-Zusatzprodukte, die mit einer KFZ-Versicherung gebündelt werden können. - * - *

Java-Klasse für ZusatzproduktKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusatzproduktKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produkt_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusatzproduktKfz_Type") -@XmlSeeAlso({ - ProduktKfzRechtsschutzType.class -}) -public abstract class ZusatzproduktKfzType - extends ProduktType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/package-info.java deleted file mode 100644 index 54d956d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/kfz/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/AntragSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/AntragSachPrivatType.java deleted file mode 100644 index 178f95c2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/AntragSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezAntragType; - - -/** - * Typ der das Produkt beschreibt und in Antraganfrage und Antragantwort verwendet wird - * - *

Java-Klasse für AntragSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="AntragSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AntragSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class AntragSachPrivatType - extends SpezAntragType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java deleted file mode 100644 index e0a2b9eb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/BerechnungSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezBerechnungType; - - -/** - * Typ der das Produkt beschreibt und in Berechnungsanfrage und Berechnungsantwort verwendet wird - * - *

Java-Klasse für BerechnungSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BerechnungSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerechnungSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class BerechnungSachPrivatType - extends SpezBerechnungType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java deleted file mode 100644 index 263cfac2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateRequestGenType; - - -/** - * Typ des Requestobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type">
- *       <sequence>
- *         <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatRequest_Type", propOrder = { - "berechnungsanfrage" -}) -public class CalculateSachPrivatRequestType - extends CalculateRequestGenType -{ - - @XmlElement(name = "Berechnungsanfrage", required = true) - protected BerechnungSachPrivatType berechnungsanfrage; - - /** - * Ruft den Wert der berechnungsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType getBerechnungsanfrage() { - return berechnungsanfrage; - } - - /** - * Legt den Wert der berechnungsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - public void setBerechnungsanfrage(BerechnungSachPrivatType value) { - this.berechnungsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java deleted file mode 100644 index 66bc3940..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CalculateSachPrivatResponseType.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CalculateResponseGenType; - - -/** - * Typ des Responseobjekts für eine Berechnung Sach-Privat - * - *

Java-Klasse für CalculateSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CalculateSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type">
- *       <sequence>
- *         <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}BerechnungSachPrivat_Type"/>
- *         <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}UpsellingSachPrivatResponse_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CalculateSachPrivatResponse_Type", propOrder = { - "berechnungsantwort", - "responseUpselling" -}) -public class CalculateSachPrivatResponseType - extends CalculateResponseGenType -{ - - @XmlElement(name = "Berechnungsantwort", required = true) - protected BerechnungSachPrivatType berechnungsantwort; - @XmlElement(name = "ResponseUpselling") - protected UpsellingSachPrivatResponseType responseUpselling; - - /** - * Ruft den Wert der berechnungsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link BerechnungSachPrivatType } - * - */ - public BerechnungSachPrivatType getBerechnungsantwort() { - return berechnungsantwort; - } - - /** - * Legt den Wert der berechnungsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BerechnungSachPrivatType } - * - */ - public void setBerechnungsantwort(BerechnungSachPrivatType value) { - this.berechnungsantwort = value; - } - - /** - * Ruft den Wert der responseUpselling-Eigenschaft ab. - * - * @return - * possible object is - * {@link UpsellingSachPrivatResponseType } - * - */ - public UpsellingSachPrivatResponseType getResponseUpselling() { - return responseUpselling; - } - - /** - * Legt den Wert der responseUpselling-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UpsellingSachPrivatResponseType } - * - */ - public void setResponseUpselling(UpsellingSachPrivatResponseType value) { - this.responseUpselling = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java deleted file mode 100644 index 6470b0f2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationRequestGenType; - - -/** - * Typ des Requestobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -public class CreateApplicationSachPrivatRequestType - extends CreateApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage", required = true) - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java deleted file mode 100644 index e70ef271..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateApplicationResponseGenType; - - -/** - * Typ des Responseobjekts für einen Antrag Besitz - * - *

Java-Klasse für CreateApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -public class CreateApplicationSachPrivatResponseType - extends CreateApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java deleted file mode 100644 index a083a108..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferRequestGenType; - - -/** - * Typ des Requestobjekts für ein Offert Sach-Privat - * - *

Java-Klasse für CreateOfferSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type">
- *       <sequence>
- *         <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatRequest_Type", propOrder = { - "offertanfrage" -}) -public class CreateOfferSachPrivatRequestType - extends CreateOfferRequestGenType -{ - - @XmlElement(name = "Offertanfrage", required = true) - protected OffertSachPrivatType offertanfrage; - - /** - * Ruft den Wert der offertanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType getOffertanfrage() { - return offertanfrage; - } - - /** - * Legt den Wert der offertanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - public void setOffertanfrage(OffertSachPrivatType value) { - this.offertanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java deleted file mode 100644 index 5ba6bbb3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/CreateOfferSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.CreateOfferResponseGenType; - - -/** - * Typ des Responseobjekts für ein Offert Besitz - * - *

Java-Klasse für CreateOfferSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CreateOfferSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type">
- *       <sequence>
- *         <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}OffertSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreateOfferSachPrivatResponse_Type", propOrder = { - "offertantwort" -}) -public class CreateOfferSachPrivatResponseType - extends CreateOfferResponseGenType -{ - - @XmlElement(name = "Offertantwort", required = true) - protected OffertSachPrivatType offertantwort; - - /** - * Ruft den Wert der offertantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link OffertSachPrivatType } - * - */ - public OffertSachPrivatType getOffertantwort() { - return offertantwort; - } - - /** - * Legt den Wert der offertantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OffertSachPrivatType } - * - */ - public void setOffertantwort(OffertSachPrivatType value) { - this.offertantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java deleted file mode 100644 index 0ab9c487..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktGebaeudeType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäude-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktGebaeude_Type") -@XmlSeeAlso({ - GenElementarproduktGebaeudeType.class -}) -public class ElementarproduktGebaeudeType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java deleted file mode 100644 index 0a25f52b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktHaushaltType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spezifischerer Typ für ein Gebäudeinhalts-Elementarprodukt für einen Ansatz, in dem mit Vererbung für die einzelnen Sparten gearbeitet wird - * - *

Java-Klasse für ElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktSachPrivat_Type">
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktHaushalt_Type") -@XmlSeeAlso({ - GenElementarproduktHaushaltType.class -}) -public class ElementarproduktHaushaltType - extends ElementarproduktSachPrivatType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java deleted file mode 100644 index a9a80c53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ElementarproduktSachPrivatType.java +++ /dev/null @@ -1,281 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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 at.vvo.omds.types.omds3Types.r1_7_0.common.ElementarproduktGenerischType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.KostenFixOderProzentType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.SelbstbehaltType; - - -/** - * Wurzelelement für Sach-Privat-Elementarprodukte, auf welchem alle Sach-Privat Elementarprodukte aufbauen sollen - * - *

Java-Klasse für ElementarproduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ElementarproduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ElementarproduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Pauschalbetrag" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="Selbstbehalt" type="{urn:omds3CommonServiceTypes-1-1-0}Selbstbehalt_Type" minOccurs="0"/>
- *         <element name="Unterversicherungsverzicht" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ProzentVersicherungssumme" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="Nebenkosten" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Vorsorge" type="{urn:omds3CommonServiceTypes-1-1-0}KostenFixOderProzent_Type" minOccurs="0"/>
- *         <element name="Hoechsthaftungssumme" type="{urn:omds20}decimal" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ElementarproduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr", - "pauschalbetrag", - "selbstbehalt", - "unterversicherungsverzicht", - "prozentVersicherungssumme", - "nebenkosten", - "vorsorge", - "hoechsthaftungssumme" -}) -@XmlSeeAlso({ - ElementarproduktGebaeudeType.class, - ElementarproduktHaushaltType.class -}) -public class ElementarproduktSachPrivatType - extends ElementarproduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versObjekteRefLfnr; - @XmlElement(name = "Pauschalbetrag") - protected BigDecimal pauschalbetrag; - @XmlElement(name = "Selbstbehalt") - protected SelbstbehaltType selbstbehalt; - @XmlElement(name = "Unterversicherungsverzicht") - protected Boolean unterversicherungsverzicht; - @XmlElement(name = "ProzentVersicherungssumme") - @XmlSchemaType(name = "unsignedShort") - protected Integer prozentVersicherungssumme; - @XmlElement(name = "Nebenkosten") - protected KostenFixOderProzentType nebenkosten; - @XmlElement(name = "Vorsorge") - protected KostenFixOderProzentType vorsorge; - @XmlElement(name = "Hoechsthaftungssumme") - protected BigDecimal hoechsthaftungssumme; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - - /** - * Ruft den Wert der pauschalbetrag-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPauschalbetrag() { - return pauschalbetrag; - } - - /** - * Legt den Wert der pauschalbetrag-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPauschalbetrag(BigDecimal value) { - this.pauschalbetrag = value; - } - - /** - * Ruft den Wert der selbstbehalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link SelbstbehaltType } - * - */ - public SelbstbehaltType getSelbstbehalt() { - return selbstbehalt; - } - - /** - * Legt den Wert der selbstbehalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SelbstbehaltType } - * - */ - public void setSelbstbehalt(SelbstbehaltType value) { - this.selbstbehalt = value; - } - - /** - * Ruft den Wert der unterversicherungsverzicht-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isUnterversicherungsverzicht() { - return unterversicherungsverzicht; - } - - /** - * Legt den Wert der unterversicherungsverzicht-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setUnterversicherungsverzicht(Boolean value) { - this.unterversicherungsverzicht = value; - } - - /** - * Ruft den Wert der prozentVersicherungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getProzentVersicherungssumme() { - return prozentVersicherungssumme; - } - - /** - * Legt den Wert der prozentVersicherungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setProzentVersicherungssumme(Integer value) { - this.prozentVersicherungssumme = value; - } - - /** - * Ruft den Wert der nebenkosten-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType getNebenkosten() { - return nebenkosten; - } - - /** - * Legt den Wert der nebenkosten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - public void setNebenkosten(KostenFixOderProzentType value) { - this.nebenkosten = value; - } - - /** - * Ruft den Wert der vorsorge-Eigenschaft ab. - * - * @return - * possible object is - * {@link KostenFixOderProzentType } - * - */ - public KostenFixOderProzentType getVorsorge() { - return vorsorge; - } - - /** - * Legt den Wert der vorsorge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link KostenFixOderProzentType } - * - */ - public void setVorsorge(KostenFixOderProzentType value) { - this.vorsorge = value; - } - - /** - * Ruft den Wert der hoechsthaftungssumme-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getHoechsthaftungssumme() { - return hoechsthaftungssumme; - } - - /** - * Legt den Wert der hoechsthaftungssumme-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setHoechsthaftungssumme(BigDecimal value) { - this.hoechsthaftungssumme = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java deleted file mode 100644 index 8fdffd6f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktGebaeudeType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}GebaeudeSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktGebaeude_Type", propOrder = { - "sparte" -}) -public class GenElementarproduktGebaeudeType - extends ElementarproduktGebaeudeType -{ - - @XmlElement(name = "Sparte", required = true) - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java deleted file mode 100644 index 0d387c01..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/GenElementarproduktHaushaltType.java +++ /dev/null @@ -1,66 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Elementarprodukt Gebäudeinhaltsversicherung für einen Ansatz, in dem nicht mit Vererbung gearbeitet wird. - * - *

Java-Klasse für GenElementarproduktHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GenElementarproduktHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type">
- *       <sequence>
- *         <element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}HaushaltSpartenCd_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GenElementarproduktHaushalt_Type", propOrder = { - "sparte" -}) -public class GenElementarproduktHaushaltType - extends ElementarproduktHaushaltType -{ - - @XmlElement(name = "Sparte", required = true) - protected String sparte; - - /** - * Ruft den Wert der sparte-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSparte() { - return sparte; - } - - /** - * Legt den Wert der sparte-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSparte(String value) { - this.sparte = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/OffertSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/OffertSachPrivatType.java deleted file mode 100644 index 70c7fbbd..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/OffertSachPrivatType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SpezOffertType; - - -/** - * Typ der das Produkt beschreibt und in Offertanfrage und Offertantwort verwendet wird - * - *

Java-Klasse für OffertSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OffertSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
- *       <sequence>
- *         <element name="Verkaufsprodukt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}VerkaufsproduktSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OffertSachPrivat_Type", propOrder = { - "verkaufsprodukt" -}) -public class OffertSachPrivatType - extends SpezOffertType -{ - - @XmlElement(name = "Verkaufsprodukt", required = true) - protected VerkaufsproduktSachPrivatType verkaufsprodukt; - - /** - * Ruft den Wert der verkaufsprodukt-Eigenschaft ab. - * - * @return - * possible object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public VerkaufsproduktSachPrivatType getVerkaufsprodukt() { - return verkaufsprodukt; - } - - /** - * Legt den Wert der verkaufsprodukt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VerkaufsproduktSachPrivatType } - * - */ - public void setVerkaufsprodukt(VerkaufsproduktSachPrivatType value) { - this.verkaufsprodukt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java deleted file mode 100644 index b775dc2e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktGebaeudeversicherungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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; - - -/** - * Spezifischerer Typ für Gebaeudeversicherungs-Produkte - * - *

Java-Klasse für ProduktGebaeudeversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktGebaeudeversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktGebaeudeversicherung_Type", propOrder = { - "deckungen" -}) -public class ProduktGebaeudeversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktGebaeudeType } - * - * - */ - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java deleted file mode 100644 index 7644b99e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktHaushaltsversicherungType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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; - - -/** - * Spezifischerer Typ für Gebäudeinhaltversicherungs-Produkte - * - *

Java-Klasse für ProduktHaushaltsversicherung_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktHaushaltsversicherung_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type">
- *       <sequence>
- *         <element name="Deckungen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ElementarproduktHaushalt_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktHaushaltsversicherung_Type", propOrder = { - "deckungen" -}) -public class ProduktHaushaltsversicherungType - extends ProduktSachPrivatType -{ - - @XmlElement(name = "Deckungen") - protected List deckungen; - - /** - * Gets the value of the deckungen property. - * - *

- * 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 set method for the deckungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDeckungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ElementarproduktHaushaltType } - * - * - */ - public List getDeckungen() { - if (deckungen == null) { - deckungen = new ArrayList(); - } - return this.deckungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktSachPrivatType.java deleted file mode 100644 index e7561003..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ProduktSachPrivatType.java +++ /dev/null @@ -1,81 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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_7_0.common.ProduktGenerischType; - - -/** - * Wurzelelement für Sach-Privat-Produkte, auf welchem alle Sach-Privat Produkte aufbauen sollen - * - *

Java-Klasse für ProduktSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ProduktSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type">
- *       <sequence>
- *         <element name="VersObjekteRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProduktSachPrivat_Type", propOrder = { - "versObjekteRefLfnr" -}) -@XmlSeeAlso({ - ProduktGebaeudeversicherungType.class, - ProduktHaushaltsversicherungType.class -}) -public class ProduktSachPrivatType - extends ProduktGenerischType -{ - - @XmlElement(name = "VersObjekteRefLfnr", type = Integer.class) - @XmlSchemaType(name = "unsignedShort") - protected List versObjekteRefLfnr; - - /** - * Gets the value of the versObjekteRefLfnr property. - * - *

- * 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 set method for the versObjekteRefLfnr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVersObjekteRefLfnr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getVersObjekteRefLfnr() { - if (versObjekteRefLfnr == null) { - versObjekteRefLfnr = new ArrayList(); - } - return this.versObjekteRefLfnr; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoAdresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoAdresseType.java deleted file mode 100644 index def1230b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoAdresseType.java +++ /dev/null @@ -1,181 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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.ADRESSEType; - - -/** - * Type zur Beschreibung einer Risikoadresse - * - *

Java-Klasse für RisikoAdresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoAdresse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds20}ADRESSE_Type">
- *       <sequence>
- *         <element name="Horazone" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
- *         <element name="ImVerbautenOrt" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="AusserhalbDesOrtsgebiets" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ErreichbarkeitFuerLoeschfahrzeuge" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Tarifzone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoAdresse_Type", propOrder = { - "horazone", - "imVerbautenOrt", - "ausserhalbDesOrtsgebiets", - "erreichbarkeitFuerLoeschfahrzeuge", - "tarifzone" -}) -public class RisikoAdresseType - extends ADRESSEType -{ - - @XmlElement(name = "Horazone") - @XmlSchemaType(name = "unsignedByte") - protected Short horazone; - @XmlElement(name = "ImVerbautenOrt") - protected Boolean imVerbautenOrt; - @XmlElement(name = "AusserhalbDesOrtsgebiets") - protected Boolean ausserhalbDesOrtsgebiets; - @XmlElement(name = "ErreichbarkeitFuerLoeschfahrzeuge") - protected Boolean erreichbarkeitFuerLoeschfahrzeuge; - @XmlElement(name = "Tarifzone") - protected String tarifzone; - - /** - * Ruft den Wert der horazone-Eigenschaft ab. - * - * @return - * possible object is - * {@link Short } - * - */ - public Short getHorazone() { - return horazone; - } - - /** - * Legt den Wert der horazone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Short } - * - */ - public void setHorazone(Short value) { - this.horazone = value; - } - - /** - * Ruft den Wert der imVerbautenOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isImVerbautenOrt() { - return imVerbautenOrt; - } - - /** - * Legt den Wert der imVerbautenOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setImVerbautenOrt(Boolean value) { - this.imVerbautenOrt = value; - } - - /** - * Ruft den Wert der ausserhalbDesOrtsgebiets-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAusserhalbDesOrtsgebiets() { - return ausserhalbDesOrtsgebiets; - } - - /** - * Legt den Wert der ausserhalbDesOrtsgebiets-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAusserhalbDesOrtsgebiets(Boolean value) { - this.ausserhalbDesOrtsgebiets = value; - } - - /** - * Ruft den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isErreichbarkeitFuerLoeschfahrzeuge() { - return erreichbarkeitFuerLoeschfahrzeuge; - } - - /** - * Legt den Wert der erreichbarkeitFuerLoeschfahrzeuge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setErreichbarkeitFuerLoeschfahrzeuge(Boolean value) { - this.erreichbarkeitFuerLoeschfahrzeuge = value; - } - - /** - * Ruft den Wert der tarifzone-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTarifzone() { - return tarifzone; - } - - /** - * Legt den Wert der tarifzone-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTarifzone(String value) { - this.tarifzone = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoGebaeudeType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoGebaeudeType.java deleted file mode 100644 index 95e274f4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoGebaeudeType.java +++ /dev/null @@ -1,427 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import java.math.BigDecimal; -import java.math.BigInteger; -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ELFlaecheType; -import at.vvo.omds.types.omds2Types.v2_14.Entsch2Type; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Gebäude - * - *

Java-Klasse für RisikoGebaeude_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoGebaeude_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type"/>
- *         <element name="GebaeudeBez" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="BauartCd" type="{urn:omds20}BauartCd_Type" minOccurs="0"/>
- *         <element name="DachungCd" type="{urn:omds20}DachungCd_Type" minOccurs="0"/>
- *         <element name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" minOccurs="0"/>
- *         <element name="BaujahrGebaeude" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="EL-Flaeche" type="{urn:omds20}EL-Flaeche_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Vorschaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoVorschaeden_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" minOccurs="0"/>
- *         <element name="SichergKz" type="{urn:omds20}Entsch2_Type" minOccurs="0"/>
- *         <element name="PreisProQm" type="{urn:omds20}decimal"/>
- *         <element name="ZusaetzlicheGebaeudedaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoGebaeude_Type", propOrder = { - "gebaeudeArtCd", - "gebaeudeBez", - "nutzungCd", - "bauartCd", - "dachungCd", - "gebaeudeHoeheCd", - "baujahrGebaeude", - "elFlaeche", - "vorschaeden", - "ausstattungCd", - "sichergKz", - "preisProQm", - "zusaetzlicheGebaeudedaten" -}) -public class RisikoGebaeudeType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "GebaeudeArtCd", required = true) - protected String gebaeudeArtCd; - @XmlElement(name = "GebaeudeBez", required = true) - protected String gebaeudeBez; - @XmlElement(name = "NutzungCd") - protected String nutzungCd; - @XmlElement(name = "BauartCd") - protected String bauartCd; - @XmlElement(name = "DachungCd") - protected String dachungCd; - @XmlElement(name = "GebaeudeHoeheCd") - protected String gebaeudeHoeheCd; - @XmlElement(name = "BaujahrGebaeude", required = true) - protected BigInteger baujahrGebaeude; - @XmlElement(name = "EL-Flaeche") - protected List elFlaeche; - @XmlElement(name = "Vorschaeden") - @XmlSchemaType(name = "string") - protected List vorschaeden; - @XmlElement(name = "AusstattungCd") - protected String ausstattungCd; - @XmlElement(name = "SichergKz") - @XmlSchemaType(name = "string") - protected Entsch2Type sichergKz; - @XmlElement(name = "PreisProQm", required = true) - protected BigDecimal preisProQm; - @XmlElement(name = "ZusaetzlicheGebaeudedaten") - protected List zusaetzlicheGebaeudedaten; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der gebaeudeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeBez() { - return gebaeudeBez; - } - - /** - * Legt den Wert der gebaeudeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeBez(String value) { - this.gebaeudeBez = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Ruft den Wert der bauartCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBauartCd() { - return bauartCd; - } - - /** - * Legt den Wert der bauartCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBauartCd(String value) { - this.bauartCd = value; - } - - /** - * Ruft den Wert der dachungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDachungCd() { - return dachungCd; - } - - /** - * Legt den Wert der dachungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDachungCd(String value) { - this.dachungCd = value; - } - - /** - * Ruft den Wert der gebaeudeHoeheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeHoeheCd() { - return gebaeudeHoeheCd; - } - - /** - * Legt den Wert der gebaeudeHoeheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeHoeheCd(String value) { - this.gebaeudeHoeheCd = value; - } - - /** - * Ruft den Wert der baujahrGebaeude-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getBaujahrGebaeude() { - return baujahrGebaeude; - } - - /** - * Legt den Wert der baujahrGebaeude-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setBaujahrGebaeude(BigInteger value) { - this.baujahrGebaeude = value; - } - - /** - * Gets the value of the elFlaeche property. - * - *

- * 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 set method for the elFlaeche property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELFlaeche().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELFlaecheType } - * - * - */ - public List getELFlaeche() { - if (elFlaeche == null) { - elFlaeche = new ArrayList(); - } - return this.elFlaeche; - } - - /** - * Gets the value of the vorschaeden property. - * - *

- * 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 set method for the vorschaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorschaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoVorschaedenType } - * - * - */ - public List getVorschaeden() { - if (vorschaeden == null) { - vorschaeden = new ArrayList(); - } - return this.vorschaeden; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der sichergKz-Eigenschaft ab. - * - * @return - * possible object is - * {@link Entsch2Type } - * - */ - public Entsch2Type getSichergKz() { - return sichergKz; - } - - /** - * Legt den Wert der sichergKz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Entsch2Type } - * - */ - public void setSichergKz(Entsch2Type value) { - this.sichergKz = value; - } - - /** - * Ruft den Wert der preisProQm-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPreisProQm() { - return preisProQm; - } - - /** - * Legt den Wert der preisProQm-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPreisProQm(BigDecimal value) { - this.preisProQm = value; - } - - /** - * Gets the value of the zusaetzlicheGebaeudedaten property. - * - *

- * 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 set method for the zusaetzlicheGebaeudedaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheGebaeudedaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheGebaeudedatenType } - * - * - */ - public List getZusaetzlicheGebaeudedaten() { - if (zusaetzlicheGebaeudedaten == null) { - zusaetzlicheGebaeudedaten = new ArrayList(); - } - return this.zusaetzlicheGebaeudedaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoHaushaltType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoHaushaltType.java deleted file mode 100644 index f89eeb53..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/RisikoHaushaltType.java +++ /dev/null @@ -1,152 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type zur Risikobeschreibung Haushalt - * - *

Java-Klasse für RisikoHaushalt_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RisikoHaushalt_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="Wohnflaeche" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type"/>
- *         <element name="NutzungCd" type="{urn:omds20}NutzungCd_Type" minOccurs="0"/>
- *         <element name="ZusaetzlicheHaushaltDaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheHaushaltsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RisikoHaushalt_Type", propOrder = { - "wohnflaeche", - "ausstattungCd", - "nutzungCd", - "zusaetzlicheHaushaltDaten" -}) -public class RisikoHaushaltType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "Wohnflaeche") - @XmlSchemaType(name = "unsignedShort") - protected int wohnflaeche; - @XmlElement(name = "AusstattungCd", required = true) - protected String ausstattungCd; - @XmlElement(name = "NutzungCd") - protected String nutzungCd; - @XmlElement(name = "ZusaetzlicheHaushaltDaten") - protected List zusaetzlicheHaushaltDaten; - - /** - * Ruft den Wert der wohnflaeche-Eigenschaft ab. - * - */ - public int getWohnflaeche() { - return wohnflaeche; - } - - /** - * Legt den Wert der wohnflaeche-Eigenschaft fest. - * - */ - public void setWohnflaeche(int value) { - this.wohnflaeche = value; - } - - /** - * Ruft den Wert der ausstattungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAusstattungCd() { - return ausstattungCd; - } - - /** - * Legt den Wert der ausstattungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAusstattungCd(String value) { - this.ausstattungCd = value; - } - - /** - * Ruft den Wert der nutzungCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNutzungCd() { - return nutzungCd; - } - - /** - * Legt den Wert der nutzungCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNutzungCd(String value) { - this.nutzungCd = value; - } - - /** - * Gets the value of the zusaetzlicheHaushaltDaten property. - * - *

- * 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 set method for the zusaetzlicheHaushaltDaten property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZusaetzlicheHaushaltDaten().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheHaushaltsdatenType } - * - * - */ - public List getZusaetzlicheHaushaltDaten() { - if (zusaetzlicheHaushaltDaten == null) { - zusaetzlicheHaushaltDaten = new ArrayList(); - } - return this.zusaetzlicheHaushaltDaten; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java deleted file mode 100644 index 1840550a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatRequestType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationRequestGenType; - - -/** - * Type des Requests, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type">
- *       <sequence>
- *         <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatRequest_Type", propOrder = { - "antragsanfrage" -}) -public class SubmitApplicationSachPrivatRequestType - extends SubmitApplicationRequestGenType -{ - - @XmlElement(name = "Antragsanfrage") - protected AntragSachPrivatType antragsanfrage; - - /** - * Ruft den Wert der antragsanfrage-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsanfrage() { - return antragsanfrage; - } - - /** - * Legt den Wert der antragsanfrage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsanfrage(AntragSachPrivatType value) { - this.antragsanfrage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java deleted file mode 100644 index ceffc201..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/SubmitApplicationSachPrivatResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.SubmitApplicationResponseGenType; - - -/** - * Type des Response, um den Antrag einzureichen - * - *

Java-Klasse für SubmitApplicationSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitApplicationSachPrivatResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type">
- *       <sequence>
- *         <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}AntragSachPrivat_Type"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitApplicationSachPrivatResponse_Type", propOrder = { - "antragsantwort" -}) -public class SubmitApplicationSachPrivatResponseType - extends SubmitApplicationResponseGenType -{ - - @XmlElement(name = "Antragsantwort", required = true) - protected AntragSachPrivatType antragsantwort; - - /** - * Ruft den Wert der antragsantwort-Eigenschaft ab. - * - * @return - * possible object is - * {@link AntragSachPrivatType } - * - */ - public AntragSachPrivatType getAntragsantwort() { - return antragsantwort; - } - - /** - * Legt den Wert der antragsantwort-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AntragSachPrivatType } - * - */ - public void setAntragsantwort(AntragSachPrivatType value) { - this.antragsantwort = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java deleted file mode 100644 index 21b37dc9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/UpsellingSachPrivatResponseType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Response Upselling Sach-Privat - * - *

Java-Klasse für UpsellingSachPrivatResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UpsellingSachPrivatResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpsellingSachPrivatResponse_Type") -public class UpsellingSachPrivatResponseType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java deleted file mode 100644 index e5f29f8c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/VersichertesObjektSachPrivatType.java +++ /dev/null @@ -1,159 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.VersichertesInteresseMitAttributMetadatenType; - - -/** - * Type für ein versichertes Objekt in der Sach-Privat-Versicherung - * - *

Java-Klasse für VersichertesObjektSachPrivat_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="VersichertesObjektSachPrivat_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
- *       <sequence>
- *         <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="RisikoAdresse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoAdresse_Type"/>
- *         <element name="RisikoGebaeude" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoGebaeude_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="RisikoHaushalt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoHaushalt_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VersichertesObjektSachPrivat_Type", propOrder = { - "objektId", - "risikoAdresse", - "risikoGebaeude", - "risikoHaushalt" -}) -public class VersichertesObjektSachPrivatType - extends VersichertesInteresseMitAttributMetadatenType -{ - - @XmlElement(name = "ObjektId") - protected ObjektIdType objektId; - @XmlElement(name = "RisikoAdresse", required = true) - protected RisikoAdresseType risikoAdresse; - @XmlElement(name = "RisikoGebaeude") - protected List risikoGebaeude; - @XmlElement(name = "RisikoHaushalt") - protected RisikoHaushaltType risikoHaushalt; - - /** - * 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 risikoAdresse-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoAdresseType } - * - */ - public RisikoAdresseType getRisikoAdresse() { - return risikoAdresse; - } - - /** - * Legt den Wert der risikoAdresse-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoAdresseType } - * - */ - public void setRisikoAdresse(RisikoAdresseType value) { - this.risikoAdresse = value; - } - - /** - * Gets the value of the risikoGebaeude property. - * - *

- * 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 set method for the risikoGebaeude property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRisikoGebaeude().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RisikoGebaeudeType } - * - * - */ - public List getRisikoGebaeude() { - if (risikoGebaeude == null) { - risikoGebaeude = new ArrayList(); - } - return this.risikoGebaeude; - } - - /** - * Ruft den Wert der risikoHaushalt-Eigenschaft ab. - * - * @return - * possible object is - * {@link RisikoHaushaltType } - * - */ - public RisikoHaushaltType getRisikoHaushalt() { - return risikoHaushalt; - } - - /** - * Legt den Wert der risikoHaushalt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RisikoHaushaltType } - * - */ - public void setRisikoHaushalt(RisikoHaushaltType value) { - this.risikoHaushalt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java deleted file mode 100644 index 41fbbf15..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenPhotovoltaikType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Photovoltaik als Erweiterung von ZusaetzlicheGebaeudeDaten_Type - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenPhotovoltaik_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenPhotovoltaik_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenPhotovoltaik_Type") -public class ZusaetzlicheGebaeudedatenPhotovoltaikType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java deleted file mode 100644 index 13b0f88f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSchwimmbadType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Schwimmbad - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSchwimmbad_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSchwimmbad_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSchwimmbad_Type") -public class ZusaetzlicheGebaeudedatenSchwimmbadType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java deleted file mode 100644 index c6e9da54..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenSolarthermieType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Strandardbaustein Solarthermie - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenSolarthermie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenSolarthermie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenSolarthermie_Type") -public class ZusaetzlicheGebaeudedatenSolarthermieType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java deleted file mode 100644 index 6bccc766..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenType.java +++ /dev/null @@ -1,39 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -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 Basistyp zur Definition zusätzlicher Gebäudedaten - * - *

Java-Klasse für ZusaetzlicheGebaeudedaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedaten_Type") -@XmlSeeAlso({ - ZusaetzlicheGebaeudedatenWintergartenType.class, - ZusaetzlicheGebaeudedatenSolarthermieType.class, - ZusaetzlicheGebaeudedatenSchwimmbadType.class, - ZusaetzlicheGebaeudedatenPhotovoltaikType.class -}) -public abstract class ZusaetzlicheGebaeudedatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java deleted file mode 100644 index 8810428d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheGebaeudedatenWintergartenType.java +++ /dev/null @@ -1,36 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Standardbaustein Wintergarten - * - *

Java-Klasse für ZusaetzlicheGebaeudedatenWintergarten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheGebaeudedatenWintergarten_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ZusaetzlicheGebaeudedaten_Type">
- *       <sequence>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheGebaeudedatenWintergarten_Type") -public class ZusaetzlicheGebaeudedatenWintergartenType - extends ZusaetzlicheGebaeudedatenType -{ - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java deleted file mode 100644 index 7fd1dd17..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/ZusaetzlicheHaushaltsdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Basistyp zur Definition zusätzlicher Haushaltsdaten - * - *

Java-Klasse für ZusaetzlicheHaushaltsdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheHaushaltsdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheHaushaltsdaten_Type") -public abstract class ZusaetzlicheHaushaltsdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/package-info.java deleted file mode 100644 index 7e995139..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on2antrag/sachPrivat/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenType.java deleted file mode 100644 index 61408167..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenType.java +++ /dev/null @@ -1,395 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.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_7_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schaden und Schaden-Light - * - *

Java-Klasse für BasisSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage" minOccurs="0"/>
- *         <element name="Schadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="BearbStandSeit" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="VormaligeSchadennr" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="NachfolgendeSchadennr" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="SachbearbVU" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SachbearbVUType" minOccurs="0"/>
- *         <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
- *         <element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/>
- *         <element name="ErledDat" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchaden_Type", propOrder = { - "geschaeftsfallSchadenanlage", - "schadennr", - "bearbStandSeit", - "vormaligeSchadennr", - "nachfolgendeSchadennr", - "sachbearbVU", - "polizzennr", - "vertragsID", - "erledDat", - "deepLink", - "zusaetzlicheSchadensdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenType.class, - SchadenLightType.class -}) -public class BasisSchadenType { - - @XmlElement(name = "GeschaeftsfallSchadenanlage") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - @XmlElement(name = "BearbStandSeit") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar bearbStandSeit; - @XmlElement(name = "VormaligeSchadennr") - protected List vormaligeSchadennr; - @XmlElement(name = "NachfolgendeSchadennr") - protected String nachfolgendeSchadennr; - @XmlElement(name = "SachbearbVU") - protected SachbearbVUType sachbearbVU; - @XmlElement(name = "Polizzennr", required = true) - protected String polizzennr; - @XmlElement(name = "VertragsID") - protected String vertragsID; - @XmlElement(name = "ErledDat") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar erledDat; - @XmlElement(name = "DeepLink") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensdaten") - protected ZusaetzlicheSchadensdatenType zusaetzlicheSchadensdaten; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - - /** - * Ruft den Wert der bearbStandSeit-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBearbStandSeit() { - return bearbStandSeit; - } - - /** - * Legt den Wert der bearbStandSeit-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBearbStandSeit(XMLGregorianCalendar value) { - this.bearbStandSeit = value; - } - - /** - * Gets the value of the vormaligeSchadennr property. - * - *

- * 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 set method for the vormaligeSchadennr property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVormaligeSchadennr().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getVormaligeSchadennr() { - if (vormaligeSchadennr == null) { - vormaligeSchadennr = new ArrayList(); - } - return this.vormaligeSchadennr; - } - - /** - * Ruft den Wert der nachfolgendeSchadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNachfolgendeSchadennr() { - return nachfolgendeSchadennr; - } - - /** - * Legt den Wert der nachfolgendeSchadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNachfolgendeSchadennr(String value) { - this.nachfolgendeSchadennr = value; - } - - /** - * Ruft den Wert der sachbearbVU-Eigenschaft ab. - * - * @return - * possible object is - * {@link SachbearbVUType } - * - */ - public SachbearbVUType getSachbearbVU() { - return sachbearbVU; - } - - /** - * Legt den Wert der sachbearbVU-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SachbearbVUType } - * - */ - public void setSachbearbVU(SachbearbVUType value) { - this.sachbearbVU = value; - } - - /** - * Ruft den Wert der polizzennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolizzennr() { - return polizzennr; - } - - /** - * Legt den Wert der polizzennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolizzennr(String value) { - this.polizzennr = value; - } - - /** - * Ruft den Wert der vertragsID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVertragsID() { - return vertragsID; - } - - /** - * Legt den Wert der vertragsID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVertragsID(String value) { - this.vertragsID = value; - } - - /** - * Ruft den Wert der erledDat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getErledDat() { - return erledDat; - } - - /** - * Legt den Wert der erledDat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setErledDat(XMLGregorianCalendar value) { - this.erledDat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public ZusaetzlicheSchadensdatenType getZusaetzlicheSchadensdaten() { - return zusaetzlicheSchadensdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensdatenType } - * - */ - public void setZusaetzlicheSchadensdaten(ZusaetzlicheSchadensdatenType value) { - this.zusaetzlicheSchadensdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenereignisType.java deleted file mode 100644 index e0c7ac33..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BasisSchadenereignisType.java +++ /dev/null @@ -1,339 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.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_7_0.common.ObjektIdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Abstrakter Typ mit gemeinsamen Rumpfdaten fuer Schadenereignis und Schadenereignis-Light - * - *

Java-Klasse für BasisSchadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BasisSchadenereignis_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis" minOccurs="0"/>
- *         <element name="NachfolgendeSchadenmeldung" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
- *         <element name="VorherigeSchadenmeldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Ereigniszpkt" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="EreignisbeschrTxt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Meldedat" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="DeepLink" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ZusaetzlicheSchadensereignisdaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheSchadensereignisdaten_Type" minOccurs="0"/>
- *         <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BasisSchadenereignis_Type", propOrder = { - "vuNr", - "geschaeftsfallSchadenereignis", - "nachfolgendeSchadenmeldung", - "vorherigeSchadenmeldungen", - "ereigniszpkt", - "ereignisbeschrTxt", - "meldedat", - "deepLink", - "zusaetzlicheSchadensereignisdaten", - "meldungen" -}) -@XmlSeeAlso({ - SchadenereignisType.class, - SchadenereignisLightType.class -}) -public abstract class BasisSchadenereignisType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "NachfolgendeSchadenmeldung") - protected ObjektIdType nachfolgendeSchadenmeldung; - @XmlElement(name = "VorherigeSchadenmeldungen") - protected List vorherigeSchadenmeldungen; - @XmlElement(name = "Ereigniszpkt", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ereigniszpkt; - @XmlElement(name = "EreignisbeschrTxt", required = true) - protected String ereignisbeschrTxt; - @XmlElement(name = "Meldedat", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar meldedat; - @XmlElement(name = "DeepLink") - protected String deepLink; - @XmlElement(name = "ZusaetzlicheSchadensereignisdaten") - protected ZusaetzlicheSchadensereignisdatenType zusaetzlicheSchadensereignisdaten; - @XmlElement(name = "Meldungen") - protected List meldungen; - - /** - * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der nachfolgendeSchadenmeldung-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getNachfolgendeSchadenmeldung() { - return nachfolgendeSchadenmeldung; - } - - /** - * Legt den Wert der nachfolgendeSchadenmeldung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setNachfolgendeSchadenmeldung(ObjektIdType value) { - this.nachfolgendeSchadenmeldung = value; - } - - /** - * Gets the value of the vorherigeSchadenmeldungen property. - * - *

- * 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 set method for the vorherigeSchadenmeldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getVorherigeSchadenmeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ObjektIdType } - * - * - */ - public List getVorherigeSchadenmeldungen() { - if (vorherigeSchadenmeldungen == null) { - vorherigeSchadenmeldungen = new ArrayList(); - } - return this.vorherigeSchadenmeldungen; - } - - /** - * Ruft den Wert der ereigniszpkt-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEreigniszpkt() { - return ereigniszpkt; - } - - /** - * Legt den Wert der ereigniszpkt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEreigniszpkt(XMLGregorianCalendar value) { - this.ereigniszpkt = value; - } - - /** - * Ruft den Wert der ereignisbeschrTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEreignisbeschrTxt() { - return ereignisbeschrTxt; - } - - /** - * Legt den Wert der ereignisbeschrTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEreignisbeschrTxt(String value) { - this.ereignisbeschrTxt = value; - } - - /** - * Ruft den Wert der meldedat-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMeldedat() { - return meldedat; - } - - /** - * Legt den Wert der meldedat-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMeldedat(XMLGregorianCalendar value) { - this.meldedat = value; - } - - /** - * Ruft den Wert der deepLink-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeepLink() { - return deepLink; - } - - /** - * Legt den Wert der deepLink-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeepLink(String value) { - this.deepLink = value; - } - - /** - * Ruft den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public ZusaetzlicheSchadensereignisdatenType getZusaetzlicheSchadensereignisdaten() { - return zusaetzlicheSchadensereignisdaten; - } - - /** - * Legt den Wert der zusaetzlicheSchadensereignisdaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZusaetzlicheSchadensereignisdatenType } - * - */ - public void setZusaetzlicheSchadensereignisdaten(ZusaetzlicheSchadensereignisdatenType value) { - this.zusaetzlicheSchadensereignisdaten = value; - } - - /** - * Gets the value of the meldungen property. - * - *

- * 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 set method for the meldungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMeldungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getMeldungen() { - if (meldungen == null) { - meldungen = new ArrayList(); - } - return this.meldungen; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BeteiligtePersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BeteiligtePersonType.java deleted file mode 100644 index 241c6667..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/BeteiligtePersonType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.PersonType; - - -/** - * Typ für die Meldung von Personen, die an einem Schaden beteiligt sind - * - *

Java-Klasse für BeteiligtePerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="BeteiligtePerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
- *       </sequence>
- *       <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BeteiligtePerson_Type", propOrder = { - "person" -}) -public class BeteiligtePersonType { - - @XmlElement(name = "Person", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) - protected PersonType person; - @XmlAttribute(name = "Lfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - - /** - * Objekt ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld - * - * @return - * possible object is - * {@link PersonType } - * - */ - public PersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PersonType } - * - */ - public void setPerson(PersonType value) { - this.person = value; - } - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - public void setLfnr(int value) { - this.lfnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimRequestType.java deleted file mode 100644 index 0eed7586..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimRequestType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.UploadDokumentType; - - -/** - * Typ für die probeweise Anlage einer Schadenmeldung - * - *

Java-Klasse für CheckClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -public class CheckClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis", required = true) - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimResponseType.java deleted file mode 100644 index 733b6131..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/CheckClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für CheckClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="CheckClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CheckClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class CheckClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeokoordinatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeokoordinatenType.java deleted file mode 100644 index 3dd712ce..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeokoordinatenType.java +++ /dev/null @@ -1,87 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - * Geokoordinaten im Dezimalsystem - * - *

Java-Klasse für Geokoordinaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Geokoordinaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Breite" type="{http://www.w3.org/2001/XMLSchema}double" />
- *       <attribute name="Laenge" type="{http://www.w3.org/2001/XMLSchema}double" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Geokoordinaten_Type") -public class GeokoordinatenType { - - @XmlAttribute(name = "Breite", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected Double breite; - @XmlAttribute(name = "Laenge", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected Double laenge; - - /** - * Ruft den Wert der breite-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getBreite() { - return breite; - } - - /** - * Legt den Wert der breite-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setBreite(Double value) { - this.breite = value; - } - - /** - * Ruft den Wert der laenge-Eigenschaft ab. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getLaenge() { - return laenge; - } - - /** - * Legt den Wert der laenge-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setLaenge(Double value) { - this.laenge = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesInteresseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesInteresseType.java deleted file mode 100644 index eda04f0c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesInteresseType.java +++ /dev/null @@ -1,97 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Das geschädigte Interesse ist der Basistyp für den es Erweiterungen geben kann, z.B. das geschädigte Kfz - * - *

Java-Klasse für GeschaedigtesInteresse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesInteresse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
- *         <element name="SchadenBeschreibung">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="100"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesInteresse_Type", propOrder = { - "lfnr", - "schadenBeschreibung" -}) -@XmlSeeAlso({ - GeschaedigtesObjektKfzType.class, - GeschaedigtesObjektImmobilieType.class -}) -public class GeschaedigtesInteresseType { - - @XmlElement(name = "Lfnr") - @XmlSchemaType(name = "unsignedShort") - protected int lfnr; - @XmlElement(name = "SchadenBeschreibung", required = true) - protected String schadenBeschreibung; - - /** - * Ruft den Wert der lfnr-Eigenschaft ab. - * - */ - public int getLfnr() { - return lfnr; - } - - /** - * Legt den Wert der lfnr-Eigenschaft fest. - * - */ - public void setLfnr(int value) { - this.lfnr = value; - } - - /** - * Ruft den Wert der schadenBeschreibung-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenBeschreibung() { - return schadenBeschreibung; - } - - /** - * Legt den Wert der schadenBeschreibung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenBeschreibung(String value) { - this.schadenBeschreibung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektImmobilieType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektImmobilieType.java deleted file mode 100644 index 453332a1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektImmobilieType.java +++ /dev/null @@ -1,128 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einer geschädigten Immobilie - * - *

Java-Klasse für GeschaedigtesObjektImmobilie_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektImmobilie_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="GebaeudeArtCd" type="{urn:omds20}GebaeudeArtCd_Type" minOccurs="0"/>
- *         <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
- *         <element name="GebauedeBez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="60"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektImmobilie_Type", propOrder = { - "gebaeudeArtCd", - "ordnungsbegriffZuordFremd", - "gebauedeBez" -}) -public class GeschaedigtesObjektImmobilieType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "GebaeudeArtCd") - protected String gebaeudeArtCd; - @XmlElement(name = "OrdnungsbegriffZuordFremd", namespace = "urn:omds3CommonServiceTypes-1-1-0") - protected String ordnungsbegriffZuordFremd; - @XmlElement(name = "GebauedeBez") - protected String gebauedeBez; - - /** - * Ruft den Wert der gebaeudeArtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebaeudeArtCd() { - return gebaeudeArtCd; - } - - /** - * Legt den Wert der gebaeudeArtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebaeudeArtCd(String value) { - this.gebaeudeArtCd = value; - } - - /** - * Ruft den Wert der ordnungsbegriffZuordFremd-Eigenschaft ab. - * - * @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; - } - - /** - * Ruft den Wert der gebauedeBez-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGebauedeBez() { - return gebauedeBez; - } - - /** - * Legt den Wert der gebauedeBez-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGebauedeBez(String value) { - this.gebauedeBez = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektKfzType.java deleted file mode 100644 index 404e08af..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GeschaedigtesObjektKfzType.java +++ /dev/null @@ -1,351 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Erweiterung des geschädigten Interesses zu einem geschädigten Kfz - * - *

Java-Klasse für GeschaedigtesObjektKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GeschaedigtesObjektKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type">
- *       <sequence>
- *         <element name="VUNrGesch" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="VUNameGesch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PolNrGesch" type="{urn:omds20}Polizzennr"/>
- *         <element name="SchadennrGesch" type="{urn:omds20}Schadennr" minOccurs="0"/>
- *         <element name="LandesCd_GeschKfz" type="{urn:omds20}LandesCd_Type" minOccurs="0"/>
- *         <element name="Kennz_GeschKfz">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="12"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Marke" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="40"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Handelsbez" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="30"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="Fahrgestnr" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TypVarVer" minOccurs="0">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="20"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeschaedigtesObjektKfz_Type", propOrder = { - "vuNrGesch", - "vuNameGesch", - "polNrGesch", - "schadennrGesch", - "landesCdGeschKfz", - "kennzGeschKfz", - "marke", - "handelsbez", - "fahrgestnr", - "typVarVer" -}) -public class GeschaedigtesObjektKfzType - extends GeschaedigtesInteresseType -{ - - @XmlElement(name = "VUNrGesch") - protected String vuNrGesch; - @XmlElement(name = "VUNameGesch", required = true) - protected String vuNameGesch; - @XmlElement(name = "PolNrGesch", required = true) - protected String polNrGesch; - @XmlElement(name = "SchadennrGesch") - protected String schadennrGesch; - @XmlElement(name = "LandesCd_GeschKfz") - protected String landesCdGeschKfz; - @XmlElement(name = "Kennz_GeschKfz", required = true) - protected String kennzGeschKfz; - @XmlElement(name = "Marke") - protected String marke; - @XmlElement(name = "Handelsbez") - protected String handelsbez; - @XmlElement(name = "Fahrgestnr") - protected String fahrgestnr; - @XmlElement(name = "TypVarVer") - protected String typVarVer; - - /** - * Ruft den Wert der vuNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNrGesch() { - return vuNrGesch; - } - - /** - * Legt den Wert der vuNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNrGesch(String value) { - this.vuNrGesch = value; - } - - /** - * Ruft den Wert der vuNameGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNameGesch() { - return vuNameGesch; - } - - /** - * Legt den Wert der vuNameGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNameGesch(String value) { - this.vuNameGesch = value; - } - - /** - * Ruft den Wert der polNrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolNrGesch() { - return polNrGesch; - } - - /** - * Legt den Wert der polNrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolNrGesch(String value) { - this.polNrGesch = value; - } - - /** - * Ruft den Wert der schadennrGesch-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennrGesch() { - return schadennrGesch; - } - - /** - * Legt den Wert der schadennrGesch-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennrGesch(String value) { - this.schadennrGesch = value; - } - - /** - * Ruft den Wert der landesCdGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandesCdGeschKfz() { - return landesCdGeschKfz; - } - - /** - * Legt den Wert der landesCdGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandesCdGeschKfz(String value) { - this.landesCdGeschKfz = value; - } - - /** - * Ruft den Wert der kennzGeschKfz-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzGeschKfz() { - return kennzGeschKfz; - } - - /** - * Legt den Wert der kennzGeschKfz-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzGeschKfz(String value) { - this.kennzGeschKfz = value; - } - - /** - * 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 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimRequestType.java deleted file mode 100644 index 212acab8..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimRequestType.java +++ /dev/null @@ -1,155 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektIdType; - - -/** - * Dieser Typ enthält eine Schadennr oder eine GeschaeftsfallId - * - *

Java-Klasse für GetClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <choice>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenereignis"/>
- *           <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaeftsfallSchadenanlage"/>
- *           <element name="Schadennr" type="{urn:omds20}Schadennr"/>
- *         </choice>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimRequest_Type", propOrder = { - "authFilter", - "geschaeftsfallSchadenereignis", - "geschaeftsfallSchadenanlage", - "schadennr" -}) -public class GetClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "GeschaeftsfallSchadenereignis") - protected ObjektIdType geschaeftsfallSchadenereignis; - @XmlElement(name = "GeschaeftsfallSchadenanlage") - protected ObjektIdType geschaeftsfallSchadenanlage; - @XmlElement(name = "Schadennr") - protected String schadennr; - - /** - * 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 geschaeftsfallSchadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenereignis() { - return geschaeftsfallSchadenereignis; - } - - /** - * Legt den Wert der geschaeftsfallSchadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenereignis(ObjektIdType value) { - this.geschaeftsfallSchadenereignis = value; - } - - /** - * Ruft den Wert der geschaeftsfallSchadenanlage-Eigenschaft ab. - * - * @return - * possible object is - * {@link ObjektIdType } - * - */ - public ObjektIdType getGeschaeftsfallSchadenanlage() { - return geschaeftsfallSchadenanlage; - } - - /** - * Legt den Wert der geschaeftsfallSchadenanlage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ObjektIdType } - * - */ - public void setGeschaeftsfallSchadenanlage(ObjektIdType value) { - this.geschaeftsfallSchadenanlage = value; - } - - /** - * Ruft den Wert der schadennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadennr() { - return schadennr; - } - - /** - * Legt den Wert der schadennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadennr(String value) { - this.schadennr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimResponseType.java deleted file mode 100644 index f0623882..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/GetClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType; - - -/** - * Response-Objekt für Schadenereignisse - * - *

Java-Klasse für GetClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="GetClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GetClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class GetClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/NatPersonType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/NatPersonType.java deleted file mode 100644 index 12098b03..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/NatPersonType.java +++ /dev/null @@ -1,117 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Natuerliche Person - * - *

Java-Klasse für NatPerson_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="NatPerson_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="Familienname" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="Vorname" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- *       <attribute name="GeschlechtCd" use="required" type="{urn:omds20}GeschlechtCd_Type" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NatPerson_Type") -public class NatPersonType { - - @XmlAttribute(name = "Familienname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "anySimpleType") - protected String familienname; - @XmlAttribute(name = "Vorname", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - @XmlSchemaType(name = "anySimpleType") - protected String vorname; - @XmlAttribute(name = "GeschlechtCd", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - protected String geschlechtCd; - - /** - * Ruft den Wert der familienname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFamilienname() { - return familienname; - } - - /** - * Legt den Wert der familienname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFamilienname(String value) { - this.familienname = value; - } - - /** - * Ruft den Wert der vorname-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVorname() { - return vorname; - } - - /** - * Legt den Wert der vorname-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVorname(String value) { - this.vorname = value; - } - - /** - * Ruft den Wert der geschlechtCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeschlechtCd() { - return geschlechtCd; - } - - /** - * Legt den Wert der geschlechtCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeschlechtCd(String value) { - this.geschlechtCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/OrtType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/OrtType.java deleted file mode 100644 index 7d00da2b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/OrtType.java +++ /dev/null @@ -1,121 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ADRESSEType; - - -/** - * Typ für den Schadenort - * - *

Java-Klasse für Ort_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Ort_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Adresse" type="{urn:omds20}ADRESSE_Type" minOccurs="0"/>
- *         <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="Geokoordinaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Geokoordinaten_Type" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Ort_Type", propOrder = { - "adresse", - "beschreibung", - "geokoordinaten" -}) -public class OrtType { - - @XmlElement(name = "Adresse") - protected ADRESSEType adresse; - @XmlElement(name = "Beschreibung") - protected String beschreibung; - @XmlElement(name = "Geokoordinaten") - protected GeokoordinatenType geokoordinaten; - - /** - * Ruft den Wert der adresse-Eigenschaft ab. - * - * @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; - } - - /** - * 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; - } - - /** - * Ruft den Wert der geokoordinaten-Eigenschaft ab. - * - * @return - * possible object is - * {@link GeokoordinatenType } - * - */ - public GeokoordinatenType getGeokoordinaten() { - return geokoordinaten; - } - - /** - * Legt den Wert der geokoordinaten-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link GeokoordinatenType } - * - */ - public void setGeokoordinaten(GeokoordinatenType value) { - this.geokoordinaten = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java deleted file mode 100644 index 462b3fd0..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ReferenzAufBeteiligtePersonSchadenType.java +++ /dev/null @@ -1,91 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Das Zuordnungsobjekt, welches die fachliche Zuordnung eines Schadens ermöglicht - * - *

Java-Klasse für ReferenzAufBeteiligtePersonSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ReferenzAufBeteiligtePersonSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <attribute name="BetLfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
- *       <attribute name="BetTxt">
- *         <simpleType>
- *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             <maxLength value="100"/>
- *           </restriction>
- *         </simpleType>
- *       </attribute>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ReferenzAufBeteiligtePersonSchaden_Type") -@XmlSeeAlso({ - at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SchadenType.BeteiligtePersonen.class -}) -public class ReferenzAufBeteiligtePersonSchadenType { - - @XmlAttribute(name = "BetLfnr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", required = true) - @XmlSchemaType(name = "unsignedShort") - protected int betLfnr; - @XmlAttribute(name = "BetTxt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden") - protected String betTxt; - - /** - * Ruft den Wert der betLfnr-Eigenschaft ab. - * - */ - public int getBetLfnr() { - return betLfnr; - } - - /** - * Legt den Wert der betLfnr-Eigenschaft fest. - * - */ - public void setBetLfnr(int value) { - this.betLfnr = value; - } - - /** - * Ruft den Wert der betTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetTxt() { - return betTxt; - } - - /** - * Legt den Wert der betTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetTxt(String value) { - this.betTxt = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SachbearbVUType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SachbearbVUType.java deleted file mode 100644 index b8106cac..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SachbearbVUType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.ELKommunikationType; - - -/** - * Typ für die Übermittlung von Kontaktdaten eines Sachbearbeiters - * - *

Java-Klasse für SachbearbVUType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SachbearbVUType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Person" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}NatPerson_Type"/>
- *         <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SachbearbVUType", propOrder = { - "person", - "elKommunikation" -}) -public class SachbearbVUType { - - @XmlElement(name = "Person", required = true) - protected NatPersonType person; - @XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20", required = true) - protected List elKommunikation; - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link NatPersonType } - * - */ - public NatPersonType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link NatPersonType } - * - */ - public void setPerson(NatPersonType value) { - this.person = value; - } - - /** - * Gets the value of the elKommunikation property. - * - *

- * 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 set method for the elKommunikation property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getELKommunikation().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ELKommunikationType } - * - * - */ - public List getELKommunikation() { - if (elKommunikation == null) { - elKommunikation = new ArrayList(); - } - return this.elKommunikation; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenLightType.java deleted file mode 100644 index 1ddf46e9..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenLightType.java +++ /dev/null @@ -1,94 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ zur leichtgewichtigen Abbildung von Schadenobjekten - * - *

Java-Klasse für SchadenLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenLight_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung" -}) -public class SchadenLightType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd", required = true) - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung") - protected SchadenzuordnungType schadenzuordnung; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenType.java deleted file mode 100644 index cbd6dfbb..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenType.java +++ /dev/null @@ -1,415 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.math.BigDecimal; -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds2Types.v2_14.VtgRolleCdType; -import at.vvo.omds.types.omds2Types.v2_14.WaehrungsCdType; - - -/** - * Die Darstellung eines Schadens (spartenbezogenes Unterobjekt eines Schadenereignisses) - * - *

Java-Klasse für Schaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schaden_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchaden_Type">
- *       <sequence>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_Type" minOccurs="0"/>
- *         <element ref="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenzuordnung"/>
- *         <element name="SchadenTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="BeteiligtePersonen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
- *                 <sequence>
- *                   <choice>
- *                     <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
- *                     <sequence>
- *                       <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
- *                       <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *                     </sequence>
- *                   </choice>
- *                   <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
- *                 </sequence>
- *               </extension>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="LeistungGeschaetzt" type="{urn:omds20}decimal" minOccurs="0"/>
- *         <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
- *         <element name="Spartendetails" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schaden_Type", propOrder = { - "bearbStandCd", - "schadenzuordnung", - "schadenTxt", - "beteiligtePersonen", - "leistungGeschaetzt", - "waehrungsCd", - "spartendetails" -}) -public class SchadenType - extends BasisSchadenType -{ - - @XmlElement(name = "BearbStandCd") - protected String bearbStandCd; - @XmlElement(name = "Schadenzuordnung", required = true) - protected SchadenzuordnungType schadenzuordnung; - @XmlElement(name = "SchadenTxt") - protected String schadenTxt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "LeistungGeschaetzt") - protected BigDecimal leistungGeschaetzt; - @XmlElement(name = "WaehrungsCd") - @XmlSchemaType(name = "string") - protected WaehrungsCdType waehrungsCd; - @XmlElement(name = "Spartendetails") - protected SpartendetailSchadenType spartendetails; - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der schadenzuordnung-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenzuordnungType } - * - */ - public SchadenzuordnungType getSchadenzuordnung() { - return schadenzuordnung; - } - - /** - * Legt den Wert der schadenzuordnung-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenzuordnungType } - * - */ - public void setSchadenzuordnung(SchadenzuordnungType value) { - this.schadenzuordnung = value; - } - - /** - * Ruft den Wert der schadenTxt-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenTxt() { - return schadenTxt; - } - - /** - * Legt den Wert der schadenTxt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenTxt(String value) { - this.schadenTxt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType.BeteiligtePersonen } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Ruft den Wert der leistungGeschaetzt-Eigenschaft ab. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLeistungGeschaetzt() { - return leistungGeschaetzt; - } - - /** - * Legt den Wert der leistungGeschaetzt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLeistungGeschaetzt(BigDecimal value) { - this.leistungGeschaetzt = value; - } - - /** - * Ruft den Wert der waehrungsCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link WaehrungsCdType } - * - */ - public WaehrungsCdType getWaehrungsCd() { - return waehrungsCd; - } - - /** - * Legt den Wert der waehrungsCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link WaehrungsCdType } - * - */ - public void setWaehrungsCd(WaehrungsCdType value) { - this.waehrungsCd = value; - } - - /** - * Ruft den Wert der spartendetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link SpartendetailSchadenType } - * - */ - public SpartendetailSchadenType getSpartendetails() { - return spartendetails; - } - - /** - * Legt den Wert der spartendetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SpartendetailSchadenType } - * - */ - public void setSpartendetails(SpartendetailSchadenType value) { - this.spartendetails = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ReferenzAufBeteiligtePersonSchaden_Type">
-     *       <sequence>
-     *         <choice>
-     *           <element name="Vertragsrolle" type="{urn:omds20}VtgRolleCd_Type"/>
-     *           <sequence>
-     *             <element name="Schadensrolle" type="{urn:omds20}BetRolleCd_Type"/>
-     *             <element name="GeschInteresseLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
-     *           </sequence>
-     *         </choice>
-     *         <element name="ZusaetzlicheRollendaten" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}ZusaetzlicheRollendaten_Type" maxOccurs="unbounded" minOccurs="0"/>
-     *       </sequence>
-     *     </extension>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "vertragsrolle", - "schadensrolle", - "geschInteresseLfnr", - "zusaetzlicheRollendaten" - }) - public static class BeteiligtePersonen - extends ReferenzAufBeteiligtePersonSchadenType - { - - @XmlElement(name = "Vertragsrolle") - @XmlSchemaType(name = "string") - protected VtgRolleCdType vertragsrolle; - @XmlElement(name = "Schadensrolle") - protected String schadensrolle; - @XmlElement(name = "GeschInteresseLfnr") - @XmlSchemaType(name = "unsignedShort") - protected Integer geschInteresseLfnr; - @XmlElement(name = "ZusaetzlicheRollendaten") - protected List zusaetzlicheRollendaten; - - /** - * Ruft den Wert der vertragsrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link VtgRolleCdType } - * - */ - public VtgRolleCdType getVertragsrolle() { - return vertragsrolle; - } - - /** - * Legt den Wert der vertragsrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link VtgRolleCdType } - * - */ - public void setVertragsrolle(VtgRolleCdType value) { - this.vertragsrolle = value; - } - - /** - * Ruft den Wert der schadensrolle-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadensrolle() { - return schadensrolle; - } - - /** - * Legt den Wert der schadensrolle-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadensrolle(String value) { - this.schadensrolle = value; - } - - /** - * Ruft den Wert der geschInteresseLfnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGeschInteresseLfnr() { - return geschInteresseLfnr; - } - - /** - * Legt den Wert der geschInteresseLfnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGeschInteresseLfnr(Integer value) { - this.geschInteresseLfnr = value; - } - - /** - * Gets the value of the zusaetzlicheRollendaten property. - * - *

- * 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 set method for the zusaetzlicheRollendaten property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getZusaetzlicheRollendaten().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZusaetzlicheRollendatenType } - * - * - */ - public List getZusaetzlicheRollendaten() { - if (zusaetzlicheRollendaten == null) { - zusaetzlicheRollendaten = new ArrayList(); - } - return this.zusaetzlicheRollendaten; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisLightType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisLightType.java deleted file mode 100644 index 6ecafae1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisLightType.java +++ /dev/null @@ -1,73 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ zur leichtgewichtigen Abbildung von Schadenereignis-Objekten - * - *

Java-Klasse für SchadenereignisLight_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenereignisLight_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenLight_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenereignisLight_Type", propOrder = { - "schaeden" -}) -public class SchadenereignisLightType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenLightType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisType.java deleted file mode 100644 index b02806be..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenereignisType.java +++ /dev/null @@ -1,263 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.DokumentenReferenzType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.PersBankverbindungType; - - -/** - * Eine Beschreibung eines Schadenereignisses ohne Ids. Von diesem Type erben die Meldung und die Darstellung eines Schadenereignisses. - * - *

Java-Klasse für Schadenereignis_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenereignis_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BasisSchadenereignis_Type">
- *       <sequence>
- *         <element name="SchadOrt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Ort_Type"/>
- *         <element name="BeteiligtePersonen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BeteiligtePerson_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="GeschaedigteInteressen" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}GeschaedigtesInteresse_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schadenmelder" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenmelder_Type" minOccurs="0"/>
- *         <element name="Bankverbindung" type="{urn:omds3CommonServiceTypes-1-1-0}PersBankverbindung_Type" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Schaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schaden_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenereignis_Type", propOrder = { - "schadOrt", - "beteiligtePersonen", - "geschaedigteInteressen", - "dokumente", - "schadenmelder", - "bankverbindung", - "schaeden" -}) -public class SchadenereignisType - extends BasisSchadenereignisType -{ - - @XmlElement(name = "SchadOrt", required = true) - protected OrtType schadOrt; - @XmlElement(name = "BeteiligtePersonen") - protected List beteiligtePersonen; - @XmlElement(name = "GeschaedigteInteressen") - protected List geschaedigteInteressen; - @XmlElement(name = "Dokumente") - protected List dokumente; - @XmlElement(name = "Schadenmelder") - protected SchadenmelderType schadenmelder; - @XmlElement(name = "Bankverbindung") - protected List bankverbindung; - @XmlElement(name = "Schaeden", required = true) - protected List schaeden; - - /** - * Ruft den Wert der schadOrt-Eigenschaft ab. - * - * @return - * possible object is - * {@link OrtType } - * - */ - public OrtType getSchadOrt() { - return schadOrt; - } - - /** - * Legt den Wert der schadOrt-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OrtType } - * - */ - public void setSchadOrt(OrtType value) { - this.schadOrt = value; - } - - /** - * Gets the value of the beteiligtePersonen property. - * - *

- * 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 set method for the beteiligtePersonen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBeteiligtePersonen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BeteiligtePersonType } - * - * - */ - public List getBeteiligtePersonen() { - if (beteiligtePersonen == null) { - beteiligtePersonen = new ArrayList(); - } - return this.beteiligtePersonen; - } - - /** - * Gets the value of the geschaedigteInteressen property. - * - *

- * 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 set method for the geschaedigteInteressen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeschaedigteInteressen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeschaedigtesInteresseType } - * - * - */ - public List getGeschaedigteInteressen() { - if (geschaedigteInteressen == null) { - geschaedigteInteressen = new ArrayList(); - } - return this.geschaedigteInteressen; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DokumentenReferenzType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - - /** - * Ruft den Wert der schadenmelder-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenmelderType } - * - */ - public SchadenmelderType getSchadenmelder() { - return schadenmelder; - } - - /** - * Legt den Wert der schadenmelder-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenmelderType } - * - */ - public void setSchadenmelder(SchadenmelderType value) { - this.schadenmelder = value; - } - - /** - * Gets the value of the bankverbindung property. - * - *

- * 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 set method for the bankverbindung property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBankverbindung().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersBankverbindungType } - * - * - */ - public List getBankverbindung() { - if (bankverbindung == null) { - bankverbindung = new ArrayList(); - } - return this.bankverbindung; - } - - /** - * Gets the value of the schaeden property. - * - *

- * 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 set method for the schaeden property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchaeden().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenType } - * - * - */ - public List getSchaeden() { - if (schaeden == null) { - schaeden = new ArrayList(); - } - return this.schaeden; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderType.java deleted file mode 100644 index c25ad1f3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ um Informationen über den Melder eines Schadens zu übermitteln - * - *

Java-Klasse für Schadenmelder_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="Schadenmelder_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Schadenmelder_Type") -public abstract class SchadenmelderType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderVermittlerType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderVermittlerType.java deleted file mode 100644 index 7e19adf6..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenmelderVermittlerType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ObjektSpezifikationType; - - -/** - * Typ zur Angabe eines Vermittlers als Schadenmelder - * - *

Java-Klasse für SchadenmelderVermittler_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenmelderVermittler_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
- *       <sequence>
- *         <element name="Vermnr" type="{urn:omds20}Vermnr"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenmelderVermittler_Type", propOrder = { - "vermnr" -}) -public class SchadenmelderVermittlerType - extends ObjektSpezifikationType -{ - - @XmlElement(name = "Vermnr", required = true) - protected String vermnr; - - /** - * Ruft den Wert der vermnr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermnr() { - return vermnr; - } - - /** - * Legt den Wert der vermnr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermnr(String value) { - this.vermnr = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenzuordnungType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenzuordnungType.java deleted file mode 100644 index b7b5bc6e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SchadenzuordnungType.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Typ für die Schadenzuordnung, welche eine vierstufige Systematik enthält, wobei die Schlüssel VU-spezifisch sind - * - *

Java-Klasse für SchadenzuordnungType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SchadenzuordnungType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SchadenSparteCd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UrsacheCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="SpezifikationCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ArtGeschaedigtesObjCd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SchadenzuordnungType", propOrder = { - "schadenSparteCd", - "ursacheCd", - "spezifikationCd", - "artGeschaedigtesObjCd" -}) -public class SchadenzuordnungType { - - @XmlElement(name = "SchadenSparteCd", required = true) - protected String schadenSparteCd; - @XmlElement(name = "UrsacheCd") - protected String ursacheCd; - @XmlElement(name = "SpezifikationCd") - protected String spezifikationCd; - @XmlElement(name = "ArtGeschaedigtesObjCd") - protected String artGeschaedigtesObjCd; - - /** - * Ruft den Wert der schadenSparteCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSchadenSparteCd() { - return schadenSparteCd; - } - - /** - * Legt den Wert der schadenSparteCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSchadenSparteCd(String value) { - this.schadenSparteCd = value; - } - - /** - * Ruft den Wert der ursacheCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrsacheCd() { - return ursacheCd; - } - - /** - * Legt den Wert der ursacheCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrsacheCd(String value) { - this.ursacheCd = value; - } - - /** - * Ruft den Wert der spezifikationCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpezifikationCd() { - return spezifikationCd; - } - - /** - * Legt den Wert der spezifikationCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpezifikationCd(String value) { - this.spezifikationCd = value; - } - - /** - * Ruft den Wert der artGeschaedigtesObjCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArtGeschaedigtesObjCd() { - return artGeschaedigtesObjCd; - } - - /** - * Legt den Wert der artGeschaedigtesObjCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArtGeschaedigtesObjCd(String value) { - this.artGeschaedigtesObjCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimRequestType.java deleted file mode 100644 index 8f656baf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimRequestType.java +++ /dev/null @@ -1,311 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ZeitraumType; - - -/** - * Request-Type für die Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimRequest_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <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="Polizzennr" type="{urn:omds20}Polizzennr" minOccurs="0"/>
- *         <element name="Personennr" type="{urn:omds20}Personennr" minOccurs="0"/>
- *         <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
- *         <element name="BearbStandCd" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}BearbStandCd_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>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimRequest_Type", propOrder = { - "vuNr", - "authFilter", - "suchbegriff", - "polizzennr", - "personennr", - "zeitraum", - "bearbStandCd", - "maxResults", - "offset", - "orderBy" -}) -public class SearchClaimRequestType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "Suchbegriff") - protected String suchbegriff; - @XmlElement(name = "Polizzennr") - protected String polizzennr; - @XmlElement(name = "Personennr") - protected String personennr; - @XmlElement(name = "Zeitraum") - protected ZeitraumType zeitraum; - @XmlElement(name = "BearbStandCd") - protected String bearbStandCd; - @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 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 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 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 personennr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonennr() { - return personennr; - } - - /** - * Legt den Wert der personennr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonennr(String value) { - this.personennr = value; - } - - /** - * Ruft den Wert der zeitraum-Eigenschaft ab. - * - * @return - * possible object is - * {@link ZeitraumType } - * - */ - public ZeitraumType getZeitraum() { - return zeitraum; - } - - /** - * Legt den Wert der zeitraum-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ZeitraumType } - * - */ - public void setZeitraum(ZeitraumType value) { - this.zeitraum = value; - } - - /** - * Ruft den Wert der bearbStandCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBearbStandCd() { - return bearbStandCd; - } - - /** - * Legt den Wert der bearbStandCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBearbStandCd(String value) { - this.bearbStandCd = value; - } - - /** - * Ruft den Wert der 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseResultType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseResultType.java deleted file mode 100644 index 025d468d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseResultType.java +++ /dev/null @@ -1,135 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Das Ergebnisobjekt der Schadensuche - * - *

Java-Klasse für SearchClaimResponseResult_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponseResult_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <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"/>
- *         <element name="Schadenereignisse" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SchadenereignisLight_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponseResult_Type", propOrder = { - "actualOffset", - "actualMaxResults", - "totalResults", - "schadenereignisse" -}) -public class SearchClaimResponseResultType { - - @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; - @XmlElement(name = "Schadenereignisse") - protected List schadenereignisse; - - /** - * 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; - } - - /** - * Gets the value of the schadenereignisse property. - * - *

- * 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 set method for the schadenereignisse property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSchadenereignisse().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SchadenereignisLightType } - * - * - */ - public List getSchadenereignisse() { - if (schadenereignisse == null) { - schadenereignisse = new ArrayList(); - } - return this.schadenereignisse; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseType.java deleted file mode 100644 index 13c7f16b..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SearchClaimResponseType.java +++ /dev/null @@ -1,100 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Response-Type der Suche nach einem Schaden - * - *

Java-Klasse für SearchClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SearchClaimResponse_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <choice>
- *         <element name="Result" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SearchClaimResponseResult_Type"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </choice>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchClaimResponse_Type", propOrder = { - "result", - "serviceFault" -}) -public class SearchClaimResponseType { - - @XmlElement(name = "Result") - protected SearchClaimResponseResultType result; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der result-Eigenschaft ab. - * - * @return - * possible object is - * {@link SearchClaimResponseResultType } - * - */ - public SearchClaimResponseResultType getResult() { - return result; - } - - /** - * Legt den Wert der result-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SearchClaimResponseResultType } - * - */ - public void setResult(SearchClaimResponseResultType value) { - this.result = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKfzType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKfzType.java deleted file mode 100644 index d5953be4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKfzType.java +++ /dev/null @@ -1,122 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - * Spartenerweiterung der Schadenmeldung für Kfz - * - *

Java-Klasse für SpartendetailSchadenKfz_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKfz_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehoerdlichAufgenommen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="Kennzeichen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="VerschuldenCd" type="{urn:omds20}VerschuldenCd_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKfz_Type", propOrder = { - "behoerdlichAufgenommen", - "kennzeichen", - "verschuldenCd" -}) -public class SpartendetailSchadenKfzType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehoerdlichAufgenommen") - protected Boolean behoerdlichAufgenommen; - @XmlElement(name = "Kennzeichen", required = true) - protected String kennzeichen; - @XmlElement(name = "VerschuldenCd") - protected String verschuldenCd; - - /** - * Ruft den Wert der behoerdlichAufgenommen-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBehoerdlichAufgenommen() { - return behoerdlichAufgenommen; - } - - /** - * Legt den Wert der behoerdlichAufgenommen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBehoerdlichAufgenommen(Boolean value) { - this.behoerdlichAufgenommen = value; - } - - /** - * Ruft den Wert der kennzeichen-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKennzeichen() { - return kennzeichen; - } - - /** - * Legt den Wert der kennzeichen-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKennzeichen(String value) { - this.kennzeichen = value; - } - - /** - * Ruft den Wert der verschuldenCd-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerschuldenCd() { - return verschuldenCd; - } - - /** - * Legt den Wert der verschuldenCd-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerschuldenCd(String value) { - this.verschuldenCd = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKrankenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKrankenType.java deleted file mode 100644 index 7881bdfa..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenKrankenType.java +++ /dev/null @@ -1,199 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Spartenerweiterung der Schadenmeldung für Kranken - * - *

Java-Klasse für SpartendetailSchadenKranken_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenKranken_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Behandlungen" maxOccurs="unbounded" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="BehandlungVon" type="{urn:omds20}Datum"/>
- *                   <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenKranken_Type", propOrder = { - "behandlerName", - "behandlungen" -}) -public class SpartendetailSchadenKrankenType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "BehandlerName", required = true) - protected String behandlerName; - @XmlElement(name = "Behandlungen") - protected List behandlungen; - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandlerName(String value) { - this.behandlerName = value; - } - - /** - * Gets the value of the behandlungen property. - * - *

- * 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 set method for the behandlungen property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getBehandlungen().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SpartendetailSchadenKrankenType.Behandlungen } - * - * - */ - public List getBehandlungen() { - if (behandlungen == null) { - behandlungen = new ArrayList(); - } - return this.behandlungen; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="BehandlungVon" type="{urn:omds20}Datum"/>
-     *         <element name="BehandlungBis" type="{urn:omds20}Datum" minOccurs="0"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "behandlungVon", - "behandlungBis" - }) - public static class Behandlungen { - - @XmlElement(name = "BehandlungVon", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar behandlungVon; - @XmlElement(name = "BehandlungBis") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar behandlungBis; - - /** - * Ruft den Wert der behandlungVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBehandlungVon() { - return behandlungVon; - } - - /** - * Legt den Wert der behandlungVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBehandlungVon(XMLGregorianCalendar value) { - this.behandlungVon = value; - } - - /** - * Ruft den Wert der behandlungBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBehandlungBis() { - return behandlungBis; - } - - /** - * Legt den Wert der behandlungBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBehandlungBis(XMLGregorianCalendar value) { - this.behandlungBis = value; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenType.java deleted file mode 100644 index cf3b4c94..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenType.java +++ /dev/null @@ -1,38 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - * Eine Erweiterung der Schadenmeldung fuer spezielle Sparten - * - *

Java-Klasse für SpartendetailSchaden_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchaden_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchaden_Type") -@XmlSeeAlso({ - SpartendetailSchadenKfzType.class, - SpartendetailSchadenUnfallType.class, - SpartendetailSchadenKrankenType.class -}) -public abstract class SpartendetailSchadenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenUnfallType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenUnfallType.java deleted file mode 100644 index 372b992c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SpartendetailSchadenUnfallType.java +++ /dev/null @@ -1,154 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - * Spartenerweiterung der Schadenmeldung für Unfall - * - *

Java-Klasse für SpartendetailSchadenUnfall_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SpartendetailSchadenUnfall_Type">
- *   <complexContent>
- *     <extension base="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}SpartendetailSchaden_Type">
- *       <sequence>
- *         <element name="ArbeitsunfaehigVon" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="ArbeitsunfaehigBis" type="{urn:omds20}Datum" minOccurs="0"/>
- *         <element name="Diagnose" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="BehandlerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SpartendetailSchadenUnfall_Type", propOrder = { - "arbeitsunfaehigVon", - "arbeitsunfaehigBis", - "diagnose", - "behandlerName" -}) -public class SpartendetailSchadenUnfallType - extends SpartendetailSchadenType -{ - - @XmlElement(name = "ArbeitsunfaehigVon") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar arbeitsunfaehigVon; - @XmlElement(name = "ArbeitsunfaehigBis") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar arbeitsunfaehigBis; - @XmlElement(name = "Diagnose", required = true) - protected String diagnose; - @XmlElement(name = "BehandlerName") - protected String behandlerName; - - /** - * Ruft den Wert der arbeitsunfaehigVon-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getArbeitsunfaehigVon() { - return arbeitsunfaehigVon; - } - - /** - * Legt den Wert der arbeitsunfaehigVon-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setArbeitsunfaehigVon(XMLGregorianCalendar value) { - this.arbeitsunfaehigVon = value; - } - - /** - * Ruft den Wert der arbeitsunfaehigBis-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getArbeitsunfaehigBis() { - return arbeitsunfaehigBis; - } - - /** - * Legt den Wert der arbeitsunfaehigBis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setArbeitsunfaehigBis(XMLGregorianCalendar value) { - this.arbeitsunfaehigBis = value; - } - - /** - * Ruft den Wert der diagnose-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDiagnose() { - return diagnose; - } - - /** - * Legt den Wert der diagnose-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDiagnose(String value) { - this.diagnose = value; - } - - /** - * Ruft den Wert der behandlerName-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBehandlerName() { - return behandlerName; - } - - /** - * Legt den Wert der behandlerName-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBehandlerName(String value) { - this.behandlerName = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimRequestType.java deleted file mode 100644 index 4b19d292..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimRequestType.java +++ /dev/null @@ -1,103 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonRequestType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.UploadDokumentType; - - -/** - * Typ für die Durchführung einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimRequest_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimRequest_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *         <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}Upload_Dokument_Type" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimRequest_Type", propOrder = { - "schadenereignis", - "dokumente" -}) -public class SubmitClaimRequestType - extends CommonRequestType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - @XmlElement(name = "Dokumente") - protected List dokumente; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - - /** - * Gets the value of the dokumente property. - * - *

- * 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 set method for the dokumente property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDokumente().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UploadDokumentType } - * - * - */ - public List getDokumente() { - if (dokumente == null) { - dokumente = new ArrayList(); - } - return this.dokumente; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimResponseType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimResponseType.java deleted file mode 100644 index 32b80805..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/SubmitClaimResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.CommonResponseType; - - -/** - * Anworttyp beim Erzeugen einer Schadenmeldung - * - *

Java-Klasse für SubmitClaimResponse_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="SubmitClaimResponse_Type">
- *   <complexContent>
- *     <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
- *       <sequence>
- *         <element name="Schadenereignis" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden}Schadenereignis_Type" minOccurs="0"/>
- *       </sequence>
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SubmitClaimResponse_Type", propOrder = { - "schadenereignis" -}) -public class SubmitClaimResponseType - extends CommonResponseType -{ - - @XmlElement(name = "Schadenereignis") - protected SchadenereignisType schadenereignis; - - /** - * Ruft den Wert der schadenereignis-Eigenschaft ab. - * - * @return - * possible object is - * {@link SchadenereignisType } - * - */ - public SchadenereignisType getSchadenereignis() { - return schadenereignis; - } - - /** - * Legt den Wert der schadenereignis-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link SchadenereignisType } - * - */ - public void setSchadenereignis(SchadenereignisType value) { - this.schadenereignis = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheRollendatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheRollendatenType.java deleted file mode 100644 index 4643d6f5..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheRollendatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Rollen um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheRollendaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheRollendaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheRollendaten_Type") -public abstract class ZusaetzlicheRollendatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensdatenType.java deleted file mode 100644 index e5088edf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung von Schäden um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensdaten_Type") -public abstract class ZusaetzlicheSchadensdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java deleted file mode 100644 index dd1303fe..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/ZusaetzlicheSchadensereignisdatenType.java +++ /dev/null @@ -1,32 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - * Abstrakter Typ fuer die Erweiterung der Schadensmeldung um Elemente, die nicht im Standard enthalten sind - * - *

Java-Klasse für ZusaetzlicheSchadensereignisdaten_Type complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ZusaetzlicheSchadensereignisdaten_Type">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZusaetzlicheSchadensereignisdaten_Type") -public abstract class ZusaetzlicheSchadensereignisdatenType { - - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/package-info.java deleted file mode 100644 index 176a7b5c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/on7schaden/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.on7schaden; diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcContent.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcContent.java deleted file mode 100644 index ae31e3a3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcContent.java +++ /dev/null @@ -1,95 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; - - -/** - * Informationen zu einem Dokument und das Dokument base64encoded - * - *

Java-Klasse für ArcContent complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcContent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo"/>
- *         <element name="arcImage" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcContent", propOrder = { - "arcImageInfo", - "arcImage" -}) -public class ArcContent { - - @XmlElement(required = true) - protected ArcImageInfo arcImageInfo; - @XmlElement(required = true) - @XmlMimeType("application/octet-stream") - protected DataHandler arcImage; - - /** - * Ruft den Wert der arcImageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcImageInfo } - * - */ - public ArcImageInfo getArcImageInfo() { - return arcImageInfo; - } - - /** - * Legt den Wert der arcImageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcImageInfo } - * - */ - public void setArcImageInfo(ArcImageInfo value) { - this.arcImageInfo = value; - } - - /** - * Ruft den Wert der arcImage-Eigenschaft ab. - * - * @return - * possible object is - * {@link DataHandler } - * - */ - public DataHandler getArcImage() { - return arcImage; - } - - /** - * Legt den Wert der arcImage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link DataHandler } - * - */ - public void setArcImage(DataHandler value) { - this.arcImage = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfo.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfo.java deleted file mode 100644 index 34b359a2..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfo.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementIdType; - - -/** - * Information zu einem einzelnen Dokument - * - *

Java-Klasse für ArcImageInfo complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageIdDetails" 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="arcContentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="arcContentLength" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="docReference" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfo", propOrder = { - "arcImageIdDetails", - "name", - "documentType", - "arcContentType", - "arcContentLength", - "date", - "docReference" -}) -public class ArcImageInfo { - - @XmlElement(required = true) - protected ElementIdType arcImageIdDetails; - @XmlElement(required = true) - protected String name; - protected int documentType; - protected String arcContentType; - protected Long arcContentLength; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected List docReference; - - /** - * Ruft den Wert der arcImageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getArcImageIdDetails() { - return arcImageIdDetails; - } - - /** - * Legt den Wert der arcImageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setArcImageIdDetails(ElementIdType value) { - this.arcImageIdDetails = 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 arcContentType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcContentType() { - return arcContentType; - } - - /** - * Legt den Wert der arcContentType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcContentType(String value) { - this.arcContentType = value; - } - - /** - * Ruft den Wert der arcContentLength-Eigenschaft ab. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getArcContentLength() { - return arcContentLength; - } - - /** - * Legt den Wert der arcContentLength-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setArcContentLength(Long value) { - this.arcContentLength = value; - } - - /** - * Ruft den Wert der date-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Legt den Wert der date-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the docReference property. - * - *

- * 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 set method for the docReference property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocReference().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getDocReference() { - if (docReference == null) { - docReference = new ArrayList(); - } - return this.docReference; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosRequest.java deleted file mode 100644 index 1e004a99..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosRequest.java +++ /dev/null @@ -1,273 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - * Anfragetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
- *         <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "policyType", - "policyPartnerRole", - "documentType", - "dateFrom", - "dateUntil" -}) -public class ArcImageInfosRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected String policyType; - protected List policyPartnerRole; - @XmlElement(type = Integer.class) - protected List documentType; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der policyType-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyType() { - return policyType; - } - - /** - * Legt den Wert der policyType-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyType(String value) { - this.policyType = value; - } - - /** - * Gets the value of the policyPartnerRole property. - * - *

- * 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 set method for the policyPartnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPolicyPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PolicyPartnerRole } - * - * - */ - public List getPolicyPartnerRole() { - if (policyPartnerRole == null) { - policyPartnerRole = new ArrayList(); - } - return this.policyPartnerRole; - } - - /** - * Gets the value of the documentType property. - * - *

- * 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 set method for the documentType property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDocumentType().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getDocumentType() { - if (documentType == null) { - documentType = new ArrayList(); - } - return this.documentType; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosResponse.java deleted file mode 100644 index 347a803f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageInfosResponse.java +++ /dev/null @@ -1,99 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Rückgabetyp Informationen zu vertragsbezogenen Dokumenten - * - *

Java-Klasse für ArcImageInfosResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageInfosResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="arcImageInfo" type="{urn:omds3ServiceTypes-1-1-0}ArcImageInfo" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageInfosResponse", propOrder = { - "arcImageInfo", - "serviceFault" -}) -public class ArcImageInfosResponse { - - protected List arcImageInfo; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Gets the value of the arcImageInfo property. - * - *

- * 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 set method for the arcImageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArcImageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ArcImageInfo } - * - * - */ - public List getArcImageInfo() { - if (arcImageInfo == null) { - arcImageInfo = new ArrayList(); - } - return this.arcImageInfo; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageRequest.java deleted file mode 100644 index d0a2cb93..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageRequest.java +++ /dev/null @@ -1,127 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - * Requesttyp zur Abholung eines einzelnen bekannten Dokuments - * - *

Java-Klasse für ArcImageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="ArcImageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageRequest", propOrder = { - "vuNr", - "authFilter", - "arcImageId" -}) -public class ArcImageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(name = "ArcImageId", required = true) - protected String arcImageId; - - /** - * 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 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 arcImageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getArcImageId() { - return arcImageId; - } - - /** - * Legt den Wert der arcImageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setArcImageId(String value) { - this.arcImageId = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageResponse.java deleted file mode 100644 index 1f3ae1c3..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/ArcImageResponse.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Responsetyp zur Rückgabe eines einzelnen Dokumentes - * - *

Java-Klasse für ArcImageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="ArcImageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ArcContent" type="{urn:omds3ServiceTypes-1-1-0}ArcContent" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ArcImageResponse", propOrder = { - "arcContent", - "serviceFault" -}) -public class ArcImageResponse { - - @XmlElement(name = "ArcContent") - protected ArcContent arcContent; - @XmlElement(name = "ServiceFault") - protected ServiceFault serviceFault; - - /** - * Ruft den Wert der arcContent-Eigenschaft ab. - * - * @return - * possible object is - * {@link ArcContent } - * - */ - public ArcContent getArcContent() { - return arcContent; - } - - /** - * Legt den Wert der arcContent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ArcContent } - * - */ - public void setArcContent(ArcContent value) { - this.arcContent = value; - } - - /** - * Ruft den Wert der serviceFault-Eigenschaft ab. - * - * @return - * possible object is - * {@link ServiceFault } - * - */ - public ServiceFault getServiceFault() { - return serviceFault; - } - - /** - * Legt den Wert der serviceFault-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ServiceFault } - * - */ - public void setServiceFault(ServiceFault value) { - this.serviceFault = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkBusinessObjectResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkBusinessObjectResponse.java deleted file mode 100644 index 5181133f..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkBusinessObjectResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - *

Java-Klasse für DeepLinkBusinessObjectResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkBusinessObjectResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpActionLink" type="{urn:omds3ServiceTypes-1-1-0}HttpActionLinkType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkBusinessObjectResponse", propOrder = { - "httpActionLink", - "serviceFault" -}) -public class DeepLinkBusinessObjectResponse { - - protected List httpActionLink; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the httpActionLink property. - * - *

- * 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 set method for the httpActionLink property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpActionLink().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HttpActionLinkType } - * - * - */ - public List getHttpActionLink() { - if (httpActionLink == null) { - httpActionLink = new ArrayList(); - } - return this.httpActionLink; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkClaimRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkClaimRequest.java deleted file mode 100644 index 493b1d19..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkClaimRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkClaimRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkClaimRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="claimNumber" type="{urn:omds20}Schadennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkClaimRequest", propOrder = { - "vuNr", - "authFilter", - "claimNumber", - "withoutFrame" -}) -public class DeepLinkClaimRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String claimNumber; - protected Boolean withoutFrame; - - /** - * 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 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 claimNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClaimNumber() { - return claimNumber; - } - - /** - * Legt den Wert der claimNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClaimNumber(String value) { - this.claimNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkOfferRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkOfferRequest.java deleted file mode 100644 index 6591529d..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkOfferRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkOfferRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkOfferRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="offerNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkOfferRequest", propOrder = { - "vuNr", - "authFilter", - "offerNumber", - "withoutFrame" -}) -public class DeepLinkOfferRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String offerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 offerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfferNumber() { - return offerNumber; - } - - /** - * Legt den Wert der offerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfferNumber(String value) { - this.offerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPartnerRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPartnerRequest.java deleted file mode 100644 index 309d54cf..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPartnerRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPartnerRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPartnerRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPartnerRequest", propOrder = { - "vuNr", - "authFilter", - "partnerNumber", - "withoutFrame" -}) -public class DeepLinkPartnerRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String partnerNumber; - protected Boolean withoutFrame; - - /** - * 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 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 partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPolicyRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPolicyRequest.java deleted file mode 100644 index 2bf12d97..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/DeepLinkPolicyRequest.java +++ /dev/null @@ -1,146 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - *

Java-Klasse für DeepLinkPolicyRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="DeepLinkPolicyRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *         <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
- *         <element ref="{urn:omds3ServiceTypes-1-1-0}withoutFrame" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeepLinkPolicyRequest", propOrder = { - "vuNr", - "authFilter", - "policyNumber", - "withoutFrame" -}) -public class DeepLinkPolicyRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - @XmlElement(required = true) - protected String policyNumber; - protected Boolean withoutFrame; - - /** - * 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 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 policyNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPolicyNumber() { - return policyNumber; - } - - /** - * Legt den Wert der policyNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPolicyNumber(String value) { - this.policyNumber = value; - } - - /** - * Ruft den Wert der withoutFrame-Eigenschaft ab. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isWithoutFrame() { - return withoutFrame; - } - - /** - * Legt den Wert der withoutFrame-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setWithoutFrame(Boolean value) { - this.withoutFrame = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/HttpActionLinkType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/HttpActionLinkType.java deleted file mode 100644 index 21bf5947..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/HttpActionLinkType.java +++ /dev/null @@ -1,142 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; - - -/** - * Definiert einen Deep-Link - * - *

Java-Klasse für HttpActionLinkType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="HttpActionLinkType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="url">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="type">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
- *               <enumeration value="1"/>
- *               <enumeration value="2"/>
- *               <enumeration value="3"/>
- *               <enumeration value="4"/>
- *               <enumeration value="5"/>
- *               <enumeration value="6"/>
- *               <enumeration value="7"/>
- *               <enumeration value="8"/>
- *               <enumeration value="9"/>
- *               <enumeration value="10"/>
- *               <enumeration value="11"/>
- *               <enumeration value="12"/>
- *               <enumeration value="13"/>
- *               <enumeration value="14"/>
- *               <enumeration value="15"/>
- *               <enumeration value="16"/>
- *               <enumeration value="17"/>
- *               <enumeration value="18"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpActionLinkType", propOrder = { - "url", - "type", - "validUntil" -}) -public class HttpActionLinkType { - - @XmlElement(required = true) - protected String url; - protected int type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar validUntil; - - /** - * Ruft den Wert der url-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Legt den Wert der url-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Ruft den Wert der type-Eigenschaft ab. - * - */ - public int getType() { - return type; - } - - /** - * Legt den Wert der type-Eigenschaft fest. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Ruft den Wert der validUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Legt den Wert der validUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/LoginRequestType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/LoginRequestType.java deleted file mode 100644 index d3af91d1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/LoginRequestType.java +++ /dev/null @@ -1,93 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AuthorizationFilter; - - -/** - * Der Typ des Request-Objekts fuer den allgemeinen Portaleinstieg - * - *

Java-Klasse für LoginRequestType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="LoginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LoginRequestType", propOrder = { - "vuNr", - "authFilter" -}) -public class LoginRequestType { - - @XmlElement(name = "VUNr") - protected String vuNr; - @XmlElement(name = "AuthFilter") - protected AuthorizationFilter authFilter; - - /** - * 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 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageInfoType.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageInfoType.java deleted file mode 100644 index c2087b99..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageInfoType.java +++ /dev/null @@ -1,238 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; -import at.vvo.omds.types.omds2Types.v2_14.PaketInhCdType; -import at.vvo.omds.types.omds2Types.v2_14.PaketUmfCdType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ElementIdType; - - -/** - * Typ fuer die wesentlichen Informationen zu einem OMDS-Datensatz-Package - * - *

Java-Klasse für OMDSPackageInfoType complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageInfoType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr"/>
- *         <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
- *         <element name="omdsPackageIdDetails" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
- *         <element name="timeStamp" type="{urn:omds20}Datum-Zeit"/>
- *         <element name="packageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packageExtent" type="{urn:omds20}PaketUmfCd_Type"/>
- *         <element name="packageContentCode" type="{urn:omds20}PaketInhCd_Type" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageInfoType", propOrder = { - "vuNr", - "maklerID", - "omdsPackageIdDetails", - "timeStamp", - "packageSize", - "packageExtent", - "packageContentCode" -}) -public class OMDSPackageInfoType { - - @XmlElement(name = "VUNr", required = true) - protected String vuNr; - @XmlElement(name = "MaklerID", required = true) - protected String maklerID; - @XmlElement(required = true) - protected ElementIdType omdsPackageIdDetails; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar timeStamp; - protected int packageSize; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected PaketUmfCdType packageExtent; - @XmlElement(required = true) - @XmlSchemaType(name = "string") - protected List packageContentCode; - - /** - * Ruft den Wert der vuNr-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVUNr() { - return vuNr; - } - - /** - * Legt den Wert der vuNr-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVUNr(String value) { - this.vuNr = value; - } - - /** - * Ruft den Wert der maklerID-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaklerID() { - return maklerID; - } - - /** - * Legt den Wert der maklerID-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaklerID(String value) { - this.maklerID = value; - } - - /** - * Ruft den Wert der omdsPackageIdDetails-Eigenschaft ab. - * - * @return - * possible object is - * {@link ElementIdType } - * - */ - public ElementIdType getOmdsPackageIdDetails() { - return omdsPackageIdDetails; - } - - /** - * Legt den Wert der omdsPackageIdDetails-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link ElementIdType } - * - */ - public void setOmdsPackageIdDetails(ElementIdType value) { - this.omdsPackageIdDetails = value; - } - - /** - * Ruft den Wert der timeStamp-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTimeStamp() { - return timeStamp; - } - - /** - * Legt den Wert der timeStamp-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTimeStamp(XMLGregorianCalendar value) { - this.timeStamp = value; - } - - /** - * Ruft den Wert der packageSize-Eigenschaft ab. - * - */ - public int getPackageSize() { - return packageSize; - } - - /** - * Legt den Wert der packageSize-Eigenschaft fest. - * - */ - public void setPackageSize(int value) { - this.packageSize = value; - } - - /** - * Ruft den Wert der packageExtent-Eigenschaft ab. - * - * @return - * possible object is - * {@link PaketUmfCdType } - * - */ - public PaketUmfCdType getPackageExtent() { - return packageExtent; - } - - /** - * Legt den Wert der packageExtent-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PaketUmfCdType } - * - */ - public void setPackageExtent(PaketUmfCdType value) { - this.packageExtent = value; - } - - /** - * Gets the value of the packageContentCode property. - * - *

- * 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 set method for the packageContentCode property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPackageContentCode().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PaketInhCdType } - * - * - */ - public List getPackageContentCode() { - if (packageContentCode == null) { - packageContentCode = new ArrayList(); - } - return this.packageContentCode; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListRequest.java deleted file mode 100644 index 24a42f4e..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListRequest.java +++ /dev/null @@ -1,148 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageListRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListRequest", propOrder = { - "vuNr", - "agentFilter", - "dateFrom", - "dateUntil" -}) -public class OMDSPackageListRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Ruft den Wert der dateFrom-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Legt den Wert der dateFrom-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Ruft den Wert der dateUntil-Eigenschaft ab. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Legt den Wert der dateUntil-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListResponse.java deleted file mode 100644 index 008aabe1..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageListResponse.java +++ /dev/null @@ -1,104 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Dieser Typ definiert eine Liste von OMDS-Datensaetzen - * - *

Java-Klasse für OMDSPackageListResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageListResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence minOccurs="0">
- *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageListResponse", propOrder = { - "omdsPackageInfo", - "serviceFault" -}) -public class OMDSPackageListResponse { - - protected List omdsPackageInfo; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the omdsPackageInfo property. - * - *

- * 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 set method for the omdsPackageInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OMDSPackageInfoType } - * - * - */ - public List getOmdsPackageInfo() { - if (omdsPackageInfo == null) { - omdsPackageInfo = new ArrayList(); - } - return this.omdsPackageInfo; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageRequest.java deleted file mode 100644 index bd8fcdde..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageRequest.java +++ /dev/null @@ -1,125 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.AgentFilterType; - - -/** - *

Java-Klasse für OMDSPackageRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *         <element name="agentFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AgentFilter_Type" minOccurs="0"/>
- *         <element name="omdsPackageId" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageRequest", propOrder = { - "vuNr", - "agentFilter", - "omdsPackageId" -}) -public class OMDSPackageRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - protected AgentFilterType agentFilter; - @XmlElement(required = true) - protected List omdsPackageId; - - /** - * 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 agentFilter-Eigenschaft ab. - * - * @return - * possible object is - * {@link AgentFilterType } - * - */ - public AgentFilterType getAgentFilter() { - return agentFilter; - } - - /** - * Legt den Wert der agentFilter-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link AgentFilterType } - * - */ - public void setAgentFilter(AgentFilterType value) { - this.agentFilter = value; - } - - /** - * Gets the value of the omdsPackageId property. - * - *

- * 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 set method for the omdsPackageId property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getOmdsPackageId().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getOmdsPackageId() { - if (omdsPackageId == null) { - omdsPackageId = new ArrayList(); - } - return this.omdsPackageId; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageResponse.java deleted file mode 100644 index 2cc32231..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/OMDSPackageResponse.java +++ /dev/null @@ -1,102 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - *

Java-Klasse für OMDSPackageResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="OMDSPackageResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackage" type="{urn:omds3ServiceTypes-1-1-0}RequestedOMDSPackage" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OMDSPackageResponse", propOrder = { - "requestedOmdsPackage", - "serviceFault" -}) -public class OMDSPackageResponse { - - protected List requestedOmdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Gets the value of the requestedOmdsPackage property. - * - *

- * 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 set method for the requestedOmdsPackage property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRequestedOmdsPackage().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RequestedOMDSPackage } - * - * - */ - public List getRequestedOmdsPackage() { - if (requestedOmdsPackage == null) { - requestedOmdsPackage = new ArrayList(); - } - return this.requestedOmdsPackage; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/PolicyPartnerRole.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/PolicyPartnerRole.java deleted file mode 100644 index 9fe6d12a..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/PolicyPartnerRole.java +++ /dev/null @@ -1,101 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.PartnerRoleType; - - -/** - * Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person - * - *

Java-Klasse für PolicyPartnerRole complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="PolicyPartnerRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="partnerNumber" type="{urn:omds20}Personennr"/>
- *         <element name="partnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PartnerRoleType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PolicyPartnerRole", propOrder = { - "partnerNumber", - "partnerRole" -}) -public class PolicyPartnerRole { - - @XmlElement(required = true) - protected String partnerNumber; - @XmlSchemaType(name = "string") - protected List partnerRole; - - /** - * Ruft den Wert der partnerNumber-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartnerNumber() { - return partnerNumber; - } - - /** - * Legt den Wert der partnerNumber-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartnerNumber(String value) { - this.partnerNumber = value; - } - - /** - * Gets the value of the partnerRole property. - * - *

- * 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 set method for the partnerRole property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPartnerRole().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PartnerRoleType } - * - * - */ - public List getPartnerRole() { - if (partnerRole == null) { - partnerRole = new ArrayList(); - } - return this.partnerRole; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/RequestedOMDSPackage.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/RequestedOMDSPackage.java deleted file mode 100644 index 7a4f1ab7..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/RequestedOMDSPackage.java +++ /dev/null @@ -1,231 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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.XmlType; -import at.vvo.omds.types.omds3Types.r1_7_0.common.ServiceFault; - - -/** - * Typ fuer ein OMDS-Datensatz-Package - * - *

Java-Klasse für RequestedOMDSPackage complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="RequestedOMDSPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="requestedOmdsPackageId">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *               <maxLength value="1024"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="omdsPackage" minOccurs="0">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
- *                   <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RequestedOMDSPackage", propOrder = { - "requestedOmdsPackageId", - "omdsPackage", - "serviceFault" -}) -public class RequestedOMDSPackage { - - @XmlElement(required = true) - protected String requestedOmdsPackageId; - protected RequestedOMDSPackage.OmdsPackage omdsPackage; - @XmlElement(name = "ServiceFault") - protected List serviceFault; - - /** - * Ruft den Wert der requestedOmdsPackageId-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestedOmdsPackageId() { - return requestedOmdsPackageId; - } - - /** - * Legt den Wert der requestedOmdsPackageId-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestedOmdsPackageId(String value) { - this.requestedOmdsPackageId = value; - } - - /** - * Ruft den Wert der omdsPackage-Eigenschaft ab. - * - * @return - * possible object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public RequestedOMDSPackage.OmdsPackage getOmdsPackage() { - return omdsPackage; - } - - /** - * Legt den Wert der omdsPackage-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link RequestedOMDSPackage.OmdsPackage } - * - */ - public void setOmdsPackage(RequestedOMDSPackage.OmdsPackage value) { - this.omdsPackage = value; - } - - /** - * Gets the value of the serviceFault property. - * - *

- * 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 set method for the serviceFault property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getServiceFault().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceFault } - * - * - */ - public List getServiceFault() { - if (serviceFault == null) { - serviceFault = new ArrayList(); - } - return this.serviceFault; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="omdsPackageInfo" type="{urn:omds3ServiceTypes-1-1-0}OMDSPackageInfoType"/>
-     *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "omdsPackageInfo", - "content" - }) - public static class OmdsPackage { - - @XmlElement(required = true) - protected OMDSPackageInfoType omdsPackageInfo; - @XmlElement(required = true) - @XmlMimeType("application/zip") - protected DataHandler content; - - /** - * Ruft den Wert der omdsPackageInfo-Eigenschaft ab. - * - * @return - * possible object is - * {@link OMDSPackageInfoType } - * - */ - public OMDSPackageInfoType getOmdsPackageInfo() { - return omdsPackageInfo; - } - - /** - * Legt den Wert der omdsPackageInfo-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link OMDSPackageInfoType } - * - */ - public void setOmdsPackageInfo(OMDSPackageInfoType value) { - this.omdsPackageInfo = value; - } - - /** - * 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; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataRequest.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataRequest.java deleted file mode 100644 index 99e10b94..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataRequest.java +++ /dev/null @@ -1,62 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java-Klasse für UserDataRequest complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="VUNr" type="{urn:omds20}VUNr" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataRequest", propOrder = { - "vuNr" -}) -public class UserDataRequest { - - @XmlElement(name = "VUNr") - protected String vuNr; - - /** - * 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; - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataResponse.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataResponse.java deleted file mode 100644 index ed30aac4..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/UserDataResponse.java +++ /dev/null @@ -1,200 +0,0 @@ - -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; - -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.omds2Types.v2_14.PERSONType; - - -/** - * Response Type mit Benutzerinformationen. Das Element 'address' ist mit Version 1.1.0 entfallen, da diese Informationen auch im Element 'person' übermittelt werden können - * - * - *

Java-Klasse für UserDataResponse complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

- * <complexType name="UserDataResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="userid">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *               <minLength value="1"/>
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="availableServices">
- *           <complexType>
- *             <complexContent>
- *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *                 <sequence>
- *                   <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *                 </sequence>
- *               </restriction>
- *             </complexContent>
- *           </complexType>
- *         </element>
- *         <element name="person" type="{urn:omds20}PERSON_Type"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDataResponse", propOrder = { - "userid", - "availableServices", - "person" -}) -public class UserDataResponse { - - @XmlElement(required = true) - protected String userid; - @XmlElement(required = true) - protected UserDataResponse.AvailableServices availableServices; - @XmlElement(required = true) - protected PERSONType person; - - /** - * Ruft den Wert der userid-Eigenschaft ab. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserid() { - return userid; - } - - /** - * Legt den Wert der userid-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserid(String value) { - this.userid = value; - } - - /** - * Ruft den Wert der availableServices-Eigenschaft ab. - * - * @return - * possible object is - * {@link UserDataResponse.AvailableServices } - * - */ - public UserDataResponse.AvailableServices getAvailableServices() { - return availableServices; - } - - /** - * Legt den Wert der availableServices-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link UserDataResponse.AvailableServices } - * - */ - public void setAvailableServices(UserDataResponse.AvailableServices value) { - this.availableServices = value; - } - - /** - * Ruft den Wert der person-Eigenschaft ab. - * - * @return - * possible object is - * {@link PERSONType } - * - */ - public PERSONType getPerson() { - return person; - } - - /** - * Legt den Wert der person-Eigenschaft fest. - * - * @param value - * allowed object is - * {@link PERSONType } - * - */ - public void setPerson(PERSONType value) { - this.person = value; - } - - - /** - *

Java-Klasse für anonymous complex type. - * - *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. - * - *

-     * <complexType>
-     *   <complexContent>
-     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
-     *       <sequence>
-     *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
-     *       </sequence>
-     *     </restriction>
-     *   </complexContent>
-     * </complexType>
-     * 
- * - * - */ - @XmlAccessorType(XmlAccessType.FIELD) - @XmlType(name = "", propOrder = { - "service" - }) - public static class AvailableServices { - - @XmlElement(required = true) - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-         *    getService().add(newItem);
-         * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - - } - -} diff --git a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/package-info.java b/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/package-info.java deleted file mode 100644 index d200410c..00000000 --- a/OMDSServiceDefinition/src/main/java/at/vvo/omds/types/omds3Types/r1_7_0/servicetypes/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "urn:omds3ServiceTypes-1-1-0", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package at.vvo.omds.types.omds3Types.r1_7_0.servicetypes; diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds20Types_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds20Types_binding.xml deleted file mode 100644 index e3a84ba9..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds20Types_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON1_Basisfunktionen_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON1_Basisfunktionen_binding.xml deleted file mode 100644 index 1825373e..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON1_Basisfunktionen_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Common_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Common_binding.xml deleted file mode 100644 index 168fe8cb..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Common_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Kfz_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Kfz_binding.xml deleted file mode 100644 index b5650662..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Kfz_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Kranken_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Kranken_binding.xml deleted file mode 100644 index e059b764..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Kranken_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Leben_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Leben_binding.xml deleted file mode 100644 index bd04ef20..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Leben_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Produktfinder_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Produktfinder_binding.xml deleted file mode 100644 index ae8043b5..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Produktfinder_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_RS_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_RS_binding.xml deleted file mode 100644 index dc66d4a4..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_RS_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_SachPrivat_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_SachPrivat_binding.xml deleted file mode 100644 index 1c611749..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_SachPrivat_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Unfall_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Unfall_binding.xml deleted file mode 100644 index c910d3b2..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON2_Antrag_Unfall_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON3_Vertrag_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON3_Vertrag_binding.xml deleted file mode 100644 index 3f4af834..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON3_Vertrag_binding.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON4_Partner_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON4_Partner_binding.xml deleted file mode 100644 index 658d00c6..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON4_Partner_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON7_Schaden_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON7_Schaden_binding.xml deleted file mode 100644 index 6b020a6b..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omds3_ON7_Schaden_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omdsCommonServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omdsCommonServiceTypes_binding.xml deleted file mode 100644 index 3cc6a9df..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omdsCommonServiceTypes_binding.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omdsExampleVuExtension_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omdsExampleVuExtension_binding.xml deleted file mode 100644 index 87625d0d..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omdsExampleVuExtension_binding.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omdsServiceTypes_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omdsServiceTypes_binding.xml deleted file mode 100644 index ac1d1f8c..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/omdsServiceTypes_binding.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/wsdl_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/wsdl_binding.xml deleted file mode 100644 index 5de75c3d..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/wsdl_binding.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - true - false - - - - - - diff --git a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/wsdl_broker_binding.xml b/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/wsdl_broker_binding.xml deleted file mode 100644 index 175d8e15..00000000 --- a/OMDSServiceDefinition/src/main/resources/bind/r1_7_0/wsdl_broker_binding.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - true - false - - - - - -