Korrektur Objekt

This commit is contained in:
2019-11-08 16:58:45 +01:00
parent 13d518b2d4
commit 241e0ea034
8 changed files with 99 additions and 114 deletions

View File

@@ -5,8 +5,6 @@ import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry; import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName; import javax.xml.namespace.QName;
import at.vvo.omds.types.omds3Types.r1_5_0.common.DokumentInfoType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
/** /**
@@ -28,9 +26,6 @@ public class ObjectFactory {
private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest"); private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest");
private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse"); private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse");
private final static QName _SubmitApplicationResponseGenTypeAntragstatus_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "Antragstatus");
private final static QName _SubmitApplicationResponseGenTypeAntragsnummer_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "Antragsnummer");
private final static QName _SubmitApplicationResponseGenTypeDokumente_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "Dokumente");
/** /**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common
@@ -73,31 +68,4 @@ public class ObjectFactory {
return new JAXBElement<GetApplicationDocumentResponseType>(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value); return new JAXBElement<GetApplicationDocumentResponseType>(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value);
} }
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "Antragstatus", scope = SubmitApplicationResponseGenType.class)
public JAXBElement<Integer> createSubmitApplicationResponseGenTypeAntragstatus(Integer value) {
return new JAXBElement<Integer>(_SubmitApplicationResponseGenTypeAntragstatus_QNAME, Integer.class, SubmitApplicationResponseGenType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "Antragsnummer", scope = SubmitApplicationResponseGenType.class)
public JAXBElement<ObjektIdType> createSubmitApplicationResponseGenTypeAntragsnummer(ObjektIdType value) {
return new JAXBElement<ObjektIdType>(_SubmitApplicationResponseGenTypeAntragsnummer_QNAME, ObjektIdType.class, SubmitApplicationResponseGenType.class, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link DokumentInfoType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "Dokumente", scope = SubmitApplicationResponseGenType.class)
public JAXBElement<DokumentInfoType> createSubmitApplicationResponseGenTypeDokumente(DokumentInfoType value) {
return new JAXBElement<DokumentInfoType>(_SubmitApplicationResponseGenTypeDokumente_QNAME, DokumentInfoType.class, SubmitApplicationResponseGenType.class, value);
}
} }

View File

@@ -1,17 +1,10 @@
package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common; package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.DokumentInfoType;
import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType; import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType; import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SubmitApplicationUnfallResponseType; import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SubmitApplicationUnfallResponseType;
@@ -28,11 +21,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SubmitApplicationUnf
* &lt;complexType name="SubmitApplicationResponseGen_Type"&gt; * &lt;complexType name="SubmitApplicationResponseGen_Type"&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/&gt;
* &lt;element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/&gt;
* &lt;element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
* &lt;/complexType&gt; * &lt;/complexType&gt;
@@ -41,9 +29,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall.SubmitApplicationUnf
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationResponseGen_Type", propOrder = { @XmlType(name = "SubmitApplicationResponseGen_Type")
"rest"
})
@XmlSeeAlso({ @XmlSeeAlso({
SubmitApplicationRechtsschutzResponseType.class, SubmitApplicationRechtsschutzResponseType.class,
SubmitApplicationSachPrivatResponseType.class, SubmitApplicationSachPrivatResponseType.class,
@@ -53,52 +39,5 @@ public abstract class SubmitApplicationResponseGenType
extends SubmitApplicationResponseType extends SubmitApplicationResponseType
{ {
@XmlElementRefs({
@XmlElementRef(name = "Antragsnummer", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Antragstatus", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Dokumente", namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", type = JAXBElement.class, required = false)
})
protected List<JAXBElement<?>> rest;
/**
* Ruft das restliche Contentmodell ab.
*
* <p>
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
* Der Feldname "Antragstatus" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
* Zeile 347 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Common.xsd
* Zeile 237 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3_ON2_Antrag_Common.xsd
* <p>
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
* Gets the value of the rest property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the rest property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getRest().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link Integer }{@code >}
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
* {@link JAXBElement }{@code <}{@link DokumentInfoType }{@code >}
*
*
*/
public List<JAXBElement<?>> getRest() {
if (rest == null) {
rest = new ArrayList<JAXBElement<?>>();
}
return this.rest;
}
} }

View File

@@ -3,6 +3,7 @@ package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.rs;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationResponseGenType; import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationResponseGenType;
@@ -29,10 +30,38 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationRes
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationRechtsschutzResponse_Type") @XmlType(name = "SubmitApplicationRechtsschutzResponse_Type", propOrder = {
"antragsantwort"
})
public class SubmitApplicationRechtsschutzResponseType public class SubmitApplicationRechtsschutzResponseType
extends SubmitApplicationResponseGenType extends SubmitApplicationResponseGenType
{ {
@XmlElement(name = "Antragsantwort", required = true)
protected SpezAntragRechtsschutzType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragRechtsschutzType }
*
*/
public SpezAntragRechtsschutzType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragRechtsschutzType }
*
*/
public void setAntragsantwort(SpezAntragRechtsschutzType value) {
this.antragsantwort = value;
}
} }

View File

@@ -3,6 +3,7 @@ package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.sachPrivat;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationResponseGenType; import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationResponseGenType;
@@ -29,10 +30,38 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationRes
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationSachPrivatResponse_Type") @XmlType(name = "SubmitApplicationSachPrivatResponse_Type", propOrder = {
"antragsantwort"
})
public class SubmitApplicationSachPrivatResponseType public class SubmitApplicationSachPrivatResponseType
extends SubmitApplicationResponseGenType extends SubmitApplicationResponseGenType
{ {
@XmlElement(name = "Antragsantwort", required = true)
protected AntragSachPrivatType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link AntragSachPrivatType }
*
*/
public AntragSachPrivatType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AntragSachPrivatType }
*
*/
public void setAntragsantwort(AntragSachPrivatType value) {
this.antragsantwort = value;
}
} }

View File

@@ -3,6 +3,7 @@ package at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.unfall;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationResponseGenType; import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationResponseGenType;
@@ -29,10 +30,38 @@ import at.vvo.omds.types.omds3Types.r1_5_0.on2antrag.common.SubmitApplicationRes
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationUnfallResponse_Type") @XmlType(name = "SubmitApplicationUnfallResponse_Type", propOrder = {
"antragsantwort"
})
public class SubmitApplicationUnfallResponseType public class SubmitApplicationUnfallResponseType
extends SubmitApplicationResponseGenType extends SubmitApplicationResponseGenType
{ {
@XmlElement(name = "Antragsantwort", required = true)
protected SpezAntragUnfallType antragsantwort;
/**
* Ruft den Wert der antragsantwort-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragUnfallType }
*
*/
public SpezAntragUnfallType getAntragsantwort() {
return antragsantwort;
}
/**
* Legt den Wert der antragsantwort-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragUnfallType }
*
*/
public void setAntragsantwort(SpezAntragUnfallType value) {
this.antragsantwort = value;
}
} }

View File

@@ -63,8 +63,8 @@ public class ChangeCommunicationObjectRequestType
protected ObjektIdType objektId; protected ObjektIdType objektId;
@XmlElementRefs({ @XmlElementRefs({
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", 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-4-0.on4partner", type = JAXBElement.class), @XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class) @XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class)
}) })
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung; protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
@XmlElement(name = "WirksamtkeitAb", required = true) @XmlElement(name = "WirksamtkeitAb", required = true)

View File

@@ -342,21 +342,7 @@
<xsd:documentation>Abstrakter Response der Antragsüberleitung</xsd:documentation> <xsd:documentation>Abstrakter Response der Antragsüberleitung</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="SubmitApplicationResponse_Type"> <xsd:extension base="SubmitApplicationResponse_Type"/>
<xsd:sequence>
<xsd:element name="Antragstatus" type="cst:SubmitApplicationStatus_Type">
<xsd:annotation>
<xsd:documentation>aktueller Status des eingespielten Antrages</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Antragsnummer" type="cst:ObjektId_Type"/>
<xsd:element name="Dokumente" type="cst:DokumentInfo_Type" 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:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="ZusaetzlicheAntragsdaten_Type" abstract="true"> <xsd:complexType name="ZusaetzlicheAntragsdaten_Type" abstract="true">

View File

@@ -414,6 +414,11 @@
<xsd:documentation>Einbruchdiebstahl</xsd:documentation> <xsd:documentation>Einbruchdiebstahl</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="EK"><!-- auf Anforderung Generali, keine OMDS 2 Sparte -->
<xsd:annotation>
<xsd:documentation>Elektronik</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="FE"> <xsd:enumeration value="FE">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Feuer</xsd:documentation> <xsd:documentation>Feuer</xsd:documentation>