Erweiterung Fahrzeug_Type um Merkmale aus ZusaetzlicheKfzdatenType.
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.FzZustandBesichtigungType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessorType;
|
||||
import jakarta.xml.bind.annotation.XmlSeeAlso;
|
||||
import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Ergebnisse einer Besichtigung
|
||||
*
|
||||
* <p>Java-Klasse für AFzZustandBesichtigung_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AFzZustandBesichtigung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AFzZustandBesichtigung_Type")
|
||||
@XmlSeeAlso({
|
||||
FzZustandBesichtigungType.class
|
||||
})
|
||||
public abstract class AFzZustandBesichtigungType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.common;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.WechselkennzeichenType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessorType;
|
||||
import jakarta.xml.bind.annotation.XmlSeeAlso;
|
||||
import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Behandlung des Fahrzeugs im Wechselkennzeichen
|
||||
*
|
||||
* <p>Java-Klasse für AWechselkennzeichen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AWechselkennzeichen_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AWechselkennzeichen_Type")
|
||||
@XmlSeeAlso({
|
||||
WechselkennzeichenType.class
|
||||
})
|
||||
public abstract class AWechselkennzeichenType {
|
||||
|
||||
|
||||
}
|
||||
@@ -25,6 +25,11 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
|
||||
* <sequence>
|
||||
* <element name="Zulassungsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}Zulassungsdaten_Type" minOccurs="0"/>
|
||||
* <element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* <element name="AbmeldedatumWechselkennzeichenFahrzeug" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Wechselkennzeichen" type="{urn:omds3CommonServiceTypes-1-1-0}AWechselkennzeichen_Type" minOccurs="0"/>
|
||||
* <element name="Fahrzeugzustand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="FzZustandBesichtigung" type="{urn:omds3CommonServiceTypes-1-1-0}AFzZustandBesichtigung_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="FzgArtCd" type="{urn:omds20}FzgArtCd_Type" />
|
||||
* <attribute name="Marke">
|
||||
@@ -120,7 +125,12 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Fahrzeug_Type", propOrder = {
|
||||
"zulassungsdaten"
|
||||
"zulassungsdaten",
|
||||
"erfolgtAnmeldungZeitgleichMitAbmeldung",
|
||||
"abmeldedatumWechselkennzeichenFahrzeug",
|
||||
"wechselkennzeichen",
|
||||
"fahrzeugzustand",
|
||||
"fzZustandBesichtigung"
|
||||
})
|
||||
public class FahrzeugType
|
||||
extends VersichertesInteresseType
|
||||
@@ -128,6 +138,17 @@ public class FahrzeugType
|
||||
|
||||
@XmlElement(name = "Zulassungsdaten")
|
||||
protected ZulassungsdatenType zulassungsdaten;
|
||||
@XmlElement(name = "ErfolgtAnmeldungZeitgleichMitAbmeldung")
|
||||
protected Boolean erfolgtAnmeldungZeitgleichMitAbmeldung;
|
||||
@XmlElement(name = "AbmeldedatumWechselkennzeichenFahrzeug")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar abmeldedatumWechselkennzeichenFahrzeug;
|
||||
@XmlElement(name = "Wechselkennzeichen")
|
||||
protected AWechselkennzeichenType wechselkennzeichen;
|
||||
@XmlElement(name = "Fahrzeugzustand")
|
||||
protected String fahrzeugzustand;
|
||||
@XmlElement(name = "FzZustandBesichtigung")
|
||||
protected AFzZustandBesichtigungType fzZustandBesichtigung;
|
||||
@XmlAttribute(name = "FzgArtCd", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String fzgArtCd;
|
||||
@XmlAttribute(name = "Marke", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
@@ -225,6 +246,126 @@ public class FahrzeugType
|
||||
this.zulassungsdaten = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isErfolgtAnmeldungZeitgleichMitAbmeldung() {
|
||||
return erfolgtAnmeldungZeitgleichMitAbmeldung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der erfolgtAnmeldungZeitgleichMitAbmeldung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setErfolgtAnmeldungZeitgleichMitAbmeldung(Boolean value) {
|
||||
this.erfolgtAnmeldungZeitgleichMitAbmeldung = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getAbmeldedatumWechselkennzeichenFahrzeug() {
|
||||
return abmeldedatumWechselkennzeichenFahrzeug;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der abmeldedatumWechselkennzeichenFahrzeug-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setAbmeldedatumWechselkennzeichenFahrzeug(XMLGregorianCalendar value) {
|
||||
this.abmeldedatumWechselkennzeichenFahrzeug = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der wechselkennzeichen-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AWechselkennzeichenType }
|
||||
*
|
||||
*/
|
||||
public AWechselkennzeichenType getWechselkennzeichen() {
|
||||
return wechselkennzeichen;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der wechselkennzeichen-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AWechselkennzeichenType }
|
||||
*
|
||||
*/
|
||||
public void setWechselkennzeichen(AWechselkennzeichenType value) {
|
||||
this.wechselkennzeichen = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der fahrzeugzustand-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFahrzeugzustand() {
|
||||
return fahrzeugzustand;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der fahrzeugzustand-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFahrzeugzustand(String value) {
|
||||
this.fahrzeugzustand = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der fzZustandBesichtigung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AFzZustandBesichtigungType }
|
||||
*
|
||||
*/
|
||||
public AFzZustandBesichtigungType getFzZustandBesichtigung() {
|
||||
return fzZustandBesichtigung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der fzZustandBesichtigung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AFzZustandBesichtigungType }
|
||||
*
|
||||
*/
|
||||
public void setFzZustandBesichtigung(AFzZustandBesichtigungType value) {
|
||||
this.fzZustandBesichtigung = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der fzgArtCd-Eigenschaft ab.
|
||||
*
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.common;
|
||||
|
||||
import jakarta.xml.bind.annotation.XmlAccessType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessorType;
|
||||
import jakarta.xml.bind.annotation.XmlSeeAlso;
|
||||
import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für FzZustandBesichtigung_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="FzZustandBesichtigung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "FzZustandBesichtigung_Type")
|
||||
@XmlSeeAlso({
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.FzZustandBesichtigungType.class
|
||||
})
|
||||
public abstract class FzZustandBesichtigungType {
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.common;
|
||||
|
||||
import jakarta.xml.bind.annotation.XmlAccessType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessorType;
|
||||
import jakarta.xml.bind.annotation.XmlSeeAlso;
|
||||
import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für Wechselkennzeichen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Wechselkennzeichen_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Wechselkennzeichen_Type")
|
||||
@XmlSeeAlso({
|
||||
at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz.WechselkennzeichenType.class
|
||||
})
|
||||
public abstract class WechselkennzeichenType {
|
||||
|
||||
|
||||
}
|
||||
@@ -3,6 +3,7 @@ package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.common.AFzZustandBesichtigungType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessorType;
|
||||
import jakarta.xml.bind.annotation.XmlElement;
|
||||
@@ -11,7 +12,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Ergebnisse einer Besichtigung
|
||||
* Standardimplementierung des AFzZustandBesichtigung_Type
|
||||
*
|
||||
* <p>Java-Klasse für FzZustandBesichtigung_Type complex type.
|
||||
*
|
||||
@@ -20,7 +21,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
* <pre>
|
||||
* <complexType name="FzZustandBesichtigung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AFzZustandBesichtigung_Type">
|
||||
* <sequence>
|
||||
* <element name="ZustandsberichtLiegtAlsFormularBei" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* <element name="ArtBesichtigung" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}ArtBesichtigung_Type"/>
|
||||
@@ -32,7 +33,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
* <element name="Besichtigungsdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="GrundFuerNachbesichtigung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
@@ -51,7 +52,9 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
"besichtigungsdatum",
|
||||
"grundFuerNachbesichtigung"
|
||||
})
|
||||
public class FzZustandBesichtigungType {
|
||||
public class FzZustandBesichtigungType
|
||||
extends AFzZustandBesichtigungType
|
||||
{
|
||||
|
||||
@XmlElement(name = "ZustandsberichtLiegtAlsFormularBei")
|
||||
protected Boolean zustandsberichtLiegtAlsFormularBei;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_11_0.on2antrag.kfz;
|
||||
|
||||
import at.vvo.omds.types.omds3Types.r1_11_0.common.AWechselkennzeichenType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessType;
|
||||
import jakarta.xml.bind.annotation.XmlAccessorType;
|
||||
import jakarta.xml.bind.annotation.XmlElement;
|
||||
@@ -8,7 +9,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Type Wechselkennzeichen
|
||||
* Standardimplementierung von AWechselkennzeichen_Type
|
||||
*
|
||||
* <p>Java-Klasse für Wechselkennzeichen_Type complex type.
|
||||
*
|
||||
@@ -17,7 +18,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
* <pre>
|
||||
* <complexType name="Wechselkennzeichen_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AWechselkennzeichen_Type">
|
||||
* <sequence>
|
||||
* <element name="WechselkennzeichenArt">
|
||||
* <simpleType>
|
||||
@@ -30,7 +31,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
* <element name="BestehenderWechselkennzeichenvertrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="ErsetztWirdFahrgestellnummer" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz}Fahrgestellnummer_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
@@ -43,7 +44,9 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
"bestehenderWechselkennzeichenvertrag",
|
||||
"ersetztWirdFahrgestellnummer"
|
||||
})
|
||||
public class WechselkennzeichenType {
|
||||
public class WechselkennzeichenType
|
||||
extends AWechselkennzeichenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "WechselkennzeichenArt", required = true)
|
||||
protected String wechselkennzeichenArt;
|
||||
|
||||
@@ -10,7 +10,8 @@ import jakarta.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Type zusätzliche Kfz-Daten
|
||||
* Type zusätzliche Kfz-Daten; Deprecated, Elemente sind ab
|
||||
* Version 1.11 in Fahrzeug_Type enthalten.
|
||||
*
|
||||
* <p>Java-Klasse für ZusaetzlicheKfzdaten_Type complex type.
|
||||
*
|
||||
|
||||
@@ -10,7 +10,7 @@ import jakarta.xml.ws.Service;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 4.0.3
|
||||
* 2024-02-12T18:04:58.764+01:00
|
||||
* 2024-02-12T19:02:33.225+01:00
|
||||
* Generated source version: 4.0.3
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -9,7 +9,7 @@ import jakarta.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 4.0.3
|
||||
* 2024-02-12T18:04:58.743+01:00
|
||||
* 2024-02-12T19:02:33.204+01:00
|
||||
* Generated source version: 4.0.3
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -6,7 +6,7 @@ import jakarta.xml.ws.WebFault;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 4.0.3
|
||||
* 2024-02-12T18:04:58.709+01:00
|
||||
* 2024-02-12T19:02:33.175+01:00
|
||||
* Generated source version: 4.0.3
|
||||
*/
|
||||
|
||||
|
||||
@@ -2822,6 +2822,19 @@
|
||||
<xsd:documentation>Optional Zulassungsdaten. Wenn unter den Zulassungsdaten ein Fahrzeug gefunden wird, werden diese Daten verwendet.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="ErfolgtAnmeldungZeitgleichMitAbmeldung" type="xsd:boolean" minOccurs="0"/>
|
||||
<xsd:element name="AbmeldedatumWechselkennzeichenFahrzeug" type="xsd:date" minOccurs="0"/>
|
||||
<xsd:element name="Wechselkennzeichen" type="AWechselkennzeichen_Type" minOccurs="0"/>
|
||||
<xsd:element name="Fahrzeugzustand" type="xsd:string" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Fahrzeugzustand als Schlüsselwerte</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="FzZustandBesichtigung" type="AFzZustandBesichtigung_Type" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Detaillierte Fahrzeugzustandsbeschreibung z.B. aus einer Besichtigung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="FzgArtCd" type="omds:FzgArtCd_Type" use="optional"/>
|
||||
<xsd:attribute name="Marke" use="optional">
|
||||
@@ -2933,6 +2946,16 @@
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AWechselkennzeichen_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Behandlung des Fahrzeugs im Wechselkennzeichen</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="AFzZustandBesichtigung_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Ergebnisse einer Besichtigung</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:complexType>
|
||||
<xsd:simpleType name="AufbauNatC_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Die Aufbauart als Code (wie in Zulassung AUFBAU_NAT_C)</xsd:documentation>
|
||||
|
||||
@@ -497,7 +497,8 @@
|
||||
<!-- Zusätzliche KFZ-Daten -->
|
||||
<xsd:complexType name="ZusaetzlicheKfzdaten_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type zusätzliche Kfz-Daten</xsd:documentation>
|
||||
<xsd:documentation>Type zusätzliche Kfz-Daten; Deprecated, Elemente sind ab
|
||||
Version 1.11 in Fahrzeug_Type enthalten.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="KfzKennzeichen">
|
||||
@@ -527,8 +528,10 @@
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Wechselkennzeichen_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Type Wechselkennzeichen</xsd:documentation>
|
||||
<xsd:documentation>Standardimplementierung von AWechselkennzeichen_Type</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:AWechselkennzeichen_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="WechselkennzeichenArt">
|
||||
<xsd:simpleType>
|
||||
@@ -541,6 +544,8 @@
|
||||
<xsd:element name="BestehenderWechselkennzeichenvertrag" type="xsd:string"/>
|
||||
<xsd:element name="ErsetztWirdFahrgestellnummer" type="Fahrgestellnummer_Type" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:simpleType name="Fahrgestellnummer_Type">
|
||||
<xsd:annotation>
|
||||
@@ -553,8 +558,10 @@
|
||||
</xsd:simpleType>
|
||||
<xsd:complexType name="FzZustandBesichtigung_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Ergebnisse einer Besichtigung</xsd:documentation>
|
||||
<xsd:documentation>Standardimplementierung des AFzZustandBesichtigung_Type</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:AFzZustandBesichtigung_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ZustandsberichtLiegtAlsFormularBei" type="xsd:boolean" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
@@ -574,6 +581,8 @@
|
||||
<xsd:element name="Besichtigungsdatum" type="xsd:date" minOccurs="0"/>
|
||||
<xsd:element name="GrundFuerNachbesichtigung" type="xsd:string" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:simpleType name="ArtBesichtigung_Type">
|
||||
<xsd:annotation>
|
||||
|
||||
Reference in New Issue
Block a user