In Beispielen einen Beispiel-Auskunftsservice aufgenommen,
Zahlweg wieder zurückgedreht, Java-Klassen neu generiert
This commit is contained in:
@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2018-11-21T16:38:51.202+01:00
|
||||
* 2018-11-26T15:36:28.264+01:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2018-11-21T16:38:51.132+01:00
|
||||
* 2018-11-26T15:36:28.195+01:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2018-11-21T16:38:51.165+01:00
|
||||
* 2018-11-26T15:36:28.248+01:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -19,7 +19,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2018-11-21T16:38:51.021+01:00
|
||||
* 2018-11-26T15:36:28.111+01:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2018-11-21T16:38:51.114+01:00
|
||||
* 2018-11-26T15:36:28.180+01:00
|
||||
* Generated source version: 3.2.0
|
||||
*/
|
||||
|
||||
|
||||
@@ -0,0 +1,187 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.v1_3_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;
|
||||
|
||||
|
||||
/**
|
||||
* <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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -37,6 +37,14 @@ public class ObjectFactory {
|
||||
public ObjectFactory() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ZahlwegType }
|
||||
*
|
||||
*/
|
||||
public ZahlwegType createZahlwegType() {
|
||||
return new ZahlwegType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DokumentInfoType }
|
||||
*
|
||||
@@ -141,22 +149,6 @@ public class ObjectFactory {
|
||||
return new VersicherungssteuerType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BankverbindungType }
|
||||
*
|
||||
*/
|
||||
public BankverbindungType createBankverbindungType() {
|
||||
return new BankverbindungType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ZahlungsdatenType }
|
||||
*
|
||||
*/
|
||||
public ZahlungsdatenType createZahlungsdatenType() {
|
||||
return new ZahlungsdatenType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TechnicalKeyValueType }
|
||||
*
|
||||
@@ -277,6 +269,38 @@ public class ObjectFactory {
|
||||
return new DeckungProzentType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ZahlungsdatenType }
|
||||
*
|
||||
*/
|
||||
public ZahlungsdatenType createZahlungsdatenType() {
|
||||
return new ZahlungsdatenType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link KreditkarteType }
|
||||
*
|
||||
*/
|
||||
public KreditkarteType createKreditkarteType() {
|
||||
return new KreditkarteType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link BankverbindungType }
|
||||
*
|
||||
*/
|
||||
public BankverbindungType createBankverbindungType() {
|
||||
return new BankverbindungType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ZahlwegType.Kundenkonto }
|
||||
*
|
||||
*/
|
||||
public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() {
|
||||
return new ZahlwegType.Kundenkonto();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DokumentInfoType.Referenz }
|
||||
*
|
||||
|
||||
@@ -10,17 +10,18 @@ import javax.xml.bind.annotation.XmlType;
|
||||
/**
|
||||
* Beschreibt die Zahlungsdaten
|
||||
*
|
||||
* <p>Java-Klasse für ZahlungsdatenType complex type.
|
||||
* <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="ZahlungsdatenType">
|
||||
* <complexType name="Zahlungsdaten_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Zahlungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsart_Type"/>
|
||||
* <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>
|
||||
@@ -31,9 +32,10 @@ import javax.xml.bind.annotation.XmlType;
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ZahlungsdatenType", propOrder = {
|
||||
@XmlType(name = "Zahlungsdaten_Type", propOrder = {
|
||||
"zahlungsart",
|
||||
"kontonummer",
|
||||
"bic",
|
||||
"beschreibung"
|
||||
})
|
||||
public class ZahlungsdatenType {
|
||||
@@ -42,6 +44,8 @@ public class ZahlungsdatenType {
|
||||
protected String zahlungsart;
|
||||
@XmlElement(name = "Kontonummer")
|
||||
protected String kontonummer;
|
||||
@XmlElement(name = "BIC")
|
||||
protected String bic;
|
||||
@XmlElement(name = "Beschreibung")
|
||||
protected String beschreibung;
|
||||
|
||||
@@ -93,6 +97,30 @@ public class ZahlungsdatenType {
|
||||
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.
|
||||
*
|
||||
|
||||
@@ -0,0 +1,206 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.v1_3_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <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 ZahlwegType.Kundenkonto kundenkonto;
|
||||
@XmlElement(name = "Kreditkarte")
|
||||
protected KreditkarteType kreditkarte;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zahlungsanweisung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Object }
|
||||
*
|
||||
*/
|
||||
public Object getZahlungsanweisung() {
|
||||
return zahlungsanweisung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zahlungsanweisung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Object }
|
||||
*
|
||||
*/
|
||||
public void setZahlungsanweisung(Object value) {
|
||||
this.zahlungsanweisung = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der lastschrift-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BankverbindungType }
|
||||
*
|
||||
*/
|
||||
public BankverbindungType getLastschrift() {
|
||||
return lastschrift;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der lastschrift-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BankverbindungType }
|
||||
*
|
||||
*/
|
||||
public void setLastschrift(BankverbindungType value) {
|
||||
this.lastschrift = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der kundenkonto-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ZahlwegType.Kundenkonto }
|
||||
*
|
||||
*/
|
||||
public ZahlwegType.Kundenkonto getKundenkonto() {
|
||||
return kundenkonto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kundenkonto-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ZahlwegType.Kundenkonto }
|
||||
*
|
||||
*/
|
||||
public void setKundenkonto(ZahlwegType.Kundenkonto value) {
|
||||
this.kundenkonto = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der kreditkarte-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link KreditkarteType }
|
||||
*
|
||||
*/
|
||||
public KreditkarteType getKreditkarte() {
|
||||
return kreditkarte;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kreditkarte-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link KreditkarteType }
|
||||
*
|
||||
*/
|
||||
public void setKreditkarte(KreditkarteType value) {
|
||||
this.kreditkarte = value;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* <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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -14,7 +14,6 @@ import at.vvo.omds.types.omds3Types.v1_3_0.common.AntragsartType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.DatenverwendungType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.KontierungType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.PolizzenversandType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.SepaType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.VertragspersonType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.VinkularglaeubigerType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.ZahlungsdatenType;
|
||||
@@ -40,8 +39,8 @@ import at.vvo.omds.types.omds3Types.v1_3_0.on2antrag.rs.SpezAntragRSType;
|
||||
* <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||
* <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZahlungsdatenType"/>
|
||||
* <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}Sepa_Type"/>
|
||||
* <element name="Zahlungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zahlungsdaten_Type"/>
|
||||
* <element name="Sepa" type="{urn:omds3CommonServiceTypes-1-1-0}SepaCd_Type" minOccurs="0"/>
|
||||
* <element name="Vinkulierung" type="{urn:omds3CommonServiceTypes-1-1-0}Vinkularglaeubiger_Type" minOccurs="0"/>
|
||||
* <element name="Polizzenversand" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenversandType" minOccurs="0"/>
|
||||
* <element name="Datenschutzbestimmungen" type="{urn:omds3CommonServiceTypes-1-1-0}Datenverwendung_Type"/>
|
||||
@@ -95,9 +94,9 @@ public abstract class SpezAntragType {
|
||||
protected List<VertragspersonType> weitereVertragspersonen;
|
||||
@XmlElement(name = "Zahlungsdaten", required = true)
|
||||
protected ZahlungsdatenType zahlungsdaten;
|
||||
@XmlElement(name = "Sepa", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected SepaType sepa;
|
||||
@XmlElement(name = "Sepa")
|
||||
@XmlSchemaType(name = "unsignedByte")
|
||||
protected Short sepa;
|
||||
@XmlElement(name = "Vinkulierung")
|
||||
protected VinkularglaeubigerType vinkulierung;
|
||||
@XmlElement(name = "Polizzenversand")
|
||||
@@ -290,10 +289,10 @@ public abstract class SpezAntragType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SepaType }
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public SepaType getSepa() {
|
||||
public Short getSepa() {
|
||||
return sepa;
|
||||
}
|
||||
|
||||
@@ -302,10 +301,10 @@ public abstract class SpezAntragType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SepaType }
|
||||
* {@link Short }
|
||||
*
|
||||
*/
|
||||
public void setSepa(SepaType value) {
|
||||
public void setSepa(Short value) {
|
||||
this.sepa = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -217,14 +217,6 @@ public class ObjectFactory {
|
||||
return new SpezAntragKfzType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AntragantwortKfzType }
|
||||
*
|
||||
*/
|
||||
public AntragantwortKfzType createAntragantwortKfzType() {
|
||||
return new AntragantwortKfzType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FahrzeugType }
|
||||
*
|
||||
|
||||
@@ -6,7 +6,6 @@ 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.v1_3_0.common.BonusMalusSystemType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.ErsatzpolizzenType;
|
||||
@@ -49,9 +48,6 @@ import at.vvo.omds.types.omds3Types.v1_3_0.on2antrag.common.SpezAntragType;
|
||||
"zusaetzlicheKfzDaten",
|
||||
"zusendungWeitereDokumente"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
AntragantwortKfzType.class
|
||||
})
|
||||
public class SpezAntragKfzType
|
||||
extends SpezAntragType
|
||||
{
|
||||
|
||||
@@ -5,12 +5,10 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.BankverbindungType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.CommonRequestType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.DateianhangType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.ObjektIdType;
|
||||
@@ -31,69 +29,8 @@ import at.vvo.omds.types.omds3Types.v1_3_0.common.PersonType;
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
|
||||
* <element name="Zahlweg">
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="Zahlungsanweisung">
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Inkassoadresse" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </element>
|
||||
* <element name="BankverbindungAbbuchung" 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">
|
||||
* <complexType>
|
||||
* <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>
|
||||
* </element>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </element>
|
||||
* <element name="Inkassoadresse" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
|
||||
* <element name="Zahlweg" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag}Zahlweg_Type"/>
|
||||
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
|
||||
* </sequence>
|
||||
@@ -108,6 +45,7 @@ import at.vvo.omds.types.omds3Types.v1_3_0.common.PersonType;
|
||||
@XmlType(name = "CollectionChangeRequest_Type", propOrder = {
|
||||
"objektId",
|
||||
"zahlrhythmus",
|
||||
"inkassoadresse",
|
||||
"zahlweg",
|
||||
"dateianhaenge",
|
||||
"wirksamtkeitAb"
|
||||
@@ -120,8 +58,10 @@ public class CollectionChangeRequestType
|
||||
protected ObjektIdType objektId;
|
||||
@XmlElement(name = "Zahlrhythmus", required = true)
|
||||
protected String zahlrhythmus;
|
||||
@XmlElement(name = "Inkassoadresse", required = true)
|
||||
protected PersonType inkassoadresse;
|
||||
@XmlElement(name = "Zahlweg", required = true)
|
||||
protected CollectionChangeRequestType.Zahlweg zahlweg;
|
||||
protected ZahlwegType zahlweg;
|
||||
@XmlElement(name = "Dateianhaenge")
|
||||
protected List<DateianhangType> dateianhaenge;
|
||||
@XmlElement(name = "WirksamtkeitAb", required = true)
|
||||
@@ -176,15 +116,39 @@ public class CollectionChangeRequestType
|
||||
this.zahlrhythmus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der inkassoadresse-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PersonType }
|
||||
*
|
||||
*/
|
||||
public PersonType getInkassoadresse() {
|
||||
return inkassoadresse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der inkassoadresse-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PersonType }
|
||||
*
|
||||
*/
|
||||
public void setInkassoadresse(PersonType value) {
|
||||
this.inkassoadresse = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zahlweg-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CollectionChangeRequestType.Zahlweg }
|
||||
* {@link ZahlwegType }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType.Zahlweg getZahlweg() {
|
||||
public ZahlwegType getZahlweg() {
|
||||
return zahlweg;
|
||||
}
|
||||
|
||||
@@ -193,10 +157,10 @@ public class CollectionChangeRequestType
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CollectionChangeRequestType.Zahlweg }
|
||||
* {@link ZahlwegType }
|
||||
*
|
||||
*/
|
||||
public void setZahlweg(CollectionChangeRequestType.Zahlweg value) {
|
||||
public void setZahlweg(ZahlwegType value) {
|
||||
this.zahlweg = value;
|
||||
}
|
||||
|
||||
@@ -253,478 +217,4 @@ public class CollectionChangeRequestType
|
||||
this.wirksamtkeitAb = 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">
|
||||
* <choice>
|
||||
* <element name="Zahlungsanweisung">
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Inkassoadresse" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </element>
|
||||
* <element name="BankverbindungAbbuchung" 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">
|
||||
* <complexType>
|
||||
* <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>
|
||||
* </element>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"zahlungsanweisung",
|
||||
"bankverbindungAbbuchung",
|
||||
"kundenkonto",
|
||||
"kreditkarte"
|
||||
})
|
||||
public static class Zahlweg {
|
||||
|
||||
@XmlElement(name = "Zahlungsanweisung")
|
||||
protected CollectionChangeRequestType.Zahlweg.Zahlungsanweisung zahlungsanweisung;
|
||||
@XmlElement(name = "BankverbindungAbbuchung")
|
||||
protected BankverbindungType bankverbindungAbbuchung;
|
||||
@XmlElement(name = "Kundenkonto")
|
||||
protected CollectionChangeRequestType.Zahlweg.Kundenkonto kundenkonto;
|
||||
@XmlElement(name = "Kreditkarte")
|
||||
protected CollectionChangeRequestType.Zahlweg.Kreditkarte kreditkarte;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zahlungsanweisung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CollectionChangeRequestType.Zahlweg.Zahlungsanweisung }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType.Zahlweg.Zahlungsanweisung getZahlungsanweisung() {
|
||||
return zahlungsanweisung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zahlungsanweisung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CollectionChangeRequestType.Zahlweg.Zahlungsanweisung }
|
||||
*
|
||||
*/
|
||||
public void setZahlungsanweisung(CollectionChangeRequestType.Zahlweg.Zahlungsanweisung value) {
|
||||
this.zahlungsanweisung = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der bankverbindungAbbuchung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BankverbindungType }
|
||||
*
|
||||
*/
|
||||
public BankverbindungType getBankverbindungAbbuchung() {
|
||||
return bankverbindungAbbuchung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der bankverbindungAbbuchung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BankverbindungType }
|
||||
*
|
||||
*/
|
||||
public void setBankverbindungAbbuchung(BankverbindungType value) {
|
||||
this.bankverbindungAbbuchung = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der kundenkonto-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CollectionChangeRequestType.Zahlweg.Kundenkonto }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType.Zahlweg.Kundenkonto getKundenkonto() {
|
||||
return kundenkonto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kundenkonto-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CollectionChangeRequestType.Zahlweg.Kundenkonto }
|
||||
*
|
||||
*/
|
||||
public void setKundenkonto(CollectionChangeRequestType.Zahlweg.Kundenkonto value) {
|
||||
this.kundenkonto = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der kreditkarte-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CollectionChangeRequestType.Zahlweg.Kreditkarte }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType.Zahlweg.Kreditkarte getKreditkarte() {
|
||||
return kreditkarte;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kreditkarte-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CollectionChangeRequestType.Zahlweg.Kreditkarte }
|
||||
*
|
||||
*/
|
||||
public void setKreditkarte(CollectionChangeRequestType.Zahlweg.Kreditkarte 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="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 = "")
|
||||
public static class Kreditkarte {
|
||||
|
||||
@XmlAttribute(name = "Gesellschaft", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", required = true)
|
||||
protected String gesellschaft;
|
||||
@XmlAttribute(name = "Kartennummer", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", required = true)
|
||||
protected String kartennummer;
|
||||
@XmlAttribute(name = "Inhaber", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", required = true)
|
||||
protected String inhaber;
|
||||
@XmlAttribute(name = "Pruefziffer", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", required = true)
|
||||
protected long pruefziffer;
|
||||
@XmlAttribute(name = "AblaufMonat", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", required = true)
|
||||
protected short ablaufMonat;
|
||||
@XmlAttribute(name = "AblaufJahr", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", 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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* <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:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", 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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Inkassoadresse" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"inkassoadresse"
|
||||
})
|
||||
public static class Zahlungsanweisung {
|
||||
|
||||
@XmlElement(name = "Inkassoadresse", required = true)
|
||||
protected PersonType inkassoadresse;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der inkassoadresse-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PersonType }
|
||||
*
|
||||
*/
|
||||
public PersonType getInkassoadresse() {
|
||||
return inkassoadresse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der inkassoadresse-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PersonType }
|
||||
*
|
||||
*/
|
||||
public void setInkassoadresse(PersonType value) {
|
||||
this.inkassoadresse = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -39,19 +39,11 @@ public class ObjectFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CollectionChangeRequestType }
|
||||
* Create an instance of {@link ZahlwegType }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType createCollectionChangeRequestType() {
|
||||
return new CollectionChangeRequestType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CollectionChangeRequestType.Zahlweg }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType.Zahlweg createCollectionChangeRequestTypeZahlweg() {
|
||||
return new CollectionChangeRequestType.Zahlweg();
|
||||
public ZahlwegType createZahlwegType() {
|
||||
return new ZahlwegType();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -86,6 +78,14 @@ public class ObjectFactory {
|
||||
return new SetMailingAddressResponseType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CollectionChangeRequestType }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType createCollectionChangeRequestType() {
|
||||
return new CollectionChangeRequestType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CollectionChangeResponseType }
|
||||
*
|
||||
@@ -95,27 +95,19 @@ public class ObjectFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CollectionChangeRequestType.Zahlweg.Zahlungsanweisung }
|
||||
* Create an instance of {@link ZahlwegType.Kundenkonto }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType.Zahlweg.Zahlungsanweisung createCollectionChangeRequestTypeZahlwegZahlungsanweisung() {
|
||||
return new CollectionChangeRequestType.Zahlweg.Zahlungsanweisung();
|
||||
public ZahlwegType.Kundenkonto createZahlwegTypeKundenkonto() {
|
||||
return new ZahlwegType.Kundenkonto();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CollectionChangeRequestType.Zahlweg.Kundenkonto }
|
||||
* Create an instance of {@link ZahlwegType.Kreditkarte }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType.Zahlweg.Kundenkonto createCollectionChangeRequestTypeZahlwegKundenkonto() {
|
||||
return new CollectionChangeRequestType.Zahlweg.Kundenkonto();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CollectionChangeRequestType.Zahlweg.Kreditkarte }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType.Zahlweg.Kreditkarte createCollectionChangeRequestTypeZahlwegKreditkarte() {
|
||||
return new CollectionChangeRequestType.Zahlweg.Kreditkarte();
|
||||
public ZahlwegType.Kreditkarte createZahlwegTypeKreditkarte() {
|
||||
return new ZahlwegType.Kreditkarte();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -0,0 +1,418 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.v1_3_0.on3vertrag;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.v1_3_0.common.BankverbindungType;
|
||||
|
||||
|
||||
/**
|
||||
* <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="BankverbindungAbbuchung" 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">
|
||||
* <complexType>
|
||||
* <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>
|
||||
* </element>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Zahlweg_Type", propOrder = {
|
||||
"zahlungsanweisung",
|
||||
"bankverbindungAbbuchung",
|
||||
"kundenkonto",
|
||||
"kreditkarte"
|
||||
})
|
||||
public class ZahlwegType {
|
||||
|
||||
@XmlElement(name = "Zahlungsanweisung")
|
||||
protected Object zahlungsanweisung;
|
||||
@XmlElement(name = "BankverbindungAbbuchung")
|
||||
protected BankverbindungType bankverbindungAbbuchung;
|
||||
@XmlElement(name = "Kundenkonto")
|
||||
protected ZahlwegType.Kundenkonto kundenkonto;
|
||||
@XmlElement(name = "Kreditkarte")
|
||||
protected ZahlwegType.Kreditkarte 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 bankverbindungAbbuchung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BankverbindungType }
|
||||
*
|
||||
*/
|
||||
public BankverbindungType getBankverbindungAbbuchung() {
|
||||
return bankverbindungAbbuchung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der bankverbindungAbbuchung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BankverbindungType }
|
||||
*
|
||||
*/
|
||||
public void setBankverbindungAbbuchung(BankverbindungType value) {
|
||||
this.bankverbindungAbbuchung = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der kundenkonto-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ZahlwegType.Kundenkonto }
|
||||
*
|
||||
*/
|
||||
public ZahlwegType.Kundenkonto getKundenkonto() {
|
||||
return kundenkonto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kundenkonto-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ZahlwegType.Kundenkonto }
|
||||
*
|
||||
*/
|
||||
public void setKundenkonto(ZahlwegType.Kundenkonto value) {
|
||||
this.kundenkonto = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der kreditkarte-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ZahlwegType.Kreditkarte }
|
||||
*
|
||||
*/
|
||||
public ZahlwegType.Kreditkarte getKreditkarte() {
|
||||
return kreditkarte;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der kreditkarte-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ZahlwegType.Kreditkarte }
|
||||
*
|
||||
*/
|
||||
public void setKreditkarte(ZahlwegType.Kreditkarte 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="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 = "")
|
||||
public static class Kreditkarte {
|
||||
|
||||
@XmlAttribute(name = "Gesellschaft", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", required = true)
|
||||
protected String gesellschaft;
|
||||
@XmlAttribute(name = "Kartennummer", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", required = true)
|
||||
protected String kartennummer;
|
||||
@XmlAttribute(name = "Inhaber", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", required = true)
|
||||
protected String inhaber;
|
||||
@XmlAttribute(name = "Pruefziffer", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", required = true)
|
||||
protected long pruefziffer;
|
||||
@XmlAttribute(name = "AblaufMonat", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", required = true)
|
||||
protected short ablaufMonat;
|
||||
@XmlAttribute(name = "AblaufJahr", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", 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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* <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:at.vvo.omds.types.omds3types.v1-3-0.on3vertrag", 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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
|
||||
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected ObjektIdType objektId;
|
||||
@XmlElementRefs({
|
||||
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on4partner", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on4partner", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on4partner", type = JAXBElement.class)
|
||||
})
|
||||
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
|
||||
@XmlElement(name = "WirksamtkeitAb", required = true)
|
||||
@@ -115,9 +115,9 @@ public class ChangeCommunicationObjectRequestType
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ost="urn:omds3ServiceTypes-1-1-0" elementFormDefault="qualified" attributeFormDefault="unqualified" vc:minVersion="1.1">
|
||||
<xsd:import namespace="urn:omds20" schemaLocation="../omds29-00.xsd"/>
|
||||
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="../omds3CommonServiceTypes.xsd"/>
|
||||
<xsd:import namespace="urn:omds3ServiceTypes-1-1-0" schemaLocation="../omds3ServiceTypes.xsd"/>
|
||||
<xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="../omds3_ON2_Antrag_Common.xsd"/>
|
||||
<xsd:element name="ProduktAuskunft">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Comment describing your root element</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:complexType name="ProduktAuskunft_Type">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:Verkaufsprodukt_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Produkt" maxOccurs="unbounded">
|
||||
<xsd:complexType>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:Produkt_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Elementarprodukt" type="cst:Elementarprodukt_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
@@ -867,35 +867,6 @@
|
||||
</xsd:enumeration>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<xsd:complexType name="Bankverbindung_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>beschreibt eine Bankverbindug</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Kontoinhaber" type="xsd:string"/>
|
||||
<xsd:element name="Bank" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="BIC" type="BIC_Type" minOccurs="0"/>
|
||||
<xsd:element name="IBAN" type="IBAN_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:simpleType name="BIC_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>BIC</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:minLength value="1"/>
|
||||
<xsd:maxLength value="11"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<xsd:simpleType name="IBAN_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>IBAN</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:minLength value="1"/>
|
||||
<xsd:maxLength value="34"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<xsd:simpleType name="DirectionCd_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Bearbeitungsstand Schaden (eine Erweiterung von BearbStandCd im OMDS-Datensatz)</xsd:documentation>
|
||||
@@ -940,20 +911,6 @@
|
||||
</xsd:enumeration>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<xsd:complexType name="ZahlungsdatenType">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Beschreibt die Zahlungsdaten</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Zahlungsart" type="Zahlungsart_Type"/>
|
||||
<xsd:element name="Kontonummer" type="xsd:string" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Abhängig von der Zahlungsart soll im Feld 'kontonummer' die Kundenkontonummer oder der IBAN befüllt werden.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Beschreibung" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="TechnicalKeyValue_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Typ für nicht weiter spezifizierte technische Parameter</xsd:documentation>
|
||||
@@ -1053,16 +1010,6 @@
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:simpleType name="Sepa_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Enummeration für verschiedene Steuerungen in Zusammenhang mit dem SEPA Mandat</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:enumeration value="Sepa nicht vorhanden"/>
|
||||
<xsd:enumeration value="Sepa überschreiben"/>
|
||||
<xsd:enumeration value="Sepa bereits vorhanden"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<!-- Bonus Malus-->
|
||||
<xsd:complexType name="BonusMalusSystem_Type">
|
||||
<xsd:sequence>
|
||||
@@ -1174,12 +1121,6 @@
|
||||
<xsd:element name="Ersatzpolizzennummer3" type="omds:Polizzennr" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:simpleType name="Zahlungsart_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Beschreibt die einzelnen Zahlungsarten</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string"/>
|
||||
</xsd:simpleType>
|
||||
<xsd:simpleType name="SubmitApplicationStatus_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Definition des Rückegabestatus für eingespielte Anträge</xsd:documentation>
|
||||
@@ -1399,4 +1340,108 @@
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Zahlungsdaten_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Beschreibt die Zahlungsdaten</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Zahlungsart" type="omds:ZahlWegCd_Type"/>
|
||||
<xsd:element name="Kontonummer" type="xsd:string" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Abhängig von der Zahlungsart soll im Feld 'kontonummer' die Kundenkontonummer oder der IBAN befüllt werden.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="BIC" type="BIC_Type" minOccurs="0"/>
|
||||
<xsd:element name="Beschreibung" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Zahlweg_Type">
|
||||
<xsd:choice>
|
||||
<xsd:element name="Zahlungsanweisung"/>
|
||||
<xsd:element name="Lastschrift" type="Bankverbindung_Type"/>
|
||||
<xsd:element name="Kundenkonto">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="Kundenkontonummer" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="Kreditkarte" type="Kreditkarte_Type"/>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Kreditkarte_Type">
|
||||
<xsd:attribute name="Gesellschaft" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="Kartennummer" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="Inhaber" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="Pruefziffer" use="required">
|
||||
<xsd:simpleType>
|
||||
<xsd:restriction base="xsd:unsignedInt">
|
||||
<xsd:totalDigits value="3"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:attribute>
|
||||
<xsd:attribute name="AblaufMonat" use="required">
|
||||
<xsd:simpleType>
|
||||
<xsd:restriction base="xsd:unsignedByte">
|
||||
<xsd:totalDigits value="2"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:attribute>
|
||||
<xsd:attribute name="AblaufJahr" use="required">
|
||||
<xsd:simpleType>
|
||||
<xsd:restriction base="xsd:unsignedByte">
|
||||
<xsd:totalDigits value="2"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:attribute>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Bankverbindung_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>beschreibt eine Bankverbindug</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Kontoinhaber" type="xsd:string"/>
|
||||
<xsd:element name="Bank" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="BIC" type="BIC_Type" minOccurs="0"/>
|
||||
<xsd:element name="IBAN" type="IBAN_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:simpleType name="BIC_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>BIC</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:minLength value="1"/>
|
||||
<xsd:maxLength value="11"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<xsd:simpleType name="IBAN_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>IBAN</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:minLength value="1"/>
|
||||
<xsd:maxLength value="34"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
<xsd:simpleType name="SepaCd_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Enummeration für verschiedene Steuerungen in Zusammenhang mit dem SEPA Mandat</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:restriction base="xsd:unsignedByte">
|
||||
<xsd:enumeration value="1">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Bestehendes bei Versicherungsgesellschaft hinterlegtes SEPA-Mandat</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<xsd:enumeration value="2">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>SEPA-Mandat bei Makler hinterlegt (nur in Kombination mit entsprechender Vollmacht)</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<xsd:enumeration value="3">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>SEPA-Mandat wird anbei übermittelt</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:schema>
|
||||
|
||||
@@ -62,14 +62,14 @@
|
||||
<xsd:documentation>Weitere Personen in Vertragsrollen</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Zahlungsdaten" type="cst:ZahlungsdatenType">
|
||||
<xsd:element name="Zahlungsdaten" type="cst:Zahlungsdaten_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Beschreibt die Zahlungsdaten</xsd:documentation>
|
||||
<xsd:documentation>Beschreibt die Art der Zahlung und enthält die zugehörigen Daten</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Sepa" type="cst:Sepa_Type">
|
||||
<xsd:element name="Sepa" type="cst:SepaCd_Type" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Sepa Mandat Steuerung</xsd:documentation>
|
||||
<xsd:documentation>SEPA-Mandat-Steuerung, wenn Zahlungsdaten ein SEPA-Mandat notwendig machen.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Vinkulierung" type="cst:Vinkularglaeubiger_Type" minOccurs="0">
|
||||
|
||||
@@ -277,22 +277,6 @@
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AntragantwortKfz_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Bei Erfolg die Details des eingereichten Antrags</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="SpezAntragKfz_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Dokumente" type="ost:ArcImageInfo" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Referenzen auf Antragsdokumente, die heruntergeladen werden können.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="UpsellingKfzResponse_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Response Upselling Alternativen</xsd:documentation>
|
||||
@@ -475,8 +459,7 @@
|
||||
</xsd:element>
|
||||
<xsd:element name="FahrzeugRefLfdNr" type="xsd:string">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Refernziert auf ein versichertes Fahrzeug über die laufende Nummer
|
||||
innerhalb eines Elementarprodukts.</xsd:documentation>
|
||||
<xsd:documentation>Refernziert auf ein versichertes Fahrzeug über die laufende Nummer innerhalb eines Elementarprodukts.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<!-- KFZ Datentypen -->
|
||||
|
||||
@@ -170,6 +170,34 @@
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="VersicherteObjekte" maxOccurs="unbounded">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ObjektId"/>
|
||||
<xsd:element name="RisikoAdresse">
|
||||
<xsd:complexType>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="omds:ADRESSE_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Horazone" type="xsd:unsignedByte" minOccurs="0"/>
|
||||
<xsd:element name="ImVerbautenOrt" type="xsd:boolean"/>
|
||||
<xsd:element name="AusserhalbDesOrtsgebiets" type="xsd:boolean"/>
|
||||
<xsd:element name="Tarifzone">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Was ist das?</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="ErreichbarkeitFuerLoeschfahrzeuge" type="xsd:boolean"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="GebaeudeRisiko" type="RisikoGebaeude_Type" maxOccurs="unbounded"/>
|
||||
<xsd:element name="RisikoHaushalt" type="RisikoHaushalt_Type" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
@@ -231,12 +259,12 @@
|
||||
<xsd:extension base="ElementarproduktBesitz_Type"/>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ElementarproduktElementar_Type">
|
||||
<xsd:complexType name="ElementarproduktFeuer_Type">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ElementarproduktGebaeude_Type"/>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ElementarproduktFeuer_Type">
|
||||
<xsd:complexType name="ElementarproduktElementar_Type">
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ElementarproduktGebaeude_Type"/>
|
||||
</xsd:complexContent>
|
||||
@@ -294,42 +322,9 @@
|
||||
<xsd:documentation>Typ des Requestobjekts für eine Berechnung Besitz</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:CommonRequest_Type">
|
||||
<xsd:extension base="ac:CalculateRequest_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Berechnungsanfrage" type="SpezBerechnungBesitz_Type"/>
|
||||
<xsd:element name="VersicherteObjekte" maxOccurs="unbounded">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ObjektId"/>
|
||||
<xsd:element name="RisikoAdresse">
|
||||
<xsd:complexType>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="omds:ADRESSE_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Horazone" type="xsd:unsignedByte" minOccurs="0"/>
|
||||
<xsd:element name="ImVerbautenOrt" type="xsd:boolean"/>
|
||||
<xsd:element name="AusserhalbDesOrtsgebiets" type="xsd:boolean"/>
|
||||
<xsd:element name="Tarifzone">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Was ist das?</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="ErreichbarkeitFuerLoeschfahrzeuge" type="xsd:boolean"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="GebaeudeRisiko" type="RisikoGebaeude_Type" maxOccurs="unbounded"/>
|
||||
<xsd:element name="RisikoHaushalt" type="RisikoHaushalt_Type" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="RequestUpselling" type="xsd:boolean" default="false">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Sollen Upselling-Vorschläge mitberechnet werden? Wenn ja kann dies zu einer längeren Berechnungsdauer führen.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
|
||||
@@ -132,53 +132,8 @@
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Zahlrhythmus" type="omds:ZahlRhythmCd_Type"/>
|
||||
<xsd:element name="Zahlweg">
|
||||
<xsd:complexType>
|
||||
<xsd:choice>
|
||||
<xsd:element name="Zahlungsanweisung">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Inkassoadresse" type="cst:Person_Type"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="BankverbindungAbbuchung" type="cst:Bankverbindung_Type"/>
|
||||
<xsd:element name="Kundenkonto">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="Kundenkontonummer" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="Kreditkarte">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="Gesellschaft" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="Kartennummer" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="Inhaber" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="Pruefziffer" use="required">
|
||||
<xsd:simpleType>
|
||||
<xsd:restriction base="xsd:unsignedInt">
|
||||
<xsd:totalDigits value="3"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:attribute>
|
||||
<xsd:attribute name="AblaufMonat" use="required">
|
||||
<xsd:simpleType>
|
||||
<xsd:restriction base="xsd:unsignedByte">
|
||||
<xsd:totalDigits value="2"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:attribute>
|
||||
<xsd:attribute name="AblaufJahr" use="required">
|
||||
<xsd:simpleType>
|
||||
<xsd:restriction base="xsd:unsignedByte">
|
||||
<xsd:totalDigits value="2"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:attribute>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="Inkassoadresse" type="cst:Person_Type"/>
|
||||
<xsd:element name="Zahlweg" type="Zahlweg_Type"/>
|
||||
<xsd:element name="Dateianhaenge" type="cst:Dateianhang_Type" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xsd:element name="WirksamtkeitAb" type="xsd:date"/>
|
||||
</xsd:sequence>
|
||||
@@ -202,4 +157,43 @@
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Zahlweg_Type">
|
||||
<xsd:choice>
|
||||
<xsd:element name="Zahlungsanweisung"/>
|
||||
<xsd:element name="BankverbindungAbbuchung" type="cst:Bankverbindung_Type"/>
|
||||
<xsd:element name="Kundenkonto">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="Kundenkontonummer" type="xsd:string" use="required"/>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="Kreditkarte">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="Gesellschaft" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="Kartennummer" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="Inhaber" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="Pruefziffer" use="required">
|
||||
<xsd:simpleType>
|
||||
<xsd:restriction base="xsd:unsignedInt">
|
||||
<xsd:totalDigits value="3"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:attribute>
|
||||
<xsd:attribute name="AblaufMonat" use="required">
|
||||
<xsd:simpleType>
|
||||
<xsd:restriction base="xsd:unsignedByte">
|
||||
<xsd:totalDigits value="2"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:attribute>
|
||||
<xsd:attribute name="AblaufJahr" use="required">
|
||||
<xsd:simpleType>
|
||||
<xsd:restriction base="xsd:unsignedByte">
|
||||
<xsd:totalDigits value="2"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:attribute>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
|
||||
Reference in New Issue
Block a user