Binding adaptiert, Code generiert
This commit is contained in:
@@ -9,7 +9,8 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Message an einem Attribut
|
* Message an einem Attribut. Anders als beim Typ "ServiceFault" gibt es hier keine
|
||||||
|
* Möglichkeit des Bezugs auf ein Element, da der Bezug durch die Einbettung bereits gegeben ist.
|
||||||
*
|
*
|
||||||
* <p>Java-Klasse für AttributMsg_Type complex type.
|
* <p>Java-Klasse für AttributMsg_Type complex type.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -21,7 +21,8 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenzPostservice_Type">
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenzPostservice_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
* <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
|
||||||
|
* <element name="Msg" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMsg_Type" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
@@ -32,15 +33,18 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "DokumentPostservice_Type", propOrder = {
|
@XmlType(name = "DokumentPostservice_Type", propOrder = {
|
||||||
"content"
|
"content",
|
||||||
|
"msg"
|
||||||
})
|
})
|
||||||
public class DokumentPostserviceType
|
public class DokumentPostserviceType
|
||||||
extends DokumentenReferenzPostserviceType
|
extends DokumentenReferenzPostserviceType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Content", required = true)
|
@XmlElement(name = "Content")
|
||||||
@XmlMimeType("application/octet-stream")
|
@XmlMimeType("application/octet-stream")
|
||||||
protected DataHandler content;
|
protected DataHandler content;
|
||||||
|
@XmlElement(name = "Msg")
|
||||||
|
protected AttributMsgType msg;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der content-Eigenschaft ab.
|
* Ruft den Wert der content-Eigenschaft ab.
|
||||||
@@ -66,4 +70,28 @@ public class DokumentPostserviceType
|
|||||||
this.content = value;
|
this.content = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der msg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link AttributMsgType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public AttributMsgType getMsg() {
|
||||||
|
return msg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der msg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link AttributMsgType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setMsg(AttributMsgType value) {
|
||||||
|
this.msg = value;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type">
|
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Kontrollwert" type="{urn:omds3CommonServiceTypes-1-1-0}Kontrollwert_Type"/>
|
* <element name="Kontrollwert" type="{urn:omds3CommonServiceTypes-1-1-0}Kontrollwert_Type"/>
|
||||||
|
* <element name="NeuerlicheBereitstellung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
@@ -31,7 +32,8 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "DokumentenReferenzPostservice_Type", propOrder = {
|
@XmlType(name = "DokumentenReferenzPostservice_Type", propOrder = {
|
||||||
"kontrollwert"
|
"kontrollwert",
|
||||||
|
"neuerlicheBereitstellung"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
DokumentPostserviceType.class
|
DokumentPostserviceType.class
|
||||||
@@ -42,6 +44,8 @@ public class DokumentenReferenzPostserviceType
|
|||||||
|
|
||||||
@XmlElement(name = "Kontrollwert", required = true)
|
@XmlElement(name = "Kontrollwert", required = true)
|
||||||
protected KontrollwertType kontrollwert;
|
protected KontrollwertType kontrollwert;
|
||||||
|
@XmlElement(name = "NeuerlicheBereitstellung")
|
||||||
|
protected Boolean neuerlicheBereitstellung;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der kontrollwert-Eigenschaft ab.
|
* Ruft den Wert der kontrollwert-Eigenschaft ab.
|
||||||
@@ -67,4 +71,28 @@ public class DokumentenReferenzPostserviceType
|
|||||||
this.kontrollwert = value;
|
this.kontrollwert = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der neuerlicheBereitstellung-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public Boolean isNeuerlicheBereitstellung() {
|
||||||
|
return neuerlicheBereitstellung;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der neuerlicheBereitstellung-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link Boolean }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setNeuerlicheBereitstellung(Boolean value) {
|
||||||
|
this.neuerlicheBereitstellung = value;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Zuordnung Schaden
|
* Metadaten für Dokumente, welche einem Schaden zugeordnet werden können.
|
||||||
*
|
*
|
||||||
* <p>Java-Klasse für SchadenZuordnung_Type complex type.
|
* <p>Java-Klasse für SchadenZuordnung_Type complex type.
|
||||||
*
|
*
|
||||||
@@ -25,6 +25,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||||
* <element name="Schadennr" type="{urn:omds20}Schadennr"/>
|
* <element name="Schadennr" type="{urn:omds20}Schadennr"/>
|
||||||
* <element name="BearbStand" type="{urn:omds20}BearbStandCd_Type" minOccurs="0"/>
|
* <element name="BearbStand" type="{urn:omds20}BearbStandCd_Type" minOccurs="0"/>
|
||||||
|
* <element name="SpartenCd" type="{urn:omds20}SpartenCd_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* <element name="BeteiligtePerson" maxOccurs="unbounded" minOccurs="0">
|
* <element name="BeteiligtePerson" maxOccurs="unbounded" minOccurs="0">
|
||||||
* <complexType>
|
* <complexType>
|
||||||
* <complexContent>
|
* <complexContent>
|
||||||
@@ -51,7 +52,8 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
"geschaeftsfallnummer",
|
"geschaeftsfallnummer",
|
||||||
"schadennr",
|
"schadennr",
|
||||||
"bearbStand",
|
"bearbStand",
|
||||||
"beteiligtePerson"
|
"spartencodes",
|
||||||
|
"beteiligtePersonen"
|
||||||
})
|
})
|
||||||
public class SchadenZuordnungType
|
public class SchadenZuordnungType
|
||||||
extends ObjektSpezifikationType
|
extends ObjektSpezifikationType
|
||||||
@@ -63,8 +65,10 @@ public class SchadenZuordnungType
|
|||||||
protected String schadennr;
|
protected String schadennr;
|
||||||
@XmlElement(name = "BearbStand")
|
@XmlElement(name = "BearbStand")
|
||||||
protected String bearbStand;
|
protected String bearbStand;
|
||||||
|
@XmlElement(name = "SpartenCd")
|
||||||
|
protected List<String> spartencodes;
|
||||||
@XmlElement(name = "BeteiligtePerson")
|
@XmlElement(name = "BeteiligtePerson")
|
||||||
protected List<SchadenZuordnungType.BeteiligtePerson> beteiligtePerson;
|
protected List<SchadenZuordnungType.BeteiligtePerson> beteiligtePersonen;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab.
|
* Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab.
|
||||||
@@ -139,18 +143,47 @@ public class SchadenZuordnungType
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the beteiligtePerson property.
|
* <p>Die Liste der betroffenen Sparten dieses Schadendokuments.</p>Gets the value of the spartencodes property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the Jakarta XML Binding object.
|
* returned list will be present inside the Jakarta XML Binding object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the beteiligtePerson property.
|
* This is why there is not a <CODE>set</CODE> method for the spartencodes property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getBeteiligtePerson().add(newItem);
|
* getSpartencodes().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getSpartencodes() {
|
||||||
|
if (spartencodes == null) {
|
||||||
|
spartencodes = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.spartencodes;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Die Liste der beteiligten Personen dieses Schadendokuments.</p>Gets the value of the beteiligtePersonen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the Jakarta XML Binding object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the beteiligtePersonen property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getBeteiligtePersonen().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
@@ -160,11 +193,11 @@ public class SchadenZuordnungType
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<SchadenZuordnungType.BeteiligtePerson> getBeteiligtePerson() {
|
public List<SchadenZuordnungType.BeteiligtePerson> getBeteiligtePersonen() {
|
||||||
if (beteiligtePerson == null) {
|
if (beteiligtePersonen == null) {
|
||||||
beteiligtePerson = new ArrayList<SchadenZuordnungType.BeteiligtePerson>();
|
beteiligtePersonen = new ArrayList<SchadenZuordnungType.BeteiligtePerson>();
|
||||||
}
|
}
|
||||||
return this.beteiligtePerson;
|
return this.beteiligtePersonen;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Zuordnung zu Vertrag
|
* Metadaten für Dokumente, welche einem Vertrag zugeordnet werden können.
|
||||||
*
|
*
|
||||||
* <p>Java-Klasse für VertragsZuordnung_Type complex type.
|
* <p>Java-Klasse für VertragsZuordnung_Type complex type.
|
||||||
*
|
*
|
||||||
@@ -29,6 +29,8 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
* <element name="AendGrundCd" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
|
* <element name="AendGrundCd" type="{urn:omds20}AendGrundCd_Type" minOccurs="0"/>
|
||||||
* <element name="AusfGrundCd" type="{urn:omds3CommonServiceTypes-1-1-0}AusfGrundCd_Type" minOccurs="0"/>
|
* <element name="AusfGrundCd" type="{urn:omds3CommonServiceTypes-1-1-0}AusfGrundCd_Type" minOccurs="0"/>
|
||||||
* <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
|
* <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
|
||||||
|
* <element name="VtgSparteCd" type="{urn:omds20}VtgSparteCd_Type" minOccurs="0"/>
|
||||||
|
* <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
|
||||||
* <element name="Original" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenArt_Type" minOccurs="0"/>
|
* <element name="Original" type="{urn:omds3CommonServiceTypes-1-1-0}PolizzenArt_Type" minOccurs="0"/>
|
||||||
* <element name="Vertragsperson" maxOccurs="unbounded" minOccurs="0">
|
* <element name="Vertragsperson" maxOccurs="unbounded" minOccurs="0">
|
||||||
* <complexType>
|
* <complexType>
|
||||||
@@ -58,8 +60,10 @@ import jakarta.xml.bind.annotation.XmlType;
|
|||||||
"aendGrundCd",
|
"aendGrundCd",
|
||||||
"ausfGrundCd",
|
"ausfGrundCd",
|
||||||
"vtgProdCd",
|
"vtgProdCd",
|
||||||
|
"vtgSparteCd",
|
||||||
|
"zahlweg",
|
||||||
"original",
|
"original",
|
||||||
"vertragsperson"
|
"vertragspersonen"
|
||||||
})
|
})
|
||||||
public class VertragsZuordnungType
|
public class VertragsZuordnungType
|
||||||
extends ObjektSpezifikationType
|
extends ObjektSpezifikationType
|
||||||
@@ -75,11 +79,15 @@ public class VertragsZuordnungType
|
|||||||
protected String ausfGrundCd;
|
protected String ausfGrundCd;
|
||||||
@XmlElement(name = "VtgProdCd")
|
@XmlElement(name = "VtgProdCd")
|
||||||
protected String vtgProdCd;
|
protected String vtgProdCd;
|
||||||
|
@XmlElement(name = "VtgSparteCd")
|
||||||
|
protected String vtgSparteCd;
|
||||||
|
@XmlElement(name = "Zahlweg")
|
||||||
|
protected String zahlweg;
|
||||||
@XmlElement(name = "Original")
|
@XmlElement(name = "Original")
|
||||||
@XmlSchemaType(name = "string")
|
@XmlSchemaType(name = "string")
|
||||||
protected PolizzenArtType original;
|
protected PolizzenArtType original;
|
||||||
@XmlElement(name = "Vertragsperson")
|
@XmlElement(name = "Vertragsperson")
|
||||||
protected List<VertragsZuordnungType.Vertragsperson> vertragsperson;
|
protected List<VertragsZuordnungType.Vertragsperson> vertragspersonen;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der polizzennr-Eigenschaft ab.
|
* Ruft den Wert der polizzennr-Eigenschaft ab.
|
||||||
@@ -201,6 +209,54 @@ public class VertragsZuordnungType
|
|||||||
this.vtgProdCd = value;
|
this.vtgProdCd = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der vtgSparteCd-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getVtgSparteCd() {
|
||||||
|
return vtgSparteCd;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der vtgSparteCd-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVtgSparteCd(String value) {
|
||||||
|
this.vtgSparteCd = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der zahlweg-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public String getZahlweg() {
|
||||||
|
return zahlweg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der zahlweg-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setZahlweg(String value) {
|
||||||
|
this.zahlweg = value;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ruft den Wert der original-Eigenschaft ab.
|
* Ruft den Wert der original-Eigenschaft ab.
|
||||||
*
|
*
|
||||||
@@ -226,18 +282,18 @@ public class VertragsZuordnungType
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the value of the vertragsperson property.
|
* <p>Die Liste der Personen dieses Vertragsdokuments.</p>Gets the value of the vertragspersonen property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* This accessor method returns a reference to the live list,
|
* This accessor method returns a reference to the live list,
|
||||||
* not a snapshot. Therefore any modification you make to the
|
* not a snapshot. Therefore any modification you make to the
|
||||||
* returned list will be present inside the Jakarta XML Binding object.
|
* returned list will be present inside the Jakarta XML Binding object.
|
||||||
* This is why there is not a <CODE>set</CODE> method for the vertragsperson property.
|
* This is why there is not a <CODE>set</CODE> method for the vertragspersonen property.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* For example, to add a new item, do as follows:
|
* For example, to add a new item, do as follows:
|
||||||
* <pre>
|
* <pre>
|
||||||
* getVertragsperson().add(newItem);
|
* getVertragspersonen().add(newItem);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
@@ -247,11 +303,11 @@ public class VertragsZuordnungType
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public List<VertragsZuordnungType.Vertragsperson> getVertragsperson() {
|
public List<VertragsZuordnungType.Vertragsperson> getVertragspersonen() {
|
||||||
if (vertragsperson == null) {
|
if (vertragspersonen == null) {
|
||||||
vertragsperson = new ArrayList<VertragsZuordnungType.Vertragsperson>();
|
vertragspersonen = new ArrayList<VertragsZuordnungType.Vertragsperson>();
|
||||||
}
|
}
|
||||||
return this.vertragsperson;
|
return this.vertragspersonen;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ public class ZusatzversicherungUnfallinvaliditaetType
|
|||||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||||
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
||||||
* Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions_20240515/OMDSServiceDefinition/src/main/resources/def/r1_12_0/omds3_ON2_Antrag_Leben.xsd
|
* Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions_20240515/OMDSServiceDefinition/src/main/resources/def/r1_12_0/omds3_ON2_Antrag_Leben.xsd
|
||||||
* Zeile 1789 von file:/C:/Users/jensb/git/omdsservicedefinitions_20240515/OMDSServiceDefinition/src/main/resources/def/r1_12_0/omds3CommonServiceTypes.xsd
|
* Zeile 1788 von file:/C:/Users/jensb/git/omdsservicedefinitions_20240515/OMDSServiceDefinition/src/main/resources/def/r1_12_0/omds3CommonServiceTypes.xsd
|
||||||
* <p>
|
* <p>
|
||||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ public class ZusatzversicherungUnfalltodType
|
|||||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||||
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
|
||||||
* Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions_20240515/OMDSServiceDefinition/src/main/resources/def/r1_12_0/omds3_ON2_Antrag_Leben.xsd
|
* Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions_20240515/OMDSServiceDefinition/src/main/resources/def/r1_12_0/omds3_ON2_Antrag_Leben.xsd
|
||||||
* Zeile 1789 von file:/C:/Users/jensb/git/omdsservicedefinitions_20240515/OMDSServiceDefinition/src/main/resources/def/r1_12_0/omds3CommonServiceTypes.xsd
|
* Zeile 1788 von file:/C:/Users/jensb/git/omdsservicedefinitions_20240515/OMDSServiceDefinition/src/main/resources/def/r1_12_0/omds3CommonServiceTypes.xsd
|
||||||
* <p>
|
* <p>
|
||||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import jakarta.xml.ws.Service;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 4.0.3
|
* This class was generated by Apache CXF 4.0.3
|
||||||
* 2024-09-19T11:44:06.006+02:00
|
* 2024-09-24T13:42:03.682+02:00
|
||||||
* Generated source version: 4.0.3
|
* Generated source version: 4.0.3
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ import jakarta.xml.bind.annotation.XmlSeeAlso;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 4.0.3
|
* This class was generated by Apache CXF 4.0.3
|
||||||
* 2024-09-19T11:44:05.912+02:00
|
* 2024-09-24T13:42:03.599+02:00
|
||||||
* Generated source version: 4.0.3
|
* 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
|
* This class was generated by Apache CXF 4.0.3
|
||||||
* 2024-09-19T11:44:05.990+02:00
|
* 2024-09-24T13:42:03.665+02:00
|
||||||
* Generated source version: 4.0.3
|
* 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
|
* This class was generated by Apache CXF 4.0.3
|
||||||
* 2024-09-19T11:44:05.881+02:00
|
* 2024-09-24T13:42:03.553+02:00
|
||||||
* Generated source version: 4.0.3
|
* Generated source version: 4.0.3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -3856,7 +3856,7 @@
|
|||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="VertragsZuordnung_Type">
|
<xsd:complexType name="VertragsZuordnung_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Zuordnung zu Vertrag</xsd:documentation>
|
<xsd:documentation>Metadaten für Dokumente, welche einem Vertrag zugeordnet werden können.</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
<xsd:complexContent>
|
<xsd:complexContent>
|
||||||
<xsd:extension base="ObjektSpezifikation_Type">
|
<xsd:extension base="ObjektSpezifikation_Type">
|
||||||
@@ -3999,7 +3999,7 @@
|
|||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="SchadenZuordnung_Type">
|
<xsd:complexType name="SchadenZuordnung_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Zuordnung Schaden</xsd:documentation>
|
<xsd:documentation>Metadaten für Dokumente, welche einem Schaden zugeordnet werden können.</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
<xsd:complexContent>
|
<xsd:complexContent>
|
||||||
<xsd:extension base="ObjektSpezifikation_Type">
|
<xsd:extension base="ObjektSpezifikation_Type">
|
||||||
|
|||||||
@@ -68,6 +68,25 @@
|
|||||||
</jaxb:property>
|
</jaxb:property>
|
||||||
</jaxb:bindings>
|
</jaxb:bindings>
|
||||||
|
|
||||||
|
<!-- Metadaten Dokumente VertragsZuordnung -->
|
||||||
|
<jaxb:bindings node="//xs:complexType[@name='VertragsZuordnung_Type']//xs:element[@name='Vertragsperson']">
|
||||||
|
<jaxb:property name="Vertragspersonen">
|
||||||
|
<jaxb:javadoc><![CDATA[<p>Die Liste der Personen dieses Vertragsdokuments.</p>]]></jaxb:javadoc>
|
||||||
|
</jaxb:property>
|
||||||
|
</jaxb:bindings>
|
||||||
|
|
||||||
|
<!-- Metadaten Dokumente SchadenZuordnung -->
|
||||||
|
<jaxb:bindings node="//xs:complexType[@name='SchadenZuordnung_Type']//xs:element[@name='SpartenCd']">
|
||||||
|
<jaxb:property name="Spartencodes">
|
||||||
|
<jaxb:javadoc><![CDATA[<p>Die Liste der betroffenen Sparten dieses Schadendokuments.</p>]]></jaxb:javadoc>
|
||||||
|
</jaxb:property>
|
||||||
|
</jaxb:bindings>
|
||||||
|
<jaxb:bindings node="//xs:complexType[@name='SchadenZuordnung_Type']//xs:element[@name='BeteiligtePerson']">
|
||||||
|
<jaxb:property name="BeteiligtePersonen">
|
||||||
|
<jaxb:javadoc><![CDATA[<p>Die Liste der beteiligten Personen dieses Schadendokuments.</p>]]></jaxb:javadoc>
|
||||||
|
</jaxb:property>
|
||||||
|
</jaxb:bindings>
|
||||||
|
|
||||||
<jaxb:bindings node="//xs:complexType[@name='Teildokument_Type']//xs:element[@name='ObjektSpezifikation']">
|
<jaxb:bindings node="//xs:complexType[@name='Teildokument_Type']//xs:element[@name='ObjektSpezifikation']">
|
||||||
<jaxb:property name="ObjektSpezifikationen">
|
<jaxb:property name="ObjektSpezifikationen">
|
||||||
<jaxb:javadoc><![CDATA[<p>Die Liste der Objektspezifikationen für dieses Teildokument.</p>]]></jaxb:javadoc>
|
<jaxb:javadoc><![CDATA[<p>Die Liste der Objektspezifikationen für dieses Teildokument.</p>]]></jaxb:javadoc>
|
||||||
|
|||||||
Reference in New Issue
Block a user