Aktuellen Stand Release 1.4 aufgenommen,
Versionsangabe in xsds auf Stand 1.5 geändert, Pom für Generierung Java angepasst, Javaklassen Stand 1.5 neu generiert, Releasenotes 1.5 angepasst,
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Typ zur Beschreibung abgelehnter Risiken
|
||||
*
|
||||
* <p>Java-Klasse für AbgelehnteRisiken_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AbgelehnteRisiken_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AbgelehnteRisiken_Type")
|
||||
public abstract class AbgelehnteRisikenType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für AdresseArtCd_Type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="AdresseArtCd_Type">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="HA"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "AdresseArtCd_Type")
|
||||
@XmlEnum
|
||||
public enum AdresseArtCdType {
|
||||
|
||||
|
||||
/**
|
||||
* Hauptadresse
|
||||
*
|
||||
*/
|
||||
HA;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static AdresseArtCdType fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,245 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für eine Adresse mit ObjektId
|
||||
*
|
||||
* <p>Java-Klasse für Adresse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Adresse_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* </sequence>
|
||||
* <attGroup ref="{urn:omds20}Adresse_Attribute"/>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Adresse_Type", propOrder = {
|
||||
"objektId"
|
||||
})
|
||||
public class AdresseType {
|
||||
|
||||
@XmlElement(name = "ObjektId", required = true)
|
||||
protected ObjektIdType objektId;
|
||||
@XmlAttribute(name = "Pac")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long pac;
|
||||
@XmlAttribute(name = "LandesCd")
|
||||
protected String landesCd;
|
||||
@XmlAttribute(name = "PLZ")
|
||||
protected String plz;
|
||||
@XmlAttribute(name = "Ort")
|
||||
protected String ort;
|
||||
@XmlAttribute(name = "Strasse")
|
||||
protected String strasse;
|
||||
@XmlAttribute(name = "Hausnr")
|
||||
protected String hausnr;
|
||||
@XmlAttribute(name = "Zusatz")
|
||||
protected String zusatz;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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 java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Ein spezieller AuthorizationFilterType, der eine Anfrage dahingehend einschränkt, dass nur Ergebnisse für eine bestimmte MaklerID oder Vermnr (Vermittlernummer) zurück gegeben werden
|
||||
*
|
||||
* <p>Java-Klasse für AgentFilter_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AgentFilter_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter">
|
||||
* <choice>
|
||||
* <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
|
||||
* <element name="Vermnr" type="{urn:omds20}Vermnr" maxOccurs="unbounded"/>
|
||||
* </choice>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AgentFilter_Type", propOrder = {
|
||||
"maklerID",
|
||||
"vermnr"
|
||||
})
|
||||
public class AgentFilterType
|
||||
extends AuthorizationFilter
|
||||
{
|
||||
|
||||
@XmlElement(name = "MaklerID")
|
||||
protected String maklerID;
|
||||
@XmlElement(name = "Vermnr")
|
||||
protected List<String> vermnr;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der maklerID-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMaklerID() {
|
||||
return maklerID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der maklerID-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMaklerID(String value) {
|
||||
this.maklerID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the vermnr property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the vermnr property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getVermnr().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getVermnr() {
|
||||
if (vermnr == null) {
|
||||
vermnr = new ArrayList<String>();
|
||||
}
|
||||
return this.vermnr;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für Antragsart_Type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="Antragsart_Type">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="NA"/>
|
||||
* <enumeration value="FW"/>
|
||||
* <enumeration value="VW"/>
|
||||
* <enumeration value="WK"/>
|
||||
* <enumeration value="TU"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "Antragsart_Type")
|
||||
@XmlEnum
|
||||
public enum AntragsartType {
|
||||
|
||||
|
||||
/**
|
||||
* Neuantrag
|
||||
*
|
||||
*/
|
||||
NA,
|
||||
|
||||
/**
|
||||
* Fahrzeugwechsel
|
||||
*
|
||||
*/
|
||||
FW,
|
||||
|
||||
/**
|
||||
* Versicherungswechsel
|
||||
*
|
||||
*/
|
||||
VW,
|
||||
|
||||
/**
|
||||
* Wechselkennzeichen
|
||||
*
|
||||
*/
|
||||
WK,
|
||||
|
||||
/**
|
||||
* Tarifumstellung
|
||||
*
|
||||
*/
|
||||
TU;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static AntragsartType fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz;
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
@@ -8,14 +8,14 @@ import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Typ für den Fahrzeugzustand
|
||||
* Definiert einen abstrakten Filter um bestimmte spezifische Elemente herauszufiltern
|
||||
*
|
||||
* <p>Java-Klasse für Fahrzeugzustand_Type complex type.
|
||||
* <p>Java-Klasse für AuthorizationFilter complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Fahrzeugzustand_Type">
|
||||
* <complexType name="AuthorizationFilter">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
@@ -26,12 +26,11 @@ import javax.xml.bind.annotation.XmlType;
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Fahrzeugzustand_Type")
|
||||
@XmlType(name = "AuthorizationFilter")
|
||||
@XmlSeeAlso({
|
||||
EinfacherFahrzeugzustandType.class,
|
||||
FahrzeugzustandMitBesichichtigungType.class
|
||||
AgentFilterType.class
|
||||
})
|
||||
public abstract class FahrzeugzustandType {
|
||||
public abstract class AuthorizationFilter {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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;
|
||||
|
||||
|
||||
/**
|
||||
* beschreibt eine Bankverbindug
|
||||
*
|
||||
* <p>Java-Klasse für Bankverbindung_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Bankverbindung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Kontoinhaber" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Bank" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="BIC" type="{urn:omds3CommonServiceTypes-1-1-0}BIC_Type" minOccurs="0"/>
|
||||
* <element name="IBAN" type="{urn:omds3CommonServiceTypes-1-1-0}IBAN_Type"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Bankverbindung_Type", propOrder = {
|
||||
"kontoinhaber",
|
||||
"bank",
|
||||
"bic",
|
||||
"iban"
|
||||
})
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,13 +1,9 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlEnumValue;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für Berechnungsvariante_Type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="Berechnungsvariante_Type">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="basic"/>
|
||||
* <enumeration value="medium"/>
|
||||
* <enumeration value="top"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "Berechnungsvariante_Type")
|
||||
@XmlEnum
|
||||
public enum BerechnungsvarianteType {
|
||||
|
||||
@XmlEnumValue("basic")
|
||||
BASIC("basic"),
|
||||
@XmlEnumValue("medium")
|
||||
MEDIUM("medium"),
|
||||
@XmlEnumValue("top")
|
||||
TOP("top");
|
||||
private final String value;
|
||||
|
||||
BerechnungsvarianteType(String v) {
|
||||
value = v;
|
||||
}
|
||||
|
||||
public String value() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public static BerechnungsvarianteType fromValue(String v) {
|
||||
for (BerechnungsvarianteType c: BerechnungsvarianteType.values()) {
|
||||
if (c.value.equals(v)) {
|
||||
return c;
|
||||
}
|
||||
}
|
||||
throw new IllegalArgumentException(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind
|
||||
*
|
||||
* <p>Java-Klasse für BeteiligtePersonVertrag_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BeteiligtePersonVertrag_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BeteiligtePersonVertrag_Type", propOrder = {
|
||||
"lfnr",
|
||||
"person"
|
||||
})
|
||||
public class BeteiligtePersonVertragType {
|
||||
|
||||
@XmlElement(name = "Lfnr")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected int lfnr;
|
||||
@XmlElement(name = "Person", required = true)
|
||||
protected PersonType person;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der lfnr-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public int getLfnr() {
|
||||
return lfnr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der lfnr-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setLfnr(int value) {
|
||||
this.lfnr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Objekt zur Übermittlung von Personendaten ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld. Kann Adressdaten enthalten.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PersonType }
|
||||
*
|
||||
*/
|
||||
public PersonType getPerson() {
|
||||
return person;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der person-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PersonType }
|
||||
*
|
||||
*/
|
||||
public void setPerson(PersonType value) {
|
||||
this.person = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds2Types.v2_11.PERSONType;
|
||||
|
||||
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 Bezugsrecht
|
||||
*
|
||||
* <p>Java-Klasse für Bezugsrecht_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Bezugsrecht_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds20}PERSON"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Bezugsrecht_Type", propOrder = {
|
||||
"person"
|
||||
})
|
||||
public class BezugsrechtType {
|
||||
|
||||
@XmlElement(name = "PERSON", namespace = "urn:omds20", required = true)
|
||||
protected PERSONType person;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der person-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PERSONType }
|
||||
*
|
||||
*/
|
||||
public PERSONType getPERSON() {
|
||||
return person;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der person-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PERSONType }
|
||||
*
|
||||
*/
|
||||
public void setPERSON(PERSONType value) {
|
||||
this.person = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,153 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Type Bonus Malus System
|
||||
*
|
||||
* <p>Java-Klasse für BonusMalusSystem_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BonusMalusSystem_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="BonusMalusVorversicherung" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusVorversicherung_Type"/>
|
||||
* <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type" minOccurs="0"/>
|
||||
* <element name="Polizzennummer" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="1"/>
|
||||
* <maxLength value="15"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="OffeneSchaeden" type="{urn:omds3CommonServiceTypes-1-1-0}OffeneSchaeden_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BonusMalusSystem_Type", propOrder = {
|
||||
"bonusMalusVorversicherung",
|
||||
"versicherungsgesellschaft",
|
||||
"polizzennummer",
|
||||
"offeneSchaeden"
|
||||
})
|
||||
public class BonusMalusSystemType {
|
||||
|
||||
@XmlElement(name = "BonusMalusVorversicherung", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected BonusMalusVorversicherungType bonusMalusVorversicherung;
|
||||
@XmlElement(name = "Versicherungsgesellschaft")
|
||||
protected String versicherungsgesellschaft;
|
||||
@XmlElement(name = "Polizzennummer")
|
||||
protected String polizzennummer;
|
||||
@XmlElement(name = "OffeneSchaeden")
|
||||
protected OffeneSchaedenType offeneSchaeden;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der bonusMalusVorversicherung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BonusMalusVorversicherungType }
|
||||
*
|
||||
*/
|
||||
public BonusMalusVorversicherungType getBonusMalusVorversicherung() {
|
||||
return bonusMalusVorversicherung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der bonusMalusVorversicherung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BonusMalusVorversicherungType }
|
||||
*
|
||||
*/
|
||||
public void setBonusMalusVorversicherung(BonusMalusVorversicherungType value) {
|
||||
this.bonusMalusVorversicherung = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versicherungsgesellschaft-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVersicherungsgesellschaft() {
|
||||
return versicherungsgesellschaft;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versicherungsgesellschaft-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVersicherungsgesellschaft(String value) {
|
||||
this.versicherungsgesellschaft = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der polizzennummer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPolizzennummer() {
|
||||
return polizzennummer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der polizzennummer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPolizzennummer(String value) {
|
||||
this.polizzennummer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offeneSchaeden-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link OffeneSchaedenType }
|
||||
*
|
||||
*/
|
||||
public OffeneSchaedenType getOffeneSchaeden() {
|
||||
return offeneSchaeden;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offeneSchaeden-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link OffeneSchaedenType }
|
||||
*
|
||||
*/
|
||||
public void setOffeneSchaeden(OffeneSchaedenType value) {
|
||||
this.offeneSchaeden = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlEnumValue;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für BonusMalusVorversicherung_Type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="BonusMalusVorversicherung_Type">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="Ohne Vorversicherung"/>
|
||||
* <enumeration value="Mit Vorversicherung"/>
|
||||
* <enumeration value="BM-Übernahme von Angehörigen"/>
|
||||
* <enumeration value="BM-Übernahme vom Dienstgeber"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "BonusMalusVorversicherung_Type")
|
||||
@XmlEnum
|
||||
public enum BonusMalusVorversicherungType {
|
||||
|
||||
@XmlEnumValue("Ohne Vorversicherung")
|
||||
OHNE_VORVERSICHERUNG("Ohne Vorversicherung"),
|
||||
@XmlEnumValue("Mit Vorversicherung")
|
||||
MIT_VORVERSICHERUNG("Mit Vorversicherung"),
|
||||
@XmlEnumValue("BM-\u00dcbernahme von Angeh\u00f6rigen")
|
||||
BM_ÜBERNAHME_VON_ANGEHÖRIGEN("BM-\u00dcbernahme von Angeh\u00f6rigen"),
|
||||
@XmlEnumValue("BM-\u00dcbernahme vom Dienstgeber")
|
||||
BM_ÜBERNAHME_VOM_DIENSTGEBER("BM-\u00dcbernahme vom Dienstgeber");
|
||||
private final String value;
|
||||
|
||||
BonusMalusVorversicherungType(String v) {
|
||||
value = v;
|
||||
}
|
||||
|
||||
public String value() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public static BonusMalusVorversicherungType fromValue(String v) {
|
||||
for (BonusMalusVorversicherungType c: BonusMalusVorversicherungType.values()) {
|
||||
if (c.value.equals(v)) {
|
||||
return c;
|
||||
}
|
||||
}
|
||||
throw new IllegalArgumentException(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,16 +1,13 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRequestType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind
|
||||
|
||||
@@ -1,16 +1,13 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationResponseType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind
|
||||
|
||||
@@ -1,14 +1,11 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.GetApplicationDocumentRequestType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.GetApplicationDocumentRequestType;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,13 +1,10 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.GetApplicationDocumentResponseType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Abstraktes ResponseObjekt
|
||||
|
||||
@@ -0,0 +1,201 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds2Types.v2_11.ELZeitraumType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Abstakter Typ fuer Suchanfragen
|
||||
*
|
||||
* <p>Java-Klasse für CommonSearchRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CommonSearchRequest_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||
* <sequence>
|
||||
* <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
|
||||
* <element name="Suchbegriff" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type" minOccurs="0"/>
|
||||
* <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="OrderBy" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="Meldedatum aufsteigend"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CommonSearchRequest_Type", propOrder = {
|
||||
"authFilter",
|
||||
"suchbegriff",
|
||||
"zeitraum",
|
||||
"maxResults",
|
||||
"offset",
|
||||
"orderBy"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
GetStateChangesRequestType.class
|
||||
})
|
||||
public abstract class CommonSearchRequestType
|
||||
extends CommonRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "AuthFilter")
|
||||
protected AuthorizationFilter authFilter;
|
||||
@XmlElement(name = "Suchbegriff")
|
||||
protected String suchbegriff;
|
||||
@XmlElement(name = "Zeitraum")
|
||||
protected ELZeitraumType zeitraum;
|
||||
@XmlElement(name = "MaxResults")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long maxResults;
|
||||
@XmlElement(name = "Offset")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long offset;
|
||||
@XmlElement(name = "OrderBy")
|
||||
protected String orderBy;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der authFilter-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AuthorizationFilter }
|
||||
*
|
||||
*/
|
||||
public AuthorizationFilter getAuthFilter() {
|
||||
return authFilter;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der authFilter-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AuthorizationFilter }
|
||||
*
|
||||
*/
|
||||
public void setAuthFilter(AuthorizationFilter value) {
|
||||
this.authFilter = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der suchbegriff-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSuchbegriff() {
|
||||
return suchbegriff;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der suchbegriff-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSuchbegriff(String value) {
|
||||
this.suchbegriff = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zeitraum-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ELZeitraumType }
|
||||
*
|
||||
*/
|
||||
public ELZeitraumType getZeitraum() {
|
||||
return zeitraum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zeitraum-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ELZeitraumType }
|
||||
*
|
||||
*/
|
||||
public void setZeitraum(ELZeitraumType value) {
|
||||
this.zeitraum = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der maxResults-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public long getMaxResults() {
|
||||
return maxResults;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der maxResults-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setMaxResults(long value) {
|
||||
this.maxResults = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offset-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public long getOffset() {
|
||||
return offset;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offset-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setOffset(long value) {
|
||||
this.offset = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der orderBy-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrderBy() {
|
||||
return orderBy;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der orderBy-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrderBy(String value) {
|
||||
this.orderBy = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Typ für Ergebnisse von Suchen
|
||||
*
|
||||
* <p>Java-Klasse für CommonSearchResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CommonSearchResponse_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||
* <sequence>
|
||||
* <element name="ActualOffset" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="ActualMaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="TotalResults" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CommonSearchResponse_Type", propOrder = {
|
||||
"actualOffset",
|
||||
"actualMaxResults",
|
||||
"totalResults"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
GetStateChangesResponseType.class
|
||||
})
|
||||
public abstract class CommonSearchResponseType
|
||||
extends CommonResponseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "ActualOffset")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long actualOffset;
|
||||
@XmlElement(name = "ActualMaxResults")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long actualMaxResults;
|
||||
@XmlElement(name = "TotalResults")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long totalResults;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der actualOffset-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public long getActualOffset() {
|
||||
return actualOffset;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der actualOffset-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setActualOffset(long value) {
|
||||
this.actualOffset = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der actualMaxResults-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public long getActualMaxResults() {
|
||||
return actualMaxResults;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der actualMaxResults-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setActualMaxResults(long value) {
|
||||
this.actualMaxResults = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der totalResults-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public long getTotalResults() {
|
||||
return totalResults;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der totalResults-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setTotalResults(long value) {
|
||||
this.totalResults = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,187 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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;
|
||||
|
||||
|
||||
/**
|
||||
* Dateianhang welcher an einen Geschäftsfall hinzugefügt werden kann
|
||||
*
|
||||
*
|
||||
* <p>Java-Klasse für Dateianhang_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Dateianhang_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DateiMimeType" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="DateiType" type="{urn:omds3CommonServiceTypes-1-1-0}TypeDateianhang_Type" minOccurs="0"/>
|
||||
* <element name="DateiName">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="100"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
||||
* <element name="DateiBeschreibung" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="200"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Dateianhang_Type", propOrder = {
|
||||
"dateiMimeType",
|
||||
"dateiType",
|
||||
"dateiName",
|
||||
"dateiData",
|
||||
"dateiBeschreibung"
|
||||
})
|
||||
public class DateianhangType {
|
||||
|
||||
@XmlElement(name = "DateiMimeType", required = true)
|
||||
protected String dateiMimeType;
|
||||
@XmlElement(name = "DateiType")
|
||||
protected Integer dateiType;
|
||||
@XmlElement(name = "DateiName", required = true)
|
||||
protected String dateiName;
|
||||
@XmlElement(name = "DateiData", required = true)
|
||||
protected byte[] dateiData;
|
||||
@XmlElement(name = "DateiBeschreibung")
|
||||
protected String dateiBeschreibung;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der dateiMimeType-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDateiMimeType() {
|
||||
return dateiMimeType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der dateiMimeType-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDateiMimeType(String value) {
|
||||
this.dateiMimeType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der dateiType-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getDateiType() {
|
||||
return dateiType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der dateiType-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setDateiType(Integer value) {
|
||||
this.dateiType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der dateiName-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDateiName() {
|
||||
return dateiName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der dateiName-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDateiName(String value) {
|
||||
this.dateiName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der dateiData-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* byte[]
|
||||
*/
|
||||
public byte[] getDateiData() {
|
||||
return dateiData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der dateiData-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* byte[]
|
||||
*/
|
||||
public void setDateiData(byte[] value) {
|
||||
this.dateiData = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der dateiBeschreibung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDateiBeschreibung() {
|
||||
return dateiBeschreibung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der dateiBeschreibung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDateiBeschreibung(String value) {
|
||||
this.dateiBeschreibung = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Type Datenverwendung
|
||||
*
|
||||
* <p>Java-Klasse für Datenverwendung_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Datenverwendung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ZustimmungZurElektrUebermittlungVorvertraglDokumente" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* <element name="ElektrUebermittlungVorvertraglDokumenteEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="ZustimmungZurVerwendungDerDatenZuWerbezwecken" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Datenverwendung_Type", propOrder = {
|
||||
"zustimmungZurElektrUebermittlungVorvertraglDokumente",
|
||||
"elektrUebermittlungVorvertraglDokumenteEmail",
|
||||
"zustimmungZurVerwendungDerDatenZuWerbezwecken"
|
||||
})
|
||||
public class DatenverwendungType {
|
||||
|
||||
@XmlElement(name = "ZustimmungZurElektrUebermittlungVorvertraglDokumente")
|
||||
protected Boolean zustimmungZurElektrUebermittlungVorvertraglDokumente;
|
||||
@XmlElement(name = "ElektrUebermittlungVorvertraglDokumenteEmail")
|
||||
protected String elektrUebermittlungVorvertraglDokumenteEmail;
|
||||
@XmlElement(name = "ZustimmungZurVerwendungDerDatenZuWerbezwecken")
|
||||
protected boolean zustimmungZurVerwendungDerDatenZuWerbezwecken;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isZustimmungZurElektrUebermittlungVorvertraglDokumente() {
|
||||
return zustimmungZurElektrUebermittlungVorvertraglDokumente;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setZustimmungZurElektrUebermittlungVorvertraglDokumente(Boolean value) {
|
||||
this.zustimmungZurElektrUebermittlungVorvertraglDokumente = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der elektrUebermittlungVorvertraglDokumenteEmail-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getElektrUebermittlungVorvertraglDokumenteEmail() {
|
||||
return elektrUebermittlungVorvertraglDokumenteEmail;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der elektrUebermittlungVorvertraglDokumenteEmail-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setElektrUebermittlungVorvertraglDokumenteEmail(String value) {
|
||||
this.elektrUebermittlungVorvertraglDokumenteEmail = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public boolean isZustimmungZurVerwendungDerDatenZuWerbezwecken() {
|
||||
return zustimmungZurVerwendungDerDatenZuWerbezwecken;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setZustimmungZurVerwendungDerDatenZuWerbezwecken(boolean value) {
|
||||
this.zustimmungZurVerwendungDerDatenZuWerbezwecken = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Type Deckung Prozent
|
||||
*
|
||||
* <p>Java-Klasse für DeckungProzent_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DeckungProzent_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="deckungActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="deckungProzent" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DeckungProzent_Type", propOrder = {
|
||||
"deckungActive",
|
||||
"deckungProzent"
|
||||
})
|
||||
public class DeckungProzentType {
|
||||
|
||||
protected boolean deckungActive;
|
||||
protected int deckungProzent;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der deckungActive-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public boolean isDeckungActive() {
|
||||
return deckungActive;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der deckungActive-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setDeckungActive(boolean value) {
|
||||
this.deckungActive = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der deckungProzent-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public int getDeckungProzent() {
|
||||
return deckungProzent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der deckungProzent-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setDeckungProzent(int value) {
|
||||
this.deckungProzent = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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 Deckung
|
||||
*
|
||||
* <p>Java-Klasse für DeckungVs_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DeckungVs_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Versicherungssumme" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DeckungVs_Type", propOrder = {
|
||||
"versicherungssumme"
|
||||
})
|
||||
public class DeckungVsType {
|
||||
|
||||
@XmlElement(name = "Versicherungssumme")
|
||||
protected int versicherungssumme;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versicherungssumme-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public int getVersicherungssumme() {
|
||||
return versicherungssumme;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versicherungssumme-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setVersicherungssumme(int value) {
|
||||
this.versicherungssumme = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,102 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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 Deckung
|
||||
*
|
||||
* <p>Java-Klasse für DeckungVsVI_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DeckungVsVI_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="deckungActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="deckungVs" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="VersichertesInteresse" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DeckungVsVI_Type", propOrder = {
|
||||
"deckungActive",
|
||||
"deckungVs",
|
||||
"versichertesInteresse"
|
||||
})
|
||||
public class DeckungVsVIType {
|
||||
|
||||
protected boolean deckungActive;
|
||||
protected int deckungVs;
|
||||
@XmlElement(name = "VersichertesInteresse", required = true)
|
||||
protected Object versichertesInteresse;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der deckungActive-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public boolean isDeckungActive() {
|
||||
return deckungActive;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der deckungActive-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setDeckungActive(boolean value) {
|
||||
this.deckungActive = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der deckungVs-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public int getDeckungVs() {
|
||||
return deckungVs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der deckungVs-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setDeckungVs(int value) {
|
||||
this.deckungVs = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versichertesInteresse-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Object }
|
||||
*
|
||||
*/
|
||||
public Object getVersichertesInteresse() {
|
||||
return versichertesInteresse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versichertesInteresse-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Object }
|
||||
*
|
||||
*/
|
||||
public void setVersichertesInteresse(Object value) {
|
||||
this.versichertesInteresse = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für DirectionCd_Type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="DirectionCd_Type">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="IN"/>
|
||||
* <enumeration value="OUT"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "DirectionCd_Type")
|
||||
@XmlEnum
|
||||
public enum DirectionCdType {
|
||||
|
||||
|
||||
/**
|
||||
* Input-Wert
|
||||
*
|
||||
*/
|
||||
IN,
|
||||
|
||||
/**
|
||||
* Output-Wert
|
||||
*
|
||||
*/
|
||||
OUT;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static DirectionCdType fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,14 +1,10 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -0,0 +1,258 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Information zu einem einzelnen Dokument
|
||||
*
|
||||
* <p>Java-Klasse für DokumentenReferenz_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DokumentenReferenz_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
|
||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
|
||||
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Groesse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="Datum" type="{urn:omds20}Datum-Zeit"/>
|
||||
* <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
|
||||
* <element name="ReferenzWeitereDokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DokumentenReferenz_Type", propOrder = {
|
||||
"id",
|
||||
"name",
|
||||
"documentType",
|
||||
"mimetype",
|
||||
"groesse",
|
||||
"datum",
|
||||
"objektSpezifikation",
|
||||
"referenzWeitereDokumente"
|
||||
})
|
||||
public class DokumentenReferenzType {
|
||||
|
||||
@XmlElement(name = "Id", required = true)
|
||||
protected ElementIdType id;
|
||||
@XmlElement(name = "Name", required = true)
|
||||
protected String name;
|
||||
@XmlElement(name = "DocumentType")
|
||||
protected int documentType;
|
||||
@XmlElement(name = "Mimetype")
|
||||
protected String mimetype;
|
||||
@XmlElement(name = "Groesse")
|
||||
protected Long groesse;
|
||||
@XmlElement(name = "Datum", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar datum;
|
||||
@XmlElement(name = "ObjektSpezifikation")
|
||||
protected ObjektSpezifikationType objektSpezifikation;
|
||||
@XmlElement(name = "ReferenzWeitereDokumente")
|
||||
protected List<DokumentenReferenzType> referenzWeitereDokumente;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der id-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ElementIdType }
|
||||
*
|
||||
*/
|
||||
public ElementIdType getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der id-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ElementIdType }
|
||||
*
|
||||
*/
|
||||
public void setId(ElementIdType value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der name-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der name-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der documentType-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public int getDocumentType() {
|
||||
return documentType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der documentType-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setDocumentType(int value) {
|
||||
this.documentType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der mimetype-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMimetype() {
|
||||
return mimetype;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der mimetype-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMimetype(String value) {
|
||||
this.mimetype = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der groesse-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getGroesse() {
|
||||
return groesse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der groesse-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setGroesse(Long value) {
|
||||
this.groesse = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der datum-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getDatum() {
|
||||
return datum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der datum-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setDatum(XMLGregorianCalendar value) {
|
||||
this.datum = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der objektSpezifikation-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ObjektSpezifikationType }
|
||||
*
|
||||
*/
|
||||
public ObjektSpezifikationType getObjektSpezifikation() {
|
||||
return objektSpezifikation;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der objektSpezifikation-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ObjektSpezifikationType }
|
||||
*
|
||||
*/
|
||||
public void setObjektSpezifikation(ObjektSpezifikationType value) {
|
||||
this.objektSpezifikation = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the referenzWeitereDokumente property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the referenzWeitereDokumente property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getReferenzWeitereDokumente().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DokumentenReferenzType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DokumentenReferenzType> getReferenzWeitereDokumente() {
|
||||
if (referenzWeitereDokumente == null) {
|
||||
referenzWeitereDokumente = new ArrayList<DokumentenReferenzType>();
|
||||
}
|
||||
return this.referenzWeitereDokumente;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,110 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* Ein Typ für eine Objekt-Id in Verbindung mit einem möglichen Ablaufzeitpunkt und dem Hinweis, ob die Id nur einmalig oder auch mehrmalig verwendet werden kann
|
||||
*
|
||||
* <p>Java-Klasse für ElementIdType complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ElementIdType">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="idValidUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
|
||||
* <element name="idIsSingleUse" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ElementIdType", propOrder = {
|
||||
"id",
|
||||
"idValidUntil",
|
||||
"idIsSingleUse"
|
||||
})
|
||||
public class ElementIdType {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String id;
|
||||
@XmlElement(required = true, nillable = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar idValidUntil;
|
||||
protected boolean idIsSingleUse;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der id-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der id-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setId(String value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der idValidUntil-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getIdValidUntil() {
|
||||
return idValidUntil;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der idValidUntil-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setIdValidUntil(XMLGregorianCalendar value) {
|
||||
this.idValidUntil = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der idIsSingleUse-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public boolean isIdIsSingleUse() {
|
||||
return idIsSingleUse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der idIsSingleUse-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setIdIsSingleUse(boolean value) {
|
||||
this.idIsSingleUse = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,18 +1,14 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ElementarproduktKfzType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Basistyp für ein Elementarprodukt
|
||||
|
||||
@@ -0,0 +1,120 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für Ersatzpolizzen
|
||||
*
|
||||
* <p>Java-Klasse für Ersatzpolizzen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Ersatzpolizzen_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Ersatzpolizzennummer1" type="{urn:omds20}Polizzennr"/>
|
||||
* <element name="Ersatzpolizzennummer2" type="{urn:omds20}Polizzennr" minOccurs="0"/>
|
||||
* <element name="Ersatzpolizzennummer3" type="{urn:omds20}Polizzennr" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Ersatzpolizzen_Type", propOrder = {
|
||||
"ersatzpolizzennummer1",
|
||||
"ersatzpolizzennummer2",
|
||||
"ersatzpolizzennummer3"
|
||||
})
|
||||
public class ErsatzpolizzenType {
|
||||
|
||||
@XmlElement(name = "Ersatzpolizzennummer1", required = true)
|
||||
protected String ersatzpolizzennummer1;
|
||||
@XmlElement(name = "Ersatzpolizzennummer2")
|
||||
protected String ersatzpolizzennummer2;
|
||||
@XmlElement(name = "Ersatzpolizzennummer3")
|
||||
protected String ersatzpolizzennummer3;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der ersatzpolizzennummer1-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getErsatzpolizzennummer1() {
|
||||
return ersatzpolizzennummer1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der ersatzpolizzennummer1-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setErsatzpolizzennummer1(String value) {
|
||||
this.ersatzpolizzennummer1 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der ersatzpolizzennummer2-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getErsatzpolizzennummer2() {
|
||||
return ersatzpolizzennummer2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der ersatzpolizzennummer2-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setErsatzpolizzennummer2(String value) {
|
||||
this.ersatzpolizzennummer2 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der ersatzpolizzennummer3-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getErsatzpolizzennummer3() {
|
||||
return ersatzpolizzennummer3;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der ersatzpolizzennummer3-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setErsatzpolizzennummer3(String value) {
|
||||
this.ersatzpolizzennummer3 = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,832 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds2Types.v2_11.Entsch2Type;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* Basisklasse für alle Fahrzeuge in der Kfz-Versicherung
|
||||
*
|
||||
* <p>Java-Klasse für Fahrzeug_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Fahrzeug_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
|
||||
* <sequence>
|
||||
* <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
|
||||
* <attribute name="Marke">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="40"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="Handelsbez">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="30"/>
|
||||
* <minLength value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="TypVarVer">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="20"/>
|
||||
* <minLength value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="Leasingkz" type="{urn:omds20}Entsch2_Type" />
|
||||
* <attribute name="Modelljahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* <attribute name="Leistung" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* <attribute name="Plaetze" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* <attribute name="Nutzlast">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
|
||||
* <totalDigits value="6"/>
|
||||
* <fractionDigits value="0"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="Hubraum" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* <attribute name="AntriebsArtCd" type="{urn:omds20}AntriebsArtCd_Type" />
|
||||
* <attribute name="CO2_Ausstoss" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* <attribute name="Fahrgestnr">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="20"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="Motornr">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="20"/>
|
||||
* <minLength value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="NatCode">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="1"/>
|
||||
* <maxLength value="26"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="VerwendzweckCd" type="{urn:omds20}VerwendzweckCd_Type" />
|
||||
* <attribute name="Erstzulassdat" type="{urn:omds20}Datum" />
|
||||
* <attribute name="LandesCd" type="{urn:omds20}LandesCd_Type" />
|
||||
* <attribute name="Pol_Kennz">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="12"/>
|
||||
* <minLength value="1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="Tueren" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* <attribute name="Baujahr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* <attribute name="Gesamtgewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* <attribute name="Listenpreis" type="{urn:omds20}decimal" />
|
||||
* <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
|
||||
* <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Fahrzeug_Type", propOrder = {
|
||||
"zulassungsdaten"
|
||||
})
|
||||
public class FahrzeugType
|
||||
extends VersichertesInteresseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Zulassungsdaten")
|
||||
protected ZulassungsdatenType zulassungsdaten;
|
||||
@XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String fzgArtCd;
|
||||
@XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String marke;
|
||||
@XmlAttribute(name = "Handelsbez", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String handelsbez;
|
||||
@XmlAttribute(name = "TypVarVer", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String typVarVer;
|
||||
@XmlAttribute(name = "Leasingkz", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected Entsch2Type leasingkz;
|
||||
@XmlAttribute(name = "Modelljahr", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer modelljahr;
|
||||
@XmlAttribute(name = "Leistung", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer leistung;
|
||||
@XmlAttribute(name = "Plaetze", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer plaetze;
|
||||
@XmlAttribute(name = "Nutzlast", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected BigDecimal nutzlast;
|
||||
@XmlAttribute(name = "Hubraum", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer hubraum;
|
||||
@XmlAttribute(name = "AntriebsArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String antriebsArtCd;
|
||||
@XmlAttribute(name = "CO2_Ausstoss", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer co2Ausstoss;
|
||||
@XmlAttribute(name = "Fahrgestnr", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String fahrgestnr;
|
||||
@XmlAttribute(name = "Motornr", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String motornr;
|
||||
@XmlAttribute(name = "NatCode", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String natCode;
|
||||
@XmlAttribute(name = "VerwendzweckCd", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String verwendzweckCd;
|
||||
@XmlAttribute(name = "Erstzulassdat", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected XMLGregorianCalendar erstzulassdat;
|
||||
@XmlAttribute(name = "LandesCd", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String landesCd;
|
||||
@XmlAttribute(name = "Pol_Kennz", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String polKennz;
|
||||
@XmlAttribute(name = "Tueren", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer tueren;
|
||||
@XmlAttribute(name = "Baujahr", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer baujahr;
|
||||
@XmlAttribute(name = "Gesamtgewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer gesamtgewicht;
|
||||
@XmlAttribute(name = "Listenpreis", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected BigDecimal listenpreis;
|
||||
@XmlAttribute(name = "Sonderausstattung", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected BigDecimal sonderausstattung;
|
||||
@XmlAttribute(name = "Eigengewicht", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer eigengewicht;
|
||||
@XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected XMLGregorianCalendar zulassdatHalter;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für GeschaeftsobjektArt_Type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="GeschaeftsobjektArt_Type">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="VTG"/>
|
||||
* <enumeration value="SC"/>
|
||||
* <enumeration value="AN"/>
|
||||
* <enumeration value="IB"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "GeschaeftsobjektArt_Type")
|
||||
@XmlEnum
|
||||
public enum GeschaeftsobjektArtType {
|
||||
|
||||
|
||||
/**
|
||||
* Vertrag
|
||||
*
|
||||
*/
|
||||
VTG,
|
||||
|
||||
/**
|
||||
* Schaden
|
||||
*
|
||||
*/
|
||||
SC,
|
||||
|
||||
/**
|
||||
* Antrag
|
||||
*
|
||||
*/
|
||||
AN,
|
||||
|
||||
/**
|
||||
* Interventionsbericht
|
||||
*
|
||||
*/
|
||||
IB;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static GeschaeftsobjektArtType fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,149 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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 java.math.BigInteger;
|
||||
|
||||
|
||||
/**
|
||||
* Sollen nicht automatisch die Kontierungsdaten aus dem hinterlegten Benutzer genommen werden, können hier abweichende Kontierungen angegeben werden.
|
||||
*
|
||||
* <p>Java-Klasse für Kontierung_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Kontierung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Vermittlernummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Abschluss" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||
* <element name="Folge" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||
* <element name="Betreuung" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Kontierung_Type", propOrder = {
|
||||
"vermittlernummer",
|
||||
"abschluss",
|
||||
"folge",
|
||||
"betreuung"
|
||||
})
|
||||
public class KontierungType {
|
||||
|
||||
@XmlElement(name = "Vermittlernummer", required = true)
|
||||
protected String vermittlernummer;
|
||||
@XmlElement(name = "Abschluss", required = true)
|
||||
protected BigInteger abschluss;
|
||||
@XmlElement(name = "Folge", required = true)
|
||||
protected BigInteger folge;
|
||||
@XmlElement(name = "Betreuung", required = true)
|
||||
protected BigInteger betreuung;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der vermittlernummer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVermittlernummer() {
|
||||
return vermittlernummer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der vermittlernummer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVermittlernummer(String value) {
|
||||
this.vermittlernummer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der abschluss-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getAbschluss() {
|
||||
return abschluss;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der abschluss-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setAbschluss(BigInteger value) {
|
||||
this.abschluss = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der folge-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getFolge() {
|
||||
return folge;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der folge-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setFolge(BigInteger value) {
|
||||
this.folge = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der betreuung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getBetreuung() {
|
||||
return betreuung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der betreuung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setBetreuung(BigInteger value) {
|
||||
this.betreuung = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* Dient zur Abbildung von Kosten als absoluter oder prozentualer Wert
|
||||
*
|
||||
* <p>Java-Klasse für KostenFixOderProzent_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="KostenFixOderProzent_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <choice>
|
||||
* <element name="AbsoluterBetrag" type="{urn:omds20}decimal"/>
|
||||
* <element name="ProzentVs" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* </choice>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "KostenFixOderProzent_Type", propOrder = {
|
||||
"absoluterBetrag",
|
||||
"prozentVs"
|
||||
})
|
||||
public class KostenFixOderProzentType {
|
||||
|
||||
@XmlElement(name = "AbsoluterBetrag")
|
||||
protected BigDecimal absoluterBetrag;
|
||||
@XmlElement(name = "ProzentVs")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long 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 Long }
|
||||
*
|
||||
*/
|
||||
public Long getProzentVs() {
|
||||
return prozentVs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der prozentVs-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setProzentVs(Long value) {
|
||||
this.prozentVs = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,189 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ Kreditkarte
|
||||
*
|
||||
* <p>Java-Klasse für Kreditkarte_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Kreditkarte_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="Gesellschaft" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Kartennummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Inhaber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Pruefziffer" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
|
||||
* <totalDigits value="3"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="AblaufMonat" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||
* <totalDigits value="2"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* <attribute name="AblaufJahr" use="required">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
||||
* <totalDigits value="2"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </attribute>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Kreditkarte_Type")
|
||||
public class KreditkarteType {
|
||||
|
||||
@XmlAttribute(name = "Gesellschaft", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected String gesellschaft;
|
||||
@XmlAttribute(name = "Kartennummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected String kartennummer;
|
||||
@XmlAttribute(name = "Inhaber", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected String inhaber;
|
||||
@XmlAttribute(name = "Pruefziffer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected long pruefziffer;
|
||||
@XmlAttribute(name = "AblaufMonat", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected short ablaufMonat;
|
||||
@XmlAttribute(name = "AblaufJahr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected short ablaufJahr;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der gesellschaft-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getGesellschaft() {
|
||||
return gesellschaft;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der gesellschaft-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setGesellschaft(String value) {
|
||||
this.gesellschaft = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der kartennummer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getKartennummer() {
|
||||
return kartennummer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kartennummer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setKartennummer(String value) {
|
||||
this.kartennummer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der inhaber-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getInhaber() {
|
||||
return inhaber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der inhaber-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setInhaber(String value) {
|
||||
this.inhaber = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der pruefziffer-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public long getPruefziffer() {
|
||||
return pruefziffer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der pruefziffer-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setPruefziffer(long value) {
|
||||
this.pruefziffer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der ablaufMonat-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public short getAblaufMonat() {
|
||||
return ablaufMonat;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der ablaufMonat-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setAblaufMonat(short value) {
|
||||
this.ablaufMonat = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der ablaufJahr-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public short getAblaufJahr() {
|
||||
return ablaufJahr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der ablaufJahr-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setAblaufJahr(short value) {
|
||||
this.ablaufJahr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* Type für Objektreferenzen
|
||||
*
|
||||
* <p>Java-Klasse für ObjektId_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ObjektId_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="255"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="GueltigAb" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}OrdnungsbegriffZuordFremd" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ObjektId_Type", propOrder = {
|
||||
"id",
|
||||
"gueltigAb",
|
||||
"ordnungsbegriffZuordFremd"
|
||||
})
|
||||
public class ObjektIdType {
|
||||
|
||||
@XmlElement(name = "Id")
|
||||
protected String id;
|
||||
@XmlElement(name = "GueltigAb")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar gueltigAb;
|
||||
@XmlElement(name = "OrdnungsbegriffZuordFremd")
|
||||
protected String ordnungsbegriffZuordFremd;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der id-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der id-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setId(String value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der gueltigAb-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getGueltigAb() {
|
||||
return gueltigAb;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der gueltigAb-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setGueltigAb(XMLGregorianCalendar value) {
|
||||
this.gueltigAb = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ein Ordnungsbegriff aus dem System des Aufrufers, also z.B. aus dem Maklerverwaltungsprogramm
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrdnungsbegriffZuordFremd() {
|
||||
return ordnungsbegriffZuordFremd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der ordnungsbegriffZuordFremd-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrdnungsbegriffZuordFremd(String value) {
|
||||
this.ordnungsbegriffZuordFremd = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,120 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Type Offene Schäden
|
||||
*
|
||||
* <p>Java-Klasse für OffeneSchaeden_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="OffeneSchaeden_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="OffenerSchaden1" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type"/>
|
||||
* <element name="OffenerSchaden2" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
|
||||
* <element name="OffenerSchaden3" type="{urn:omds3CommonServiceTypes-1-1-0}OffenerSchaden_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "OffeneSchaeden_Type", propOrder = {
|
||||
"offenerSchaden1",
|
||||
"offenerSchaden2",
|
||||
"offenerSchaden3"
|
||||
})
|
||||
public class OffeneSchaedenType {
|
||||
|
||||
@XmlElement(name = "OffenerSchaden1", required = true)
|
||||
protected OffenerSchadenType offenerSchaden1;
|
||||
@XmlElement(name = "OffenerSchaden2")
|
||||
protected OffenerSchadenType offenerSchaden2;
|
||||
@XmlElement(name = "OffenerSchaden3")
|
||||
protected OffenerSchadenType offenerSchaden3;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offenerSchaden1-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link OffenerSchadenType }
|
||||
*
|
||||
*/
|
||||
public OffenerSchadenType getOffenerSchaden1() {
|
||||
return offenerSchaden1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offenerSchaden1-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link OffenerSchadenType }
|
||||
*
|
||||
*/
|
||||
public void setOffenerSchaden1(OffenerSchadenType value) {
|
||||
this.offenerSchaden1 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offenerSchaden2-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link OffenerSchadenType }
|
||||
*
|
||||
*/
|
||||
public OffenerSchadenType getOffenerSchaden2() {
|
||||
return offenerSchaden2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offenerSchaden2-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link OffenerSchadenType }
|
||||
*
|
||||
*/
|
||||
public void setOffenerSchaden2(OffenerSchadenType value) {
|
||||
this.offenerSchaden2 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der offenerSchaden3-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link OffenerSchadenType }
|
||||
*
|
||||
*/
|
||||
public OffenerSchadenType getOffenerSchaden3() {
|
||||
return offenerSchaden3;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der offenerSchaden3-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link OffenerSchadenType }
|
||||
*
|
||||
*/
|
||||
public void setOffenerSchaden3(OffenerSchadenType value) {
|
||||
this.offenerSchaden3 = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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 java.math.BigInteger;
|
||||
|
||||
|
||||
/**
|
||||
* Type einzelner offener Schaden
|
||||
*
|
||||
* <p>Java-Klasse für OffenerSchaden_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="OffenerSchaden_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Monat" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||
* <element name="Jahr" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "OffenerSchaden_Type", propOrder = {
|
||||
"monat",
|
||||
"jahr"
|
||||
})
|
||||
public class OffenerSchadenType {
|
||||
|
||||
@XmlElement(name = "Monat", required = true)
|
||||
protected BigInteger monat;
|
||||
@XmlElement(name = "Jahr", required = true)
|
||||
protected BigInteger jahr;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der monat-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getMonat() {
|
||||
return monat;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der monat-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setMonat(BigInteger value) {
|
||||
this.monat = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der jahr-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getJahr() {
|
||||
return jahr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der jahr-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setJahr(BigInteger value) {
|
||||
this.jahr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für PartnerRoleType.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="PartnerRoleType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <length value="2"/>
|
||||
* <enumeration value="VN"/>
|
||||
* <enumeration value="VP"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "PartnerRoleType")
|
||||
@XmlEnum
|
||||
public enum PartnerRoleType {
|
||||
|
||||
|
||||
/**
|
||||
* Versicherungsnehmer
|
||||
*
|
||||
*/
|
||||
VN,
|
||||
|
||||
/**
|
||||
* Versicherte Person
|
||||
*
|
||||
*/
|
||||
VP;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static PartnerRoleType fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,409 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds2Types.v2_11.*;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Der Typ für eine Person mit ObjektId
|
||||
*
|
||||
* <p>Java-Klasse für Person_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Person_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
|
||||
* <choice>
|
||||
* <element ref="{urn:omds20}NATUERLICHE_PERSON"/>
|
||||
* <element ref="{urn:omds20}SONSTIGE_PERSON"/>
|
||||
* </choice>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Adresse" minOccurs="0"/>
|
||||
* <element ref="{urn:omds20}EL-Kommunikation" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element ref="{urn:omds20}EL-Legitimation" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element ref="{urn:omds20}EL-Anzahl" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element ref="{urn:omds20}EL-Einstufung" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element ref="{urn:omds20}EL-Entscheidungsfrage" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element ref="{urn:omds20}EL-Identifizierung" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element ref="{urn:omds20}EL-Text" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="PersArtCd" use="required" type="{urn:omds20}PersArtCd_Type" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Person_Type", propOrder = {
|
||||
"objektId",
|
||||
"natuerlicheperson",
|
||||
"sonstigeperson",
|
||||
"adresse",
|
||||
"elKommunikation",
|
||||
"elLegitimation",
|
||||
"elAnzahl",
|
||||
"elEinstufung",
|
||||
"elEntscheidungsfrage",
|
||||
"elIdentifizierung",
|
||||
"elText"
|
||||
})
|
||||
public class PersonType {
|
||||
|
||||
@XmlElement(name = "ObjektId")
|
||||
protected ObjektIdType objektId;
|
||||
@XmlElement(name = "NATUERLICHE_PERSON", namespace = "urn:omds20")
|
||||
protected NATUERLICHEPERSONType natuerlicheperson;
|
||||
@XmlElement(name = "SONSTIGE_PERSON", namespace = "urn:omds20")
|
||||
protected SONSTIGEPERSONType sonstigeperson;
|
||||
@XmlElement(name = "Adresse")
|
||||
protected AdresseType adresse;
|
||||
@XmlElement(name = "EL-Kommunikation", namespace = "urn:omds20")
|
||||
protected List<ELKommunikationType> elKommunikation;
|
||||
@XmlElement(name = "EL-Legitimation", namespace = "urn:omds20")
|
||||
protected List<ELLegitimationType> elLegitimation;
|
||||
@XmlElement(name = "EL-Anzahl", namespace = "urn:omds20")
|
||||
protected List<ELAnzahlType> elAnzahl;
|
||||
@XmlElement(name = "EL-Einstufung", namespace = "urn:omds20")
|
||||
protected List<ELEinstufungType> elEinstufung;
|
||||
@XmlElement(name = "EL-Entscheidungsfrage", namespace = "urn:omds20")
|
||||
protected List<ELEntscheidungsfrageType> elEntscheidungsfrage;
|
||||
@XmlElement(name = "EL-Identifizierung", namespace = "urn:omds20")
|
||||
protected List<ELIdentifizierungType> elIdentifizierung;
|
||||
@XmlElement(name = "EL-Text", namespace = "urn:omds20")
|
||||
protected List<ELTextType> elText;
|
||||
@XmlAttribute(name = "PersArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected PersArtCdType persArtCd;
|
||||
|
||||
/**
|
||||
* Die Id der Person (entspricht der Personennr, hat aber auch die Möglichkeit eine ID von Service-Consumer Seite mitzugeben)
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public ObjektIdType getObjektId() {
|
||||
return objektId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der objektId-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public void setObjektId(ObjektIdType value) {
|
||||
this.objektId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der natuerlicheperson-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link NATUERLICHEPERSONType }
|
||||
*
|
||||
*/
|
||||
public NATUERLICHEPERSONType getNATUERLICHEPERSON() {
|
||||
return natuerlicheperson;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der natuerlicheperson-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link NATUERLICHEPERSONType }
|
||||
*
|
||||
*/
|
||||
public void setNATUERLICHEPERSON(NATUERLICHEPERSONType value) {
|
||||
this.natuerlicheperson = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der sonstigeperson-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SONSTIGEPERSONType }
|
||||
*
|
||||
*/
|
||||
public SONSTIGEPERSONType getSONSTIGEPERSON() {
|
||||
return sonstigeperson;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der sonstigeperson-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SONSTIGEPERSONType }
|
||||
*
|
||||
*/
|
||||
public void setSONSTIGEPERSON(SONSTIGEPERSONType value) {
|
||||
this.sonstigeperson = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Die Hauptadresse des Partners mit ObjektId
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AdresseType }
|
||||
*
|
||||
*/
|
||||
public AdresseType getAdresse() {
|
||||
return adresse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der adresse-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AdresseType }
|
||||
*
|
||||
*/
|
||||
public void setAdresse(AdresseType value) {
|
||||
this.adresse = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the elKommunikation property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the elKommunikation property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getELKommunikation().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ELKommunikationType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ELKommunikationType> getELKommunikation() {
|
||||
if (elKommunikation == null) {
|
||||
elKommunikation = new ArrayList<ELKommunikationType>();
|
||||
}
|
||||
return this.elKommunikation;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the elLegitimation property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the elLegitimation property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getELLegitimation().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ELLegitimationType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ELLegitimationType> getELLegitimation() {
|
||||
if (elLegitimation == null) {
|
||||
elLegitimation = new ArrayList<ELLegitimationType>();
|
||||
}
|
||||
return this.elLegitimation;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the elAnzahl property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the elAnzahl property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getELAnzahl().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ELAnzahlType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ELAnzahlType> getELAnzahl() {
|
||||
if (elAnzahl == null) {
|
||||
elAnzahl = new ArrayList<ELAnzahlType>();
|
||||
}
|
||||
return this.elAnzahl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the elEinstufung property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the elEinstufung property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getELEinstufung().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ELEinstufungType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ELEinstufungType> getELEinstufung() {
|
||||
if (elEinstufung == null) {
|
||||
elEinstufung = new ArrayList<ELEinstufungType>();
|
||||
}
|
||||
return this.elEinstufung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the elEntscheidungsfrage property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the elEntscheidungsfrage property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getELEntscheidungsfrage().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ELEntscheidungsfrageType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ELEntscheidungsfrageType> getELEntscheidungsfrage() {
|
||||
if (elEntscheidungsfrage == null) {
|
||||
elEntscheidungsfrage = new ArrayList<ELEntscheidungsfrageType>();
|
||||
}
|
||||
return this.elEntscheidungsfrage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the elIdentifizierung property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the elIdentifizierung property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getELIdentifizierung().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ELIdentifizierungType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ELIdentifizierungType> getELIdentifizierung() {
|
||||
if (elIdentifizierung == null) {
|
||||
elIdentifizierung = new ArrayList<ELIdentifizierungType>();
|
||||
}
|
||||
return this.elIdentifizierung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the elText property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the elText property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getELText().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ELTextType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ELTextType> getELText() {
|
||||
if (elText == null) {
|
||||
elText = new ArrayList<ELTextType>();
|
||||
}
|
||||
return this.elText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der persArtCd-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PersArtCdType }
|
||||
*
|
||||
*/
|
||||
public PersArtCdType getPersArtCd() {
|
||||
return persArtCd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der persArtCd-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PersArtCdType }
|
||||
*
|
||||
*/
|
||||
public void setPersArtCd(PersArtCdType value) {
|
||||
this.persArtCd = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,131 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.PolicyPartnerRole;
|
||||
|
||||
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 java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Die Spezifikation eines Polizzenobjektes
|
||||
*
|
||||
* <p>Java-Klasse für PolizzenObjektSpezifikation_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="PolizzenObjektSpezifikation_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
|
||||
* <sequence>
|
||||
* <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
|
||||
* <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
|
||||
* <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "PolizzenObjektSpezifikation_Type", propOrder = {
|
||||
"polizzennr",
|
||||
"vtgProdCd",
|
||||
"rollePartner"
|
||||
})
|
||||
public class PolizzenObjektSpezifikationType
|
||||
extends ObjektSpezifikationType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Polizzennr", required = true)
|
||||
protected String polizzennr;
|
||||
@XmlElement(name = "VtgProdCd")
|
||||
protected String vtgProdCd;
|
||||
@XmlElement(name = "RollePartner")
|
||||
protected List<PolicyPartnerRole> rollePartner;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der polizzennr-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPolizzennr() {
|
||||
return polizzennr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der polizzennr-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPolizzennr(String value) {
|
||||
this.polizzennr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der vtgProdCd-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVtgProdCd() {
|
||||
return vtgProdCd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der vtgProdCd-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVtgProdCd(String value) {
|
||||
this.vtgProdCd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the rollePartner property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the rollePartner property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRollePartner().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link PolicyPartnerRole }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<PolicyPartnerRole> getRollePartner() {
|
||||
if (rollePartner == null) {
|
||||
rollePartner = new ArrayList<PolicyPartnerRole>();
|
||||
}
|
||||
return this.rollePartner;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlEnumValue;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für PolizzenversandType.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="PolizzenversandType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="MAK2"/>
|
||||
* <enumeration value="VN1"/>
|
||||
* <enumeration value="MAKVN"/>
|
||||
* <enumeration value="MAK1"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "PolizzenversandType")
|
||||
@XmlEnum
|
||||
public enum PolizzenversandType {
|
||||
|
||||
|
||||
/**
|
||||
* 2fach Makler: Ist nur bei Postversand möglich. Makler erhält Original und Kopie
|
||||
*
|
||||
*/
|
||||
@XmlEnumValue("MAK2")
|
||||
MAK_2("MAK2"),
|
||||
|
||||
/**
|
||||
* 1fach Versicherungsnehmer: Kunde erhält Original
|
||||
*
|
||||
*/
|
||||
@XmlEnumValue("VN1")
|
||||
VN_1("VN1"),
|
||||
|
||||
/**
|
||||
* 1fach Makler und 1fach Versicherungsnehmer: Kunde erhält Original und Makler die Kopie
|
||||
*
|
||||
*/
|
||||
MAKVN("MAKVN"),
|
||||
|
||||
/**
|
||||
* 1fach Makler: Makler erhält Original
|
||||
*
|
||||
*/
|
||||
@XmlEnumValue("MAK1")
|
||||
MAK_1("MAK1");
|
||||
private final String value;
|
||||
|
||||
PolizzenversandType(String v) {
|
||||
value = v;
|
||||
}
|
||||
|
||||
public String value() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public static PolizzenversandType fromValue(String v) {
|
||||
for (PolizzenversandType c: PolizzenversandType.values()) {
|
||||
if (c.value.equals(v)) {
|
||||
return c;
|
||||
}
|
||||
}
|
||||
throw new IllegalArgumentException(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,268 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds2Types.v2_11.WaehrungsCdType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Darstellung einer Praemie
|
||||
*
|
||||
* <p>Java-Klasse für Praemie_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Praemie_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
|
||||
* <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type"/>
|
||||
* <element name="PraemieNto" type="{urn:omds20}decimal"/>
|
||||
* <element name="PraemieBto" type="{urn:omds20}decimal"/>
|
||||
* <element name="Versicherungssteuer" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungssteuer_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="WaehrungsCd" type="{urn:omds20}WaehrungsCd_Type" minOccurs="0"/>
|
||||
* <element name="Unterjaehrigkeitszuschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||
* <element name="Abschlag" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Praemie_Type", propOrder = {
|
||||
"zahlrhythmus",
|
||||
"zahlweg",
|
||||
"praemieNto",
|
||||
"praemieBto",
|
||||
"versicherungssteuer",
|
||||
"waehrungsCd",
|
||||
"unterjaehrigkeitszuschlag",
|
||||
"abschlag"
|
||||
})
|
||||
public class PraemieType {
|
||||
|
||||
@XmlElement(name = "Zahlrhythmus", required = true)
|
||||
protected String zahlrhythmus;
|
||||
@XmlElement(name = "Zahlweg", required = true)
|
||||
protected String zahlweg;
|
||||
@XmlElement(name = "PraemieNto", required = true)
|
||||
protected BigDecimal praemieNto;
|
||||
@XmlElement(name = "PraemieBto", required = true)
|
||||
protected BigDecimal praemieBto;
|
||||
@XmlElement(name = "Versicherungssteuer")
|
||||
protected List<VersicherungssteuerType> versicherungssteuer;
|
||||
@XmlElement(name = "WaehrungsCd")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected WaehrungsCdType waehrungsCd;
|
||||
@XmlElement(name = "Unterjaehrigkeitszuschlag")
|
||||
protected Double unterjaehrigkeitszuschlag;
|
||||
@XmlElement(name = "Abschlag")
|
||||
protected Double abschlag;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zahlrhythmus-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZahlrhythmus() {
|
||||
return zahlrhythmus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zahlrhythmus-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZahlrhythmus(String value) {
|
||||
this.zahlrhythmus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zahlweg-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZahlweg() {
|
||||
return zahlweg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zahlweg-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZahlweg(String value) {
|
||||
this.zahlweg = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der praemieNto-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getPraemieNto() {
|
||||
return praemieNto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der praemieNto-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setPraemieNto(BigDecimal value) {
|
||||
this.praemieNto = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der praemieBto-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getPraemieBto() {
|
||||
return praemieBto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der praemieBto-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setPraemieBto(BigDecimal value) {
|
||||
this.praemieBto = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the versicherungssteuer property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the versicherungssteuer property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getVersicherungssteuer().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link VersicherungssteuerType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<VersicherungssteuerType> getVersicherungssteuer() {
|
||||
if (versicherungssteuer == null) {
|
||||
versicherungssteuer = new ArrayList<VersicherungssteuerType>();
|
||||
}
|
||||
return this.versicherungssteuer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der waehrungsCd-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link WaehrungsCdType }
|
||||
*
|
||||
*/
|
||||
public WaehrungsCdType getWaehrungsCd() {
|
||||
return waehrungsCd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der waehrungsCd-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link WaehrungsCdType }
|
||||
*
|
||||
*/
|
||||
public void setWaehrungsCd(WaehrungsCdType value) {
|
||||
this.waehrungsCd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der unterjaehrigkeitszuschlag-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public Double getUnterjaehrigkeitszuschlag() {
|
||||
return unterjaehrigkeitszuschlag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der unterjaehrigkeitszuschlag-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public void setUnterjaehrigkeitszuschlag(Double value) {
|
||||
this.unterjaehrigkeitszuschlag = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der abschlag-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public Double getAbschlag() {
|
||||
return abschlag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der abschlag-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Double }
|
||||
*
|
||||
*/
|
||||
public void setAbschlag(Double value) {
|
||||
this.abschlag = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,18 +1,14 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ProduktKfzType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ZusatzproduktKfzType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Basistyp für ein Produkt
|
||||
|
||||
@@ -1,16 +1,11 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -0,0 +1,125 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Statusinformationen im Response eines Serviceaufrufs
|
||||
*
|
||||
* <p>Java-Klasse für ResponseStatus_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ResponseStatus_Type", propOrder = {
|
||||
"korrelationsId",
|
||||
"ergebnis",
|
||||
"meldungen"
|
||||
})
|
||||
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<ServiceFault> meldungen;
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the meldungen property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getMeldungen().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ServiceFault }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ServiceFault> getMeldungen() {
|
||||
if (meldungen == null) {
|
||||
meldungen = new ArrayList<ServiceFault>();
|
||||
}
|
||||
return this.meldungen;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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
|
||||
*
|
||||
* <p>Java-Klasse für SchadenObjektSpezifikation_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SchadenObjektSpezifikation_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type">
|
||||
* <choice>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Geschaeftsfallnummer"/>
|
||||
* <element name="Schadennr" type="{urn:omds20}Schadennr"/>
|
||||
* </choice>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
|
||||
/**
|
||||
* Eine Geschaeftsfallnummer
|
||||
*
|
||||
* @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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,147 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* Dient zur Abbildung eines Selbstbehalts
|
||||
*
|
||||
* <p>Java-Klasse für Selbstbehalt_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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}unsignedInt" minOccurs="0"/>
|
||||
* <element name="SelbstbehaltMinBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||
* <element name="SelbstbehaltMaxBetrag" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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 = "unsignedInt")
|
||||
protected Long 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 Long }
|
||||
*
|
||||
*/
|
||||
public Long getSelbstbehaltProzentVs() {
|
||||
return selbstbehaltProzentVs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der selbstbehaltProzentVs-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setSelbstbehaltProzentVs(Long 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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,156 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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 java.math.BigInteger;
|
||||
|
||||
|
||||
/**
|
||||
* Enthält eventuelle Fehlermeldungen + Fehlercode + Fehlertyp.
|
||||
*
|
||||
* <p>Java-Klasse für ServiceFault complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für Status_Type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="Status_Type">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <length value="4"/>
|
||||
* <enumeration value="OK"/>
|
||||
* <enumeration value="OKNA"/>
|
||||
* <enumeration value="NOK"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "Status_Type")
|
||||
@XmlEnum
|
||||
public enum StatusType {
|
||||
|
||||
|
||||
/**
|
||||
* Request konnte verarbeitet werden
|
||||
*
|
||||
*/
|
||||
OK,
|
||||
|
||||
/**
|
||||
* Request konnte nicht abschließend verarbeitet werden. Zum Beispiel wurde der Request in einen Workflow eingestellt aber noch nicht auf den Bestand angewendet.
|
||||
*
|
||||
*/
|
||||
OKNA,
|
||||
|
||||
/**
|
||||
* Ein Fehler ist aufgetreten, Request konnte nicht verarbeitet werden
|
||||
*
|
||||
*/
|
||||
NOK;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static StatusType fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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
|
||||
*
|
||||
* <p>Java-Klasse für TechnicalKeyValue_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,139 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.activation.DataHandler;
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Typ fuer den Upload von Dokumenten mit base64 encodiertem Dokument, Mimetype und Filename
|
||||
*
|
||||
* <p>Java-Klasse für Upload_Dokument_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlEnumValue;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für Variante_Type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="Variante_Type">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="Premiumschutz"/>
|
||||
* <enumeration value="Classicschutz"/>
|
||||
* <enumeration value="Basisschutz"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "Variante_Type")
|
||||
@XmlEnum
|
||||
public enum VarianteType {
|
||||
|
||||
@XmlEnumValue("Premiumschutz")
|
||||
PREMIUMSCHUTZ("Premiumschutz"),
|
||||
@XmlEnumValue("Classicschutz")
|
||||
CLASSICSCHUTZ("Classicschutz"),
|
||||
@XmlEnumValue("Basisschutz")
|
||||
BASISSCHUTZ("Basisschutz");
|
||||
private final String value;
|
||||
|
||||
VarianteType(String v) {
|
||||
value = v;
|
||||
}
|
||||
|
||||
public String value() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public static VarianteType fromValue(String v) {
|
||||
for (VarianteType c: VarianteType.values()) {
|
||||
if (c.value.equals(v)) {
|
||||
return c;
|
||||
}
|
||||
}
|
||||
throw new IllegalArgumentException(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,18 +1,14 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
import at.vvo.omds.types.omds2Types.v2_11.ELRahmenvereinbarungType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VerkaufsproduktKfzType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Basistyp für ein Produktbündel
|
||||
|
||||
@@ -1,12 +1,7 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -0,0 +1,119 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
|
||||
/**
|
||||
* Stellt die Versicherungsteuer einer Prämie dar
|
||||
*
|
||||
* <p>Java-Klasse für Versicherungssteuer_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Versicherungssteuer_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Versicherungssteuer" type="{urn:omds20}decimal"/>
|
||||
* <element name="VersicherungssteuerArt" type="{urn:omds3CommonServiceTypes-1-1-0}VersicherungssteuerArt_Type"/>
|
||||
* <element name="VersicherungssteuerSatz" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Versicherungssteuer_Type", propOrder = {
|
||||
"versicherungssteuer",
|
||||
"versicherungssteuerArt",
|
||||
"versicherungssteuerSatz"
|
||||
})
|
||||
public class VersicherungssteuerType {
|
||||
|
||||
@XmlElement(name = "Versicherungssteuer", required = true)
|
||||
protected BigDecimal versicherungssteuer;
|
||||
@XmlElement(name = "VersicherungssteuerArt", required = true)
|
||||
@XmlSchemaType(name = "anySimpleType")
|
||||
protected String versicherungssteuerArt;
|
||||
@XmlElement(name = "VersicherungssteuerSatz")
|
||||
protected BigDecimal versicherungssteuerSatz;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versicherungssteuer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getVersicherungssteuer() {
|
||||
return versicherungssteuer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versicherungssteuer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setVersicherungssteuer(BigDecimal value) {
|
||||
this.versicherungssteuer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versicherungssteuerArt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVersicherungssteuerArt() {
|
||||
return versicherungssteuerArt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versicherungssteuerArt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVersicherungssteuerArt(String value) {
|
||||
this.versicherungssteuerArt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versicherungssteuerSatz-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getVersicherungssteuerSatz() {
|
||||
return versicherungssteuerSatz;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versicherungssteuerSatz-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setVersicherungssteuerSatz(BigDecimal value) {
|
||||
this.versicherungssteuerSatz = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds2Types.v2_11.VtgRolleCdType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Definiert Vertragspersonen als Referenz auf eine Person plus Vertragsrolle
|
||||
*
|
||||
* <p>Java-Klasse für Vertragsperson_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Vertragsperson_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="LfdNr" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="Rolle" type="{urn:omds20}VtgRolleCd_Type"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,176 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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
|
||||
*
|
||||
* <p>Java-Klasse für Vinkularglaeubiger_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds2Types.v2_11.PERSONType;
|
||||
|
||||
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 Vinkulierung
|
||||
*
|
||||
* <p>Java-Klasse für Vinkulierung_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Vinkulierung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds20}PERSON"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,13 +1,9 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VorversicherungenKfzType;
|
||||
|
||||
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_4_0.on2antrag.kfz.VorversicherungenKfzType;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -0,0 +1,148 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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;
|
||||
|
||||
|
||||
/**
|
||||
* Beschreibt die Zahlungsdaten
|
||||
*
|
||||
* <p>Java-Klasse für Zahlungsdaten_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Zahlungsdaten_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Zahlungsart" type="{urn:omds20}ZahlWegCd_Type"/>
|
||||
* <element name="Kontonummer" 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="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Zahlungsdaten_Type", propOrder = {
|
||||
"zahlungsart",
|
||||
"kontonummer",
|
||||
"bic",
|
||||
"beschreibung"
|
||||
})
|
||||
public class ZahlungsdatenType {
|
||||
|
||||
@XmlElement(name = "Zahlungsart", required = true)
|
||||
protected String zahlungsart;
|
||||
@XmlElement(name = "Kontonummer")
|
||||
protected String kontonummer;
|
||||
@XmlElement(name = "BIC")
|
||||
protected String bic;
|
||||
@XmlElement(name = "Beschreibung")
|
||||
protected String beschreibung;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zahlungsart-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZahlungsart() {
|
||||
return zahlungsart;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zahlungsart-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZahlungsart(String value) {
|
||||
this.zahlungsart = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der kontonummer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getKontonummer() {
|
||||
return kontonummer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kontonummer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setKontonummer(String value) {
|
||||
this.kontonummer = 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 beschreibung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBeschreibung() {
|
||||
return beschreibung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der beschreibung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBeschreibung(String value) {
|
||||
this.beschreibung = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,204 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Typ Zahlweg
|
||||
*
|
||||
* <p>Java-Klasse für Zahlweg_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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 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 Kundenkonto }
|
||||
*
|
||||
*/
|
||||
public Kundenkonto getKundenkonto() {
|
||||
return kundenkonto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kundenkonto-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Kundenkonto }
|
||||
*
|
||||
*/
|
||||
public void setKundenkonto(Kundenkonto value) {
|
||||
this.kundenkonto = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der kreditkarte-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link KreditkarteType }
|
||||
*
|
||||
*/
|
||||
public KreditkarteType getKreditkarte() {
|
||||
return kreditkarte;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kreditkarte-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link KreditkarteType }
|
||||
*
|
||||
*/
|
||||
public void setKreditkarte(KreditkarteType value) {
|
||||
this.kreditkarte = value;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="Kundenkontonummer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "")
|
||||
public static class Kundenkonto {
|
||||
|
||||
@XmlAttribute(name = "Kundenkontonummer", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected String kundenkontonummer;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der kundenkontonummer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getKundenkontonummer() {
|
||||
return kundenkontonummer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kundenkontonummer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setKundenkontonummer(String value) {
|
||||
this.kundenkontonummer = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für Zeitraum_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,120 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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
|
||||
*
|
||||
* <p>Java-Klasse für Zulassungsdaten_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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
|
||||
*
|
||||
* <p>Java-Klasse für ZusaetzlicheElementarproduktdaten_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ZusaetzlicheElementarproduktdaten_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ZusaetzlicheElementarproduktdaten_Type")
|
||||
public abstract class ZusaetzlicheElementarproduktdatenType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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
|
||||
*
|
||||
* <p>Java-Klasse für ZusaetzlicheProduktdaten_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ZusaetzlicheProduktdaten_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ZusaetzlicheProduktdaten_Type")
|
||||
public abstract class ZusaetzlicheProduktdatenType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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
|
||||
*
|
||||
* <p>Java-Klasse für ZusaetzlicheVerkaufproduktdaten_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ZusaetzlicheVerkaufproduktdaten_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ZusaetzlicheVerkaufproduktdaten_Type")
|
||||
public abstract class ZusaetzlicheVerkaufproduktdatenType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
@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_4_0.common;
|
||||
@@ -0,0 +1,36 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstraktes Event einer Statusänderung
|
||||
*
|
||||
* <p>Java-Klasse für AbstractStateChangeEvent_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AbstractStateChangeEvent_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AbstractStateChangeEvent_Type")
|
||||
@XmlSeeAlso({
|
||||
StateChangeEventType.class
|
||||
})
|
||||
public abstract class AbstractStateChangeEventType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
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 Status eines Geschaeftsfalls
|
||||
*
|
||||
* <p>Java-Klasse für AbstractStatusGeschaeftsfall_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AbstractStatusGeschaeftsfall_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AbstractStatusGeschaeftsfall_Type")
|
||||
@XmlSeeAlso({
|
||||
StatusAntragsGeschaeftsfall.class
|
||||
})
|
||||
public abstract class AbstractStatusGeschaeftsfallType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.UploadDokumentType;
|
||||
|
||||
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 des Requestobjekts, um Dokument zu Geschäftsfall hinzuzufügen
|
||||
*
|
||||
* <p>Java-Klasse für AddDocToBusinessCaseRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentenReferenzType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Response von der VU, wenn ein zusätzliches Dokument übergeben wurde
|
||||
*
|
||||
* <p>Java-Klasse für AddDocToBusinessCaseResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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<Object> docRefOrServiceFault;
|
||||
|
||||
/**
|
||||
* Gets the value of the docRefOrServiceFault property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the docRefOrServiceFault property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDocRefOrServiceFault().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DokumentenReferenzType }
|
||||
* {@link ServiceFault }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<Object> getDocRefOrServiceFault() {
|
||||
if (docRefOrServiceFault == null) {
|
||||
docRefOrServiceFault = new ArrayList<Object>();
|
||||
}
|
||||
return this.docRefOrServiceFault;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Ein abstrakter Typ, dessen konkrete Implementierungen unterschiedliche Credentials aufnehmen können.
|
||||
*
|
||||
* <p>Java-Klasse für Credentials_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Credentials_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Credentials_Type")
|
||||
public abstract class CredentialsType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,184 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter;
|
||||
|
||||
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 den DeclareEndpointRequest
|
||||
*
|
||||
* <p>Java-Klasse für DeclareEndpointRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DeclareEndpointRequest_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="VUNr" type="{urn:omds20}VUNr"/>
|
||||
* <element name="BasisUrlEndpoint">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="1000"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element ref="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}ArtAuthentifizierung"/>
|
||||
* <element name="Credentials" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}Credentials_Type"/>
|
||||
* <element name="AuthorizationFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DeclareEndpointRequest_Type", propOrder = {
|
||||
"vuNr",
|
||||
"basisUrlEndpoint",
|
||||
"artAuthentifizierung",
|
||||
"credentials",
|
||||
"authorizationFilter"
|
||||
})
|
||||
public class DeclareEndpointRequestType {
|
||||
|
||||
@XmlElement(name = "VUNr", required = true)
|
||||
protected String vuNr;
|
||||
@XmlElement(name = "BasisUrlEndpoint", required = true)
|
||||
protected String basisUrlEndpoint;
|
||||
@XmlElement(name = "ArtAuthentifizierung", required = true)
|
||||
protected String artAuthentifizierung;
|
||||
@XmlElement(name = "Credentials", required = true)
|
||||
protected CredentialsType credentials;
|
||||
@XmlElement(name = "AuthorizationFilter")
|
||||
protected AuthorizationFilter authorizationFilter;
|
||||
|
||||
/**
|
||||
* 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 basisUrlEndpoint-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBasisUrlEndpoint() {
|
||||
return basisUrlEndpoint;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der basisUrlEndpoint-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBasisUrlEndpoint(String value) {
|
||||
this.basisUrlEndpoint = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der artAuthentifizierung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getArtAuthentifizierung() {
|
||||
return artAuthentifizierung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der artAuthentifizierung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setArtAuthentifizierung(String value) {
|
||||
this.artAuthentifizierung = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der credentials-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CredentialsType }
|
||||
*
|
||||
*/
|
||||
public CredentialsType getCredentials() {
|
||||
return credentials;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der credentials-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CredentialsType }
|
||||
*
|
||||
*/
|
||||
public void setCredentials(CredentialsType value) {
|
||||
this.credentials = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der authorizationFilter-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AuthorizationFilter }
|
||||
*
|
||||
*/
|
||||
public AuthorizationFilter getAuthorizationFilter() {
|
||||
return authorizationFilter;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der authorizationFilter-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AuthorizationFilter }
|
||||
*
|
||||
*/
|
||||
public void setAuthorizationFilter(AuthorizationFilter value) {
|
||||
this.authorizationFilter = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault;
|
||||
|
||||
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 um als Makler der VU einen Endpoint bekannt zu geben
|
||||
*
|
||||
* <p>Java-Klasse für DeclareEndpointResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DeclareEndpointResponse_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="RegistrierteBasisUrlMaklerEndpoint" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="1000"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="ServiceFault" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DeclareEndpointResponse_Type", propOrder = {
|
||||
"registrierteBasisUrlMaklerEndpoint",
|
||||
"serviceFault"
|
||||
})
|
||||
public class DeclareEndpointResponseType {
|
||||
|
||||
@XmlElement(name = "RegistrierteBasisUrlMaklerEndpoint")
|
||||
protected String registrierteBasisUrlMaklerEndpoint;
|
||||
@XmlElement(name = "ServiceFault")
|
||||
protected ServiceFault serviceFault;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRegistrierteBasisUrlMaklerEndpoint() {
|
||||
return registrierteBasisUrlMaklerEndpoint;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der registrierteBasisUrlMaklerEndpoint-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRegistrierteBasisUrlMaklerEndpoint(String value) {
|
||||
this.registrierteBasisUrlMaklerEndpoint = 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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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 java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Typ fuer die Bekanntgabe von Statusänderungen
|
||||
*
|
||||
* <p>Java-Klasse für DeclareStateChangesRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DeclareStateChangesRequest_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="StateChange" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DeclareStateChangesRequest_Type", propOrder = {
|
||||
"stateChange"
|
||||
})
|
||||
public class DeclareStateChangesRequestType {
|
||||
|
||||
@XmlElement(name = "StateChange", required = true)
|
||||
protected List<AbstractStateChangeEventType> stateChange;
|
||||
|
||||
/**
|
||||
* Gets the value of the stateChange property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the stateChange property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getStateChange().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AbstractStateChangeEventType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AbstractStateChangeEventType> getStateChange() {
|
||||
if (stateChange == null) {
|
||||
stateChange = new ArrayList<AbstractStateChangeEventType>();
|
||||
}
|
||||
return this.stateChange;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ fuer die Annahme von Statusänderungen
|
||||
*
|
||||
* <p>Java-Klasse für DeclareStateChangesResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DeclareStateChangesResponse_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DeclareStateChangesResponse_Type")
|
||||
public class DeclareStateChangesResponseType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,160 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentenReferenzType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ZeitraumType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für DocumentInfosResponseResult_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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<DokumentenReferenzType> 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.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the dokumentInfos property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDokumentInfos().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DokumentenReferenzType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DokumentenReferenzType> getDokumentInfos() {
|
||||
if (dokumentInfos == null) {
|
||||
dokumentInfos = new ArrayList<DokumentenReferenzType>();
|
||||
}
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,269 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektSpezifikationType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ZeitraumType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Typ mit Elementen fuer die Anfrage nach Dokumenten zu einem fachlichen Objekt
|
||||
*
|
||||
* <p>Java-Klasse für GetDocumentsOfObjectRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault;
|
||||
|
||||
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 java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Typ mit Informationen zu den Dokumenten eines fachlichen Objekts.
|
||||
*
|
||||
* <p>Java-Klasse für GetDocumentsOfObjectResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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> 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.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the serviceFault property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getServiceFault().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ServiceFault }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ServiceFault> getServiceFault() {
|
||||
if (serviceFault == null) {
|
||||
serviceFault = new ArrayList<ServiceFault>();
|
||||
}
|
||||
return this.serviceFault;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,269 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektSpezifikationType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ZeitraumType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Typ mit Elementen fuer die Anfrage nach Dokumenten eines Zeitraums
|
||||
*
|
||||
* <p>Java-Klasse für GetDocumentsOfPeriodRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault;
|
||||
|
||||
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 java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Typ mit Informationen zu den Dokumenten eines Zeitraums
|
||||
*
|
||||
* <p>Java-Klasse für GetDocumentsOfPeriodResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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> 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.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the serviceFault property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getServiceFault().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ServiceFault }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ServiceFault> getServiceFault() {
|
||||
if (serviceFault == null) {
|
||||
serviceFault = new ArrayList<ServiceFault>();
|
||||
}
|
||||
return this.serviceFault;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,180 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektSpezifikationType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ZeitraumType;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Dieser Typ enthält die Elemente fuer die Anfrage nach Dokumenten
|
||||
*
|
||||
* <p>Java-Klasse für GetNumberOfDocumentsRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.math.BigInteger;
|
||||
|
||||
|
||||
/**
|
||||
* Typ mit Informationen zu den Dokumenten eines fachlichen Objekts
|
||||
*
|
||||
* <p>Java-Klasse für GetNumberOfDocumentsResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonSearchRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.GeschaeftsobjektArtType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Requestobjektes um Geschäftsfalle abzuholen
|
||||
*
|
||||
* <p>Java-Klasse für GetStateChangesRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="GetStateChangesRequest_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchRequest_Type">
|
||||
* <sequence>
|
||||
* <element name="GeschaeftsobjektArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GetStateChangesRequest_Type", propOrder = {
|
||||
"geschaeftsobjektArt"
|
||||
})
|
||||
public class GetStateChangesRequestType
|
||||
extends CommonSearchRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "GeschaeftsobjektArt")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected GeschaeftsobjektArtType geschaeftsobjektArt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der geschaeftsobjektArt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link GeschaeftsobjektArtType }
|
||||
*
|
||||
*/
|
||||
public GeschaeftsobjektArtType getGeschaeftsobjektArt() {
|
||||
return geschaeftsobjektArt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der geschaeftsobjektArt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link GeschaeftsobjektArtType }
|
||||
*
|
||||
*/
|
||||
public void setGeschaeftsobjektArt(GeschaeftsobjektArtType value) {
|
||||
this.geschaeftsobjektArt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,75 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonSearchResponseType;
|
||||
|
||||
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 java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Responseobjektes um Geschäftsfalle abzuholen
|
||||
*
|
||||
* <p>Java-Klasse für GetStateChangesResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="GetStateChangesResponse_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchResponse_Type">
|
||||
* <sequence>
|
||||
* <element name="Event" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GetStateChangesResponse_Type", propOrder = {
|
||||
"event"
|
||||
})
|
||||
public class GetStateChangesResponseType
|
||||
extends CommonSearchResponseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Event")
|
||||
protected List<AbstractStateChangeEventType> event;
|
||||
|
||||
/**
|
||||
* Gets the value of the event property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the event property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getEvent().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AbstractStateChangeEventType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AbstractStateChangeEventType> getEvent() {
|
||||
if (event == null) {
|
||||
event = new ArrayList<AbstractStateChangeEventType>();
|
||||
}
|
||||
return this.event;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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;
|
||||
|
||||
|
||||
/**
|
||||
* Request-Type zum Bezug eines Security-Context-Tokens
|
||||
*
|
||||
* <p>Java-Klasse für SecurityContextTokenRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SecurityContextTokenRequest_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Credentials" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}Credentials_Type"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SecurityContextTokenRequest_Type", propOrder = {
|
||||
"credentials"
|
||||
})
|
||||
public class SecurityContextTokenRequestType {
|
||||
|
||||
@XmlElement(name = "Credentials", required = true)
|
||||
protected CredentialsType credentials;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der credentials-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CredentialsType }
|
||||
*
|
||||
*/
|
||||
public CredentialsType getCredentials() {
|
||||
return credentials;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der credentials-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CredentialsType }
|
||||
*
|
||||
*/
|
||||
public void setCredentials(CredentialsType value) {
|
||||
this.credentials = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* Response-Type zum Bezug eines Securtity-Context-Tokens
|
||||
*
|
||||
* <p>Java-Klasse für SecurityContextTokenResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SecurityContextTokenResponse_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Token" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="DauerhaftGueltig" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="GueltigBis" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SecurityContextTokenResponse_Type", propOrder = {
|
||||
"token",
|
||||
"dauerhaftGueltig",
|
||||
"gueltigBis"
|
||||
})
|
||||
public class SecurityContextTokenResponseType {
|
||||
|
||||
@XmlElement(name = "Token", required = true)
|
||||
protected String token;
|
||||
@XmlElement(name = "DauerhaftGueltig")
|
||||
protected boolean dauerhaftGueltig;
|
||||
@XmlElement(name = "GueltigBis")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar gueltigBis;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der token-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getToken() {
|
||||
return token;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der token-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setToken(String value) {
|
||||
this.token = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der dauerhaftGueltig-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public boolean isDauerhaftGueltig() {
|
||||
return dauerhaftGueltig;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der dauerhaftGueltig-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setDauerhaftGueltig(boolean value) {
|
||||
this.dauerhaftGueltig = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der gueltigBis-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getGueltigBis() {
|
||||
return gueltigBis;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der gueltigBis-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setGueltigBis(XMLGregorianCalendar value) {
|
||||
this.gueltigBis = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,267 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.GeschaeftsobjektArtType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* Standard-Event einer Statusänderung
|
||||
*
|
||||
* <p>Java-Klasse für StateChangeEvent_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="StateChangeEvent_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type">
|
||||
* <sequence>
|
||||
* <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
|
||||
* <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
|
||||
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||
* <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type" minOccurs="0"/>
|
||||
* <element name="Aenderungsdatum" type="{urn:omds20}Datum-Zeit"/>
|
||||
* <element name="StatusGueltigAbDatum" type="{urn:omds20}Datum-Zeit"/>
|
||||
* <element name="BisherigerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type" minOccurs="0"/>
|
||||
* <element name="NeuerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "StateChangeEvent_Type", propOrder = {
|
||||
"objektart",
|
||||
"objektId",
|
||||
"geschaeftsfallnummer",
|
||||
"geschaeftsfallArt",
|
||||
"aenderungsdatum",
|
||||
"statusGueltigAbDatum",
|
||||
"bisherigerStatus",
|
||||
"neuerStatus"
|
||||
})
|
||||
public class StateChangeEventType
|
||||
extends AbstractStateChangeEventType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Objektart", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected GeschaeftsobjektArtType objektart;
|
||||
@XmlElement(name = "ObjektId", required = true)
|
||||
protected ObjektIdType objektId;
|
||||
@XmlElement(name = "Geschaeftsfallnummer")
|
||||
protected ObjektIdType geschaeftsfallnummer;
|
||||
@XmlElement(name = "GeschaeftsfallArt")
|
||||
@XmlSchemaType(name = "anySimpleType")
|
||||
protected String geschaeftsfallArt;
|
||||
@XmlElement(name = "Aenderungsdatum", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar aenderungsdatum;
|
||||
@XmlElement(name = "StatusGueltigAbDatum", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar statusGueltigAbDatum;
|
||||
@XmlElement(name = "BisherigerStatus")
|
||||
protected AbstractStatusGeschaeftsfallType bisherigerStatus;
|
||||
@XmlElement(name = "NeuerStatus", required = true)
|
||||
protected AbstractStatusGeschaeftsfallType neuerStatus;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der objektart-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link GeschaeftsobjektArtType }
|
||||
*
|
||||
*/
|
||||
public GeschaeftsobjektArtType getObjektart() {
|
||||
return objektart;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der objektart-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link GeschaeftsobjektArtType }
|
||||
*
|
||||
*/
|
||||
public void setObjektart(GeschaeftsobjektArtType value) {
|
||||
this.objektart = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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 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 geschaeftsfallArt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getGeschaeftsfallArt() {
|
||||
return geschaeftsfallArt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der geschaeftsfallArt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setGeschaeftsfallArt(String value) {
|
||||
this.geschaeftsfallArt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der aenderungsdatum-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getAenderungsdatum() {
|
||||
return aenderungsdatum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der aenderungsdatum-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setAenderungsdatum(XMLGregorianCalendar value) {
|
||||
this.aenderungsdatum = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der statusGueltigAbDatum-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getStatusGueltigAbDatum() {
|
||||
return statusGueltigAbDatum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der statusGueltigAbDatum-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setStatusGueltigAbDatum(XMLGregorianCalendar value) {
|
||||
this.statusGueltigAbDatum = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der bisherigerStatus-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AbstractStatusGeschaeftsfallType }
|
||||
*
|
||||
*/
|
||||
public AbstractStatusGeschaeftsfallType getBisherigerStatus() {
|
||||
return bisherigerStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der bisherigerStatus-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AbstractStatusGeschaeftsfallType }
|
||||
*
|
||||
*/
|
||||
public void setBisherigerStatus(AbstractStatusGeschaeftsfallType value) {
|
||||
this.bisherigerStatus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der neuerStatus-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AbstractStatusGeschaeftsfallType }
|
||||
*
|
||||
*/
|
||||
public AbstractStatusGeschaeftsfallType getNeuerStatus() {
|
||||
return neuerStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der neuerStatus-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AbstractStatusGeschaeftsfallType }
|
||||
*
|
||||
*/
|
||||
public void setNeuerStatus(AbstractStatusGeschaeftsfallType value) {
|
||||
this.neuerStatus = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_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;
|
||||
|
||||
|
||||
/**
|
||||
* Status eines Antrags
|
||||
*
|
||||
* <p>Java-Klasse für StatusAntragsGeschaeftsfall complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="StatusAntragsGeschaeftsfall">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "StatusAntragsGeschaeftsfall", propOrder = {
|
||||
"antragstatus"
|
||||
})
|
||||
public class StatusAntragsGeschaeftsfall
|
||||
extends AbstractStatusGeschaeftsfallType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragstatus")
|
||||
protected int antragstatus;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragstatus-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public int getAntragstatus() {
|
||||
return antragstatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragstatus-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setAntragstatus(int value) {
|
||||
this.antragstatus = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on1basis;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Konkrete Implementierung von Credentials mit Username und Password
|
||||
*
|
||||
* <p>Java-Klasse für UsernamePasswordCredentials_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="UsernamePasswordCredentials_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="Username" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Password" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "UsernamePasswordCredentials_Type")
|
||||
public class UsernamePasswordCredentialsType {
|
||||
|
||||
@XmlAttribute(name = "Username", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", required = true)
|
||||
protected String username;
|
||||
@XmlAttribute(name = "Password", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", required = true)
|
||||
protected String password;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der username-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der username-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setUsername(String value) {
|
||||
this.username = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der password-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der password-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPassword(String value) {
|
||||
this.password = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
@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_4_0.on1basis;
|
||||
@@ -0,0 +1,61 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Request für die Berechnung
|
||||
*
|
||||
* <p>Java-Klasse für CalculateRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CalculateRequest_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
||||
* <sequence>
|
||||
* <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CalculateRequest_Type", propOrder = {
|
||||
"requestUpselling"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
CalculateKfzRequestType.class
|
||||
})
|
||||
public abstract class CalculateRequestType
|
||||
extends CommonProcessRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "RequestUpselling", defaultValue = "false")
|
||||
protected boolean requestUpselling;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der requestUpselling-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public boolean isRequestUpselling() {
|
||||
return requestUpselling;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der requestUpselling-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setRequestUpselling(boolean value) {
|
||||
this.requestUpselling = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType;
|
||||
|
||||
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 Response, der das Ergebnis der Berechnung enthält bzw. Fehlermeldungen
|
||||
*
|
||||
* <p>Java-Klasse für CalculateResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CalculateResponse_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CalculateResponse_Type")
|
||||
@XmlSeeAlso({
|
||||
CalculateKfzResponseType.class
|
||||
})
|
||||
public abstract class CalculateResponseType
|
||||
extends CommonProcessResponseType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DateianhangType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Request für den Antrag
|
||||
*
|
||||
* <p>Java-Klasse für CreateApplicationRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreateApplicationRequest_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
||||
* <sequence>
|
||||
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateApplicationRequest_Type", propOrder = {
|
||||
"dateianhaenge"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
CreateApplicationKfzRequestType.class
|
||||
})
|
||||
public abstract class CreateApplicationRequestType
|
||||
extends CommonProcessRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Dateianhaenge")
|
||||
protected List<DateianhangType> dateianhaenge;
|
||||
|
||||
/**
|
||||
* Gets the value of the dateianhaenge property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the dateianhaenge property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDateianhaenge().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DateianhangType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DateianhangType> getDateianhaenge() {
|
||||
if (dateianhaenge == null) {
|
||||
dateianhaenge = new ArrayList<DateianhangType>();
|
||||
}
|
||||
return this.dateianhaenge;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,134 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Response, der den Antrag enthält bzw. Fehlermeldungen
|
||||
*
|
||||
* <p>Java-Klasse für CreateApplicationResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreateApplicationResponse_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
|
||||
* <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||
* <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateApplicationResponse_Type", propOrder = {
|
||||
"antragstatus",
|
||||
"antragsnummer",
|
||||
"dokumente"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
CreateApplicationKfzResponseType.class
|
||||
})
|
||||
public abstract class CreateApplicationResponseType
|
||||
extends CommonProcessResponseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragstatus")
|
||||
protected Integer antragstatus;
|
||||
@XmlElement(name = "Antragsnummer")
|
||||
protected ObjektIdType antragsnummer;
|
||||
@XmlElement(name = "Dokumente")
|
||||
protected List<DokumentInfoType> dokumente;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragstatus-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getAntragstatus() {
|
||||
return antragstatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragstatus-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setAntragstatus(Integer value) {
|
||||
this.antragstatus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsnummer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public ObjektIdType getAntragsnummer() {
|
||||
return antragsnummer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsnummer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsnummer(ObjektIdType value) {
|
||||
this.antragsnummer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dokumente property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the dokumente property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDokumente().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DokumentInfoType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DokumentInfoType> getDokumente() {
|
||||
if (dokumente == null) {
|
||||
dokumente = new ArrayList<DokumentInfoType>();
|
||||
}
|
||||
return this.dokumente;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType;
|
||||
|
||||
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 Request für das Offert
|
||||
*
|
||||
* <p>Java-Klasse für CreateOfferRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreateOfferRequest_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateOfferRequest_Type")
|
||||
@XmlSeeAlso({
|
||||
CreateOfferKfzRequestType.class
|
||||
})
|
||||
public abstract class CreateOfferRequestType
|
||||
extends CommonProcessRequestType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Response, der das Offert enthält bzw. Fehlermeldungen
|
||||
*
|
||||
* <p>Java-Klasse für CreateOfferResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreateOfferResponse_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
||||
* <sequence>
|
||||
* <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateOfferResponse_Type", propOrder = {
|
||||
"dokumente"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
CreateOfferKfzResponseType.class
|
||||
})
|
||||
public abstract class CreateOfferResponseType
|
||||
extends CommonProcessResponseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Dokumente")
|
||||
protected List<DokumentInfoType> dokumente;
|
||||
|
||||
/**
|
||||
* Gets the value of the dokumente property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the dokumente property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDokumente().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DokumentInfoType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DokumentInfoType> getDokumente() {
|
||||
if (dokumente == null) {
|
||||
dokumente = new ArrayList<DokumentInfoType>();
|
||||
}
|
||||
return this.dokumente;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonRequestType;
|
||||
|
||||
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 um Offert- und Antragsdokumente zu beziehen
|
||||
*
|
||||
* <p>Java-Klasse für GetApplicationDocumentRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <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>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user