Umstellung Version 1.6 auf die aktuelle OMDS 2 Version: omds213-00.xsd

This commit is contained in:
2021-04-15 11:59:28 +02:00
parent 3524ac5554
commit 309ad27f4b
64 changed files with 2913 additions and 178 deletions

View File

@@ -49,6 +49,10 @@ public class ADRESSEType {
protected String hausnr; protected String hausnr;
@XmlAttribute(name = "Zusatz") @XmlAttribute(name = "Zusatz")
protected String zusatz; protected String zusatz;
@XmlAttribute(name = "AdressID_VU")
protected String adressIDVU;
@XmlAttribute(name = "AdressID_Makler")
protected String adressIDMakler;
/** /**
* Ruft den Wert der pac-Eigenschaft ab. * Ruft den Wert der pac-Eigenschaft ab.
@@ -218,4 +222,52 @@ public class ADRESSEType {
this.zusatz = value; this.zusatz = value;
} }
/**
* Ruft den Wert der adressIDVU-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDVU() {
return adressIDVU;
}
/**
* Legt den Wert der adressIDVU-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDVU(String value) {
this.adressIDVU = value;
}
/**
* Ruft den Wert der adressIDMakler-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDMakler() {
return adressIDMakler;
}
/**
* Legt den Wert der adressIDMakler-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDMakler(String value) {
this.adressIDMakler = value;
}
} }

View File

@@ -36,6 +36,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
* <attribute name="Gebdat" type="{urn:omds20}Datum" /> * <attribute name="Gebdat" type="{urn:omds20}Datum" />
* <attribute name="LandesCd" use="required" type="{urn:omds20}LandesCd_Type" /> * <attribute name="LandesCd" use="required" type="{urn:omds20}LandesCd_Type" />
* <attribute name="FamilienstandCd" use="required" type="{urn:omds20}FamilienstandCd_Type" /> * <attribute name="FamilienstandCd" use="required" type="{urn:omds20}FamilienstandCd_Type" />
* <attribute name="PersonID_VU" type="{urn:omds20}PersonID_Type" />
* <attribute name="PersonID_Makler" type="{urn:omds20}PersonID_Type" />
* </restriction> * </restriction>
* </complexContent> * </complexContent>
* </complexType> * </complexType>
@@ -59,6 +61,10 @@ public class NATUERLICHEPERSONType {
protected String landesCd; protected String landesCd;
@XmlAttribute(name = "FamilienstandCd", required = true) @XmlAttribute(name = "FamilienstandCd", required = true)
protected String familienstandCd; protected String familienstandCd;
@XmlAttribute(name = "PersonID_VU")
protected String personIDVU;
@XmlAttribute(name = "PersonID_Makler")
protected String personIDMakler;
/** /**
* Ruft den Wert der familienname-Eigenschaft ab. * Ruft den Wert der familienname-Eigenschaft ab.
@@ -204,4 +210,52 @@ public class NATUERLICHEPERSONType {
this.familienstandCd = value; this.familienstandCd = value;
} }
/**
* Ruft den Wert der personIDVU-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonIDVU() {
return personIDVU;
}
/**
* Legt den Wert der personIDVU-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonIDVU(String value) {
this.personIDVU = value;
}
/**
* Ruft den Wert der personIDMakler-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonIDMakler() {
return personIDMakler;
}
/**
* Legt den Wert der personIDMakler-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonIDMakler(String value) {
this.personIDMakler = value;
}
} }

View File

@@ -38,7 +38,13 @@ import javax.xml.datatype.XMLGregorianCalendar;
* <attribute name="PaketInhCd" use="required" type="{urn:omds20}PaketInhCd_Type" /> * <attribute name="PaketInhCd" use="required" type="{urn:omds20}PaketInhCd_Type" />
* <attribute name="PaketUmfCd" use="required" type="{urn:omds20}PaketUmfCd_Type" /> * <attribute name="PaketUmfCd" use="required" type="{urn:omds20}PaketUmfCd_Type" />
* <attribute name="OMDSVersion" use="required" type="{urn:omds20}OMDSVersion_Type" /> * <attribute name="OMDSVersion" use="required" type="{urn:omds20}OMDSVersion_Type" />
* <attribute name="VUVersion" type="{urn:omds20}OMDSVersion_Type" /> * <attribute name="VUVersion">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="6"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="DVRNrAbs" use="required"> * <attribute name="DVRNrAbs" use="required">
* <simpleType> * <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string">

View File

@@ -93,6 +93,10 @@ public class PERSONType {
protected String hausnr; protected String hausnr;
@XmlAttribute(name = "Zusatz") @XmlAttribute(name = "Zusatz")
protected String zusatz; protected String zusatz;
@XmlAttribute(name = "AdressID_VU")
protected String adressIDVU;
@XmlAttribute(name = "AdressID_Makler")
protected String adressIDMakler;
/** /**
* Ruft den Wert der natuerlicheperson-Eigenschaft ab. * Ruft den Wert der natuerlicheperson-Eigenschaft ab.
@@ -393,4 +397,52 @@ public class PERSONType {
this.zusatz = value; this.zusatz = value;
} }
/**
* Ruft den Wert der adressIDVU-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDVU() {
return adressIDVU;
}
/**
* Legt den Wert der adressIDVU-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDVU(String value) {
this.adressIDVU = value;
}
/**
* Ruft den Wert der adressIDMakler-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDMakler() {
return adressIDMakler;
}
/**
* Legt den Wert der adressIDMakler-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDMakler(String value) {
this.adressIDMakler = value;
}
} }

View File

@@ -664,21 +664,21 @@ public enum RisikoArtCdType {
M_07("M07"), M_07("M07"),
/** /**
* Privat Rechtschutz * Privat Rechtsschutz
* *
*/ */
@XmlEnumValue("R01") @XmlEnumValue("R01")
R_01("R01"), R_01("R01"),
/** /**
* Kfz-Rechtschutz * Kfz-Rechtsschutz
* *
*/ */
@XmlEnumValue("R02") @XmlEnumValue("R02")
R_02("R02"), R_02("R02"),
/** /**
* Firmen-Rechtschutz * Firmen-Rechtsschutz
* *
*/ */
@XmlEnumValue("R03") @XmlEnumValue("R03")

View File

@@ -33,6 +33,8 @@ import javax.xml.bind.annotation.XmlType;
* </attribute> * </attribute>
* <attribute name="SonstPersArtCd" use="required" type="{urn:omds20}SonstPersArtCd_Type" /> * <attribute name="SonstPersArtCd" use="required" type="{urn:omds20}SonstPersArtCd_Type" />
* <attribute name="GesFormCd" type="{urn:omds20}GesFormCd_Type" /> * <attribute name="GesFormCd" type="{urn:omds20}GesFormCd_Type" />
* <attribute name="PersonID_VU" type="{urn:omds20}PersonID_Type" />
* <attribute name="PersonID_Makler" type="{urn:omds20}PersonID_Type" />
* </restriction> * </restriction>
* </complexContent> * </complexContent>
* </complexType> * </complexType>
@@ -52,6 +54,10 @@ public class SONSTIGEPERSONType {
protected String sonstPersArtCd; protected String sonstPersArtCd;
@XmlAttribute(name = "GesFormCd") @XmlAttribute(name = "GesFormCd")
protected GesFormCdType gesFormCd; protected GesFormCdType gesFormCd;
@XmlAttribute(name = "PersonID_VU")
protected String personIDVU;
@XmlAttribute(name = "PersonID_Makler")
protected String personIDMakler;
/** /**
* Ruft den Wert der name-Eigenschaft ab. * Ruft den Wert der name-Eigenschaft ab.
@@ -149,4 +155,52 @@ public class SONSTIGEPERSONType {
this.gesFormCd = value; this.gesFormCd = value;
} }
/**
* Ruft den Wert der personIDVU-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonIDVU() {
return personIDVU;
}
/**
* Legt den Wert der personIDVU-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonIDVU(String value) {
this.personIDVU = value;
}
/**
* Ruft den Wert der personIDMakler-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPersonIDMakler() {
return personIDMakler;
}
/**
* Legt den Wert der personIDMakler-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPersonIDMakler(String value) {
this.personIDMakler = value;
}
} }

View File

@@ -82,6 +82,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
* <attribute name="SondervereinbarungKz" type="{urn:omds20}Entsch3_Type" /> * <attribute name="SondervereinbarungKz" type="{urn:omds20}Entsch3_Type" />
* <attribute name="PraemieNtoSp" use="required" type="{urn:omds20}decimal" /> * <attribute name="PraemieNtoSp" use="required" type="{urn:omds20}decimal" />
* <attribute name="PraemieBtoSp" use="required" type="{urn:omds20}decimal" /> * <attribute name="PraemieBtoSp" use="required" type="{urn:omds20}decimal" />
* <attribute name="nmoKuendDat" type="{urn:omds20}Datum" />
* </restriction> * </restriction>
* </complexContent> * </complexContent>
* </complexType> * </complexType>
@@ -144,6 +145,8 @@ public class SPARTEType {
protected BigDecimal praemieNtoSp; protected BigDecimal praemieNtoSp;
@XmlAttribute(name = "PraemieBtoSp", required = true) @XmlAttribute(name = "PraemieBtoSp", required = true)
protected BigDecimal praemieBtoSp; protected BigDecimal praemieBtoSp;
@XmlAttribute(name = "nmoKuendDat")
protected XMLGregorianCalendar nmoKuendDat;
/** /**
* Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property. * Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property.
@@ -553,4 +556,28 @@ public class SPARTEType {
this.praemieBtoSp = value; this.praemieBtoSp = value;
} }
/**
* Ruft den Wert der nmoKuendDat-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getNmoKuendDat() {
return nmoKuendDat;
}
/**
* Legt den Wert der nmoKuendDat-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setNmoKuendDat(XMLGregorianCalendar value) {
this.nmoKuendDat = value;
}
} }

View File

@@ -124,6 +124,10 @@ public class VERSSACHEType {
protected String hausnr; protected String hausnr;
@XmlAttribute(name = "Zusatz") @XmlAttribute(name = "Zusatz")
protected String zusatz; protected String zusatz;
@XmlAttribute(name = "AdressID_VU")
protected String adressIDVU;
@XmlAttribute(name = "AdressID_Makler")
protected String adressIDMakler;
/** /**
* Gets the value of the elObjektdaten property. * Gets the value of the elObjektdaten property.
@@ -687,4 +691,52 @@ public class VERSSACHEType {
this.zusatz = value; this.zusatz = value;
} }
/**
* Ruft den Wert der adressIDVU-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDVU() {
return adressIDVU;
}
/**
* Legt den Wert der adressIDVU-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDVU(String value) {
this.adressIDVU = value;
}
/**
* Ruft den Wert der adressIDMakler-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDMakler() {
return adressIDMakler;
}
/**
* Legt den Wert der adressIDMakler-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDMakler(String value) {
this.adressIDMakler = value;
}
} }

View File

@@ -54,6 +54,10 @@ public class AdresseType {
protected String hausnr; protected String hausnr;
@XmlAttribute(name = "Zusatz") @XmlAttribute(name = "Zusatz")
protected String zusatz; protected String zusatz;
@XmlAttribute(name = "AdressID_VU")
protected String adressIDVU;
@XmlAttribute(name = "AdressID_Makler")
protected String adressIDMakler;
/** /**
* Ruft den Wert der objektId-Eigenschaft ab. * Ruft den Wert der objektId-Eigenschaft ab.
@@ -247,4 +251,52 @@ public class AdresseType {
this.zusatz = value; this.zusatz = value;
} }
/**
* Ruft den Wert der adressIDVU-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDVU() {
return adressIDVU;
}
/**
* Legt den Wert der adressIDVU-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDVU(String value) {
this.adressIDVU = value;
}
/**
* Ruft den Wert der adressIDMakler-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAdressIDMakler() {
return adressIDMakler;
}
/**
* Legt den Wert der adressIDMakler-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAdressIDMakler(String value) {
this.adressIDMakler = value;
}
} }

View File

@@ -0,0 +1,30 @@
package at.vvo.omds.types.omds3Types.r1_6_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java-Klasse für Autorisierung complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Autorisierung"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Autorisierung")
public abstract class Autorisierung {
}

View File

@@ -12,7 +12,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on1basis.CollectSignaturesRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetStateSignaturesRequest; import at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetStateSignaturesRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.GetApplicationDocumentRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.GetApplicationDocumentRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder.FinderRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder.FinderRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionRhythmChangeRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionRhythmInfoRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.GetPoliciesOfPartnerRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.GetPoliciesOfPartnerRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.SetMailingAddressRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.SetMailingAddressRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on4partner.AddCommunicationObjectRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on4partner.AddCommunicationObjectRequestType;
@@ -70,7 +72,6 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimRequestType;
DeleteCommunicationObjectRequestType.class, DeleteCommunicationObjectRequestType.class,
GetPoliciesOfPartnerRequestType.class, GetPoliciesOfPartnerRequestType.class,
SetMailingAddressRequestType.class, SetMailingAddressRequestType.class,
CollectionChangeRequestType.class,
CommonSearchRequestType.class, CommonSearchRequestType.class,
GetApplicationDocumentRequestType.class, GetApplicationDocumentRequestType.class,
CheckClaimRequestType.class, CheckClaimRequestType.class,
@@ -79,6 +80,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimRequestType;
FinderRequestType.class, FinderRequestType.class,
GetStateSignaturesRequest.class, GetStateSignaturesRequest.class,
CollectSignaturesRequest.class, CollectSignaturesRequest.class,
CollectionRhythmChangeRequest.class,
CollectionRhythmInfoRequest.class,
CollectionChangeRequest.class,
CommonProcessRequestType.class CommonProcessRequestType.class
}) })
public abstract class CommonRequestType { public abstract class CommonRequestType {

View File

@@ -14,7 +14,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on1basis.CollectSignaturesResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetStateSignaturesResponse; import at.vvo.omds.types.omds3Types.r1_6_0.on1basis.GetStateSignaturesResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.GetApplicationDocumentResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.GetApplicationDocumentResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder.FinderResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder.FinderResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionRhythmChangeResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionRhythmInfoResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.GetPoliciesOfPartnerResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.GetPoliciesOfPartnerResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.SetMailingAddressResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.SetMailingAddressResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on4partner.AddCommunicationObjectResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on4partner.AddCommunicationObjectResponseType;
@@ -69,7 +71,6 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType;
DeleteCommunicationObjectResponseType.class, DeleteCommunicationObjectResponseType.class,
GetPoliciesOfPartnerResponseType.class, GetPoliciesOfPartnerResponseType.class,
SetMailingAddressResponseType.class, SetMailingAddressResponseType.class,
CollectionChangeResponseType.class,
CommonSearchResponseType.class, CommonSearchResponseType.class,
GetApplicationDocumentResponseType.class, GetApplicationDocumentResponseType.class,
CheckClaimResponseType.class, CheckClaimResponseType.class,
@@ -78,6 +79,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType;
FinderResponseType.class, FinderResponseType.class,
GetStateSignaturesResponse.class, GetStateSignaturesResponse.class,
CollectSignaturesResponse.class, CollectSignaturesResponse.class,
CollectionRhythmChangeResponse.class,
CollectionRhythmInfoResponse.class,
CollectionChangeResponse.class,
ChangeCommunicationObjectResponseType.class, ChangeCommunicationObjectResponseType.class,
CommonProcessResponseType.class CommonProcessResponseType.class
}) })

View File

@@ -6,7 +6,6 @@ import java.util.List;
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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
@@ -26,7 +25,14 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="ISIN" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/&gt; * &lt;element name="ISIN" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/&gt;
* &lt;element name="WKN" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/&gt; * &lt;element name="WKN" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/&gt;
* &lt;/choice&gt; * &lt;/choice&gt;
* &lt;element name="Prozentanteil" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/&gt; * &lt;element name="Prozentanteil" minOccurs="0"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}float"&gt;
* &lt;minInclusive value="0"/&gt;
* &lt;maxInclusive value="100"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="ZusaetzlicheFondsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheFondsdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt; * &lt;element name="ZusaetzlicheFondsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheFondsdaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/restriction&gt; * &lt;/restriction&gt;
@@ -50,8 +56,7 @@ public class ElementFondsauswahlType {
@XmlElement(name = "WKN") @XmlElement(name = "WKN")
protected AttributEnumType wkn; protected AttributEnumType wkn;
@XmlElement(name = "Prozentanteil") @XmlElement(name = "Prozentanteil")
@XmlSchemaType(name = "unsignedByte") protected Float prozentanteil;
protected Short prozentanteil;
@XmlElement(name = "ZusaetzlicheFondsdaten") @XmlElement(name = "ZusaetzlicheFondsdaten")
protected List<ZusaetzlicheFondsdatenType> zusaetzlicheFondsdaten; protected List<ZusaetzlicheFondsdatenType> zusaetzlicheFondsdaten;
@@ -108,10 +113,10 @@ public class ElementFondsauswahlType {
* *
* @return * @return
* possible object is * possible object is
* {@link Short } * {@link Float }
* *
*/ */
public Short getProzentanteil() { public Float getProzentanteil() {
return prozentanteil; return prozentanteil;
} }
@@ -120,10 +125,10 @@ public class ElementFondsauswahlType {
* *
* @param value * @param value
* allowed object is * allowed object is
* {@link Short } * {@link Float }
* *
*/ */
public void setProzentanteil(Short value) { public void setProzentanteil(Float value) {
this.prozentanteil = value; this.prozentanteil = value;
} }

View File

@@ -106,6 +106,7 @@ import at.vvo.omds.types.omds2Types.v2_12.Entsch2Type;
* &lt;attribute name="Sonderausstattung" type="{urn:omds20}decimal" /&gt; * &lt;attribute name="Sonderausstattung" type="{urn:omds20}decimal" /&gt;
* &lt;attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" /&gt; * &lt;attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" /&gt;
* &lt;attribute name="ZulassdatHalter" type="{urn:omds20}Datum" /&gt; * &lt;attribute name="ZulassdatHalter" type="{urn:omds20}Datum" /&gt;
* &lt;attribute name="AufbauNatC" type="{urn:omds3CommonServiceTypes-1-1-0}AufbauNatC_Type" /&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
* &lt;/complexType&gt; * &lt;/complexType&gt;
@@ -184,6 +185,8 @@ public class FahrzeugType
protected Integer eigengewicht; protected Integer eigengewicht;
@XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0") @XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0")
protected XMLGregorianCalendar zulassdatHalter; protected XMLGregorianCalendar zulassdatHalter;
@XmlAttribute(name = "AufbauNatC", namespace = "urn:omds3CommonServiceTypes-1-1-0")
protected String aufbauNatC;
/** /**
* Ruft den Wert der zulassungsdaten-Eigenschaft ab. * Ruft den Wert der zulassungsdaten-Eigenschaft ab.
@@ -833,4 +836,28 @@ public class FahrzeugType
this.zulassdatHalter = value; this.zulassdatHalter = value;
} }
/**
* Ruft den Wert der aufbauNatC-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAufbauNatC() {
return aufbauNatC;
}
/**
* Legt den Wert der aufbauNatC-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAufbauNatC(String value) {
this.aufbauNatC = value;
}
} }

View File

@@ -53,6 +53,22 @@ public class ObjectFactory {
return new ZahlwegType(); return new ZahlwegType();
} }
/**
* Create an instance of {@link ProzessDokumentAnforderungType }
*
*/
public ProzessDokumentAnforderungType createProzessDokumentAnforderungType() {
return new ProzessDokumentAnforderungType();
}
/**
* Create an instance of {@link ProzessDokumentType }
*
*/
public ProzessDokumentType createProzessDokumentType() {
return new ProzessDokumentType();
}
/** /**
* Create an instance of {@link TechnicalKeyValueType } * Create an instance of {@link TechnicalKeyValueType }
* *
@@ -725,6 +741,30 @@ public class ObjectFactory {
return new ZahlwegType.Kundenkonto(); return new ZahlwegType.Kundenkonto();
} }
/**
* Create an instance of {@link ProzessDokumentAnforderungType.Unterschriften }
*
*/
public ProzessDokumentAnforderungType.Unterschriften createProzessDokumentAnforderungTypeUnterschriften() {
return new ProzessDokumentAnforderungType.Unterschriften();
}
/**
* Create an instance of {@link ProzessDokumentType.Unterschriften }
*
*/
public ProzessDokumentType.Unterschriften createProzessDokumentTypeUnterschriften() {
return new ProzessDokumentType.Unterschriften();
}
/**
* Create an instance of {@link ProzessDokumentType.DokData }
*
*/
public ProzessDokumentType.DokData createProzessDokumentTypeDokData() {
return new ProzessDokumentType.DokData();
}
/** /**
* Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}} * Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}}
* *

View File

@@ -0,0 +1,334 @@
package at.vvo.omds.types.omds3Types.r1_6_0.common;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Dokument als Teil eines Geschäftsfalls
*
* <p>Java-Klasse für ProzessDokumentAnforderung_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ProzessDokumentAnforderung_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/&gt;
* &lt;element name="DateiBeschreibung"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
* &lt;maxLength value="200"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="DateiType" type="{urn:omds3CommonServiceTypes-1-1-0}TypeDateianhang_Type"/&gt;
* &lt;element name="Unterschriften" maxOccurs="unbounded" minOccurs="0"&gt;
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/&gt;
* &lt;element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ZulaessigeUnterschritenarten" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* &lt;/element&gt;
* &lt;element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;element name="ZulaessigeMimetypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProzessDokumentAnforderung_Type", propOrder = {
"objektId",
"dateiBeschreibung",
"dateiType",
"unterschriften",
"docUploadRequired",
"zulaessigeMimetypes"
})
public class ProzessDokumentAnforderungType {
@XmlElement(name = "ObjektId", required = true)
protected ObjektIdType objektId;
@XmlElement(name = "DateiBeschreibung", required = true)
protected String dateiBeschreibung;
@XmlElement(name = "DateiType")
protected int dateiType;
@XmlElement(name = "Unterschriften")
protected List<ProzessDokumentAnforderungType.Unterschriften> unterschriften;
@XmlElement(name = "DocUploadRequired")
protected boolean docUploadRequired;
@XmlElement(name = "ZulaessigeMimetypes", required = true)
protected List<String> zulaessigeMimetypes;
/**
* Ruft den Wert der objektId-Eigenschaft ab.
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getObjektId() {
return objektId;
}
/**
* Legt den Wert der objektId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setObjektId(ObjektIdType value) {
this.objektId = value;
}
/**
* Ruft den Wert der dateiBeschreibung-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDateiBeschreibung() {
return dateiBeschreibung;
}
/**
* Legt den Wert der dateiBeschreibung-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDateiBeschreibung(String value) {
this.dateiBeschreibung = value;
}
/**
* Ruft den Wert der dateiType-Eigenschaft ab.
*
*/
public int getDateiType() {
return dateiType;
}
/**
* Legt den Wert der dateiType-Eigenschaft fest.
*
*/
public void setDateiType(int value) {
this.dateiType = value;
}
/**
* Gets the value of the unterschriften 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 unterschriften property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getUnterschriften().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ProzessDokumentAnforderungType.Unterschriften }
*
*
*/
public List<ProzessDokumentAnforderungType.Unterschriften> getUnterschriften() {
if (unterschriften == null) {
unterschriften = new ArrayList<ProzessDokumentAnforderungType.Unterschriften>();
}
return this.unterschriften;
}
/**
* Ruft den Wert der docUploadRequired-Eigenschaft ab.
*
*/
public boolean isDocUploadRequired() {
return docUploadRequired;
}
/**
* Legt den Wert der docUploadRequired-Eigenschaft fest.
*
*/
public void setDocUploadRequired(boolean value) {
this.docUploadRequired = value;
}
/**
* Gets the value of the zulaessigeMimetypes 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 zulaessigeMimetypes property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZulaessigeMimetypes().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getZulaessigeMimetypes() {
if (zulaessigeMimetypes == null) {
zulaessigeMimetypes = new ArrayList<String>();
}
return this.zulaessigeMimetypes;
}
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/&gt;
* &lt;element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ZulaessigeUnterschritenarten" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"person",
"rolle",
"zulaessigeUnterschritenarten"
})
public static class Unterschriften {
@XmlElement(name = "Person", required = true)
protected PersonType person;
@XmlElement(name = "Rolle", required = true)
protected String rolle;
@XmlElement(name = "ZulaessigeUnterschritenarten", required = true)
protected List<Autorisierung> zulaessigeUnterschritenarten;
/**
* Ruft den Wert der person-Eigenschaft ab.
*
* @return
* possible object is
* {@link PersonType }
*
*/
public PersonType getPerson() {
return person;
}
/**
* Legt den Wert der person-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PersonType }
*
*/
public void setPerson(PersonType value) {
this.person = value;
}
/**
* Ruft den Wert der rolle-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRolle() {
return rolle;
}
/**
* Legt den Wert der rolle-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRolle(String value) {
this.rolle = value;
}
/**
* Gets the value of the zulaessigeUnterschritenarten 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 zulaessigeUnterschritenarten property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZulaessigeUnterschritenarten().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Autorisierung }
*
*
*/
public List<Autorisierung> getZulaessigeUnterschritenarten() {
if (zulaessigeUnterschritenarten == null) {
zulaessigeUnterschritenarten = new ArrayList<Autorisierung>();
}
return this.zulaessigeUnterschritenarten;
}
}
}

View File

@@ -0,0 +1,421 @@
package at.vvo.omds.types.omds3Types.r1_6_0.common;
import java.util.ArrayList;
import java.util.List;
import javax.activation.DataHandler;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlMimeType;
import javax.xml.bind.annotation.XmlType;
/**
* Dokument als Teil eines Geschäftsfalls
*
* <p>Java-Klasse für ProzessDokument_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ProzessDokument_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/&gt;
* &lt;element name="DateiBeschreibung" minOccurs="0"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
* &lt;maxLength value="200"/&gt;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="DateiType" type="{urn:omds3CommonServiceTypes-1-1-0}TypeDateianhang_Type"/&gt;
* &lt;element name="Unterschriften" maxOccurs="unbounded" minOccurs="0"&gt;
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/&gt;
* &lt;element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Unterschriftenart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* &lt;/element&gt;
* &lt;element name="DokumentHinterlegt" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;element name="DokData" minOccurs="0"&gt;
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/&gt;
* &lt;element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* &lt;/element&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProzessDokument_Type", propOrder = {
"objektId",
"dateiBeschreibung",
"dateiType",
"unterschriften",
"dokumentHinterlegt",
"dokData"
})
public class ProzessDokumentType {
@XmlElement(name = "ObjektId", required = true)
protected ObjektIdType objektId;
@XmlElement(name = "DateiBeschreibung")
protected String dateiBeschreibung;
@XmlElement(name = "DateiType")
protected int dateiType;
@XmlElement(name = "Unterschriften")
protected List<ProzessDokumentType.Unterschriften> unterschriften;
@XmlElement(name = "DokumentHinterlegt")
protected boolean dokumentHinterlegt;
@XmlElement(name = "DokData")
protected ProzessDokumentType.DokData dokData;
/**
* Ruft den Wert der objektId-Eigenschaft ab.
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getObjektId() {
return objektId;
}
/**
* Legt den Wert der objektId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setObjektId(ObjektIdType value) {
this.objektId = value;
}
/**
* Ruft den Wert der dateiBeschreibung-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDateiBeschreibung() {
return dateiBeschreibung;
}
/**
* Legt den Wert der dateiBeschreibung-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDateiBeschreibung(String value) {
this.dateiBeschreibung = value;
}
/**
* Ruft den Wert der dateiType-Eigenschaft ab.
*
*/
public int getDateiType() {
return dateiType;
}
/**
* Legt den Wert der dateiType-Eigenschaft fest.
*
*/
public void setDateiType(int value) {
this.dateiType = value;
}
/**
* Gets the value of the unterschriften 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 unterschriften property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getUnterschriften().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ProzessDokumentType.Unterschriften }
*
*
*/
public List<ProzessDokumentType.Unterschriften> getUnterschriften() {
if (unterschriften == null) {
unterschriften = new ArrayList<ProzessDokumentType.Unterschriften>();
}
return this.unterschriften;
}
/**
* Ruft den Wert der dokumentHinterlegt-Eigenschaft ab.
*
*/
public boolean isDokumentHinterlegt() {
return dokumentHinterlegt;
}
/**
* Legt den Wert der dokumentHinterlegt-Eigenschaft fest.
*
*/
public void setDokumentHinterlegt(boolean value) {
this.dokumentHinterlegt = value;
}
/**
* Ruft den Wert der dokData-Eigenschaft ab.
*
* @return
* possible object is
* {@link ProzessDokumentType.DokData }
*
*/
public ProzessDokumentType.DokData getDokData() {
return dokData;
}
/**
* Legt den Wert der dokData-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ProzessDokumentType.DokData }
*
*/
public void setDokData(ProzessDokumentType.DokData value) {
this.dokData = 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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/&gt;
* &lt;element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"dateiData",
"mimetype"
})
public static class DokData {
@XmlElement(name = "DateiData", required = true)
@XmlMimeType("application/octet-stream")
protected DataHandler dateiData;
@XmlElement(name = "Mimetype", required = true)
protected String mimetype;
/**
* Ruft den Wert der dateiData-Eigenschaft ab.
*
* @return
* possible object is
* {@link DataHandler }
*
*/
public DataHandler getDateiData() {
return dateiData;
}
/**
* Legt den Wert der dateiData-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link DataHandler }
*
*/
public void setDateiData(DataHandler value) {
this.dateiData = value;
}
/**
* Ruft den Wert der mimetype-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMimetype() {
return mimetype;
}
/**
* Legt den Wert der mimetype-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMimetype(String value) {
this.mimetype = value;
}
}
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/&gt;
* &lt;element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="Unterschriftenart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"person",
"rolle",
"unterschriftenart"
})
public static class Unterschriften {
@XmlElement(name = "Person", required = true)
protected PersonType person;
@XmlElement(name = "Rolle", required = true)
protected String rolle;
@XmlElement(name = "Unterschriftenart", required = true)
protected Autorisierung unterschriftenart;
/**
* Ruft den Wert der person-Eigenschaft ab.
*
* @return
* possible object is
* {@link PersonType }
*
*/
public PersonType getPerson() {
return person;
}
/**
* Legt den Wert der person-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PersonType }
*
*/
public void setPerson(PersonType value) {
this.person = value;
}
/**
* Ruft den Wert der rolle-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRolle() {
return rolle;
}
/**
* Legt den Wert der rolle-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRolle(String value) {
this.rolle = value;
}
/**
* Ruft den Wert der unterschriftenart-Eigenschaft ab.
*
* @return
* possible object is
* {@link Autorisierung }
*
*/
public Autorisierung getUnterschriftenart() {
return unterschriftenart;
}
/**
* Legt den Wert der unterschriftenart-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Autorisierung }
*
*/
public void setUnterschriftenart(Autorisierung value) {
this.unterschriftenart = value;
}
}
}

View File

@@ -29,7 +29,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/&gt; * &lt;element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/&gt;
* &lt;element name="Kontaktinformation" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}Kontaktinformation_Type" maxOccurs="unbounded"/&gt; * &lt;element name="Autorisierungsart" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}SpezifikationAutorisierung_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/restriction&gt; * &lt;/restriction&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -123,7 +123,7 @@ public class CollectSignaturesRequest
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/&gt; * &lt;element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/&gt;
* &lt;element name="Kontaktinformation" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}Kontaktinformation_Type" maxOccurs="unbounded"/&gt; * &lt;element name="Autorisierungsart" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}SpezifikationAutorisierung_Type"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/restriction&gt; * &lt;/restriction&gt;
* &lt;/complexContent&gt; * &lt;/complexContent&gt;
@@ -135,14 +135,14 @@ public class CollectSignaturesRequest
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { @XmlType(name = "", propOrder = {
"objektId", "objektId",
"kontaktinformation" "autorisierungsart"
}) })
public static class Personen { public static class Personen {
@XmlElement(name = "ObjektId", required = true) @XmlElement(name = "ObjektId", required = true)
protected ObjektIdType objektId; protected ObjektIdType objektId;
@XmlElement(name = "Kontaktinformation", required = true) @XmlElement(name = "Autorisierungsart", required = true)
protected List<KontaktinformationType> kontaktinformation; protected SpezifikationAutorisierungType autorisierungsart;
/** /**
* Ruft den Wert der objektId-Eigenschaft ab. * Ruft den Wert der objektId-Eigenschaft ab.
@@ -169,32 +169,27 @@ public class CollectSignaturesRequest
} }
/** /**
* Gets the value of the kontaktinformation property. * Ruft den Wert der autorisierungsart-Eigenschaft ab.
*
* <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 kontaktinformation property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getKontaktinformation().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link KontaktinformationType }
*
* *
* @return
* possible object is
* {@link SpezifikationAutorisierungType }
*
*/ */
public List<KontaktinformationType> getKontaktinformation() { public SpezifikationAutorisierungType getAutorisierungsart() {
if (kontaktinformation == null) { return autorisierungsart;
kontaktinformation = new ArrayList<KontaktinformationType>(); }
}
return this.kontaktinformation; /**
* Legt den Wert der autorisierungsart-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezifikationAutorisierungType }
*
*/
public void setAutorisierungsart(SpezifikationAutorisierungType value) {
this.autorisierungsart = value;
} }
} }

View File

@@ -41,7 +41,8 @@ public class ObjectFactory {
private final static QName _DeclareEndpointResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareEndpointResponse"); private final static QName _DeclareEndpointResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareEndpointResponse");
private final static QName _SecurityContextTokenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "SecurityContextTokenRequest"); private final static QName _SecurityContextTokenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "SecurityContextTokenRequest");
private final static QName _SecurityContextTokenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "SecurityContextTokenResponse"); private final static QName _SecurityContextTokenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "SecurityContextTokenResponse");
private final static QName _KontaktinformationEMail_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "KontaktinformationEMail"); private final static QName _SpezifikationAutorisierungEMail_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "SpezifikationAutorisierungEMail");
private final static QName _SpezifikationAutorisierungUnterschrift_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "SpezifikationAutorisierungUnterschrift");
/** /**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on1basis * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on1basis
@@ -420,12 +421,21 @@ public class ObjectFactory {
} }
/** /**
* Create an instance of {@link JAXBElement }{@code <}{@link KontaktinformationType }{@code >}} * Create an instance of {@link JAXBElement }{@code <}{@link SpezifikationAutorisierungType }{@code >}}
* *
*/ */
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "KontaktinformationEMail") @XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "SpezifikationAutorisierungEMail")
public JAXBElement<KontaktinformationType> createKontaktinformationEMail(KontaktinformationType value) { public JAXBElement<SpezifikationAutorisierungType> createSpezifikationAutorisierungEMail(SpezifikationAutorisierungType value) {
return new JAXBElement<KontaktinformationType>(_KontaktinformationEMail_QNAME, KontaktinformationType.class, null, value); return new JAXBElement<SpezifikationAutorisierungType>(_SpezifikationAutorisierungEMail_QNAME, SpezifikationAutorisierungType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SpezifikationAutorisierungType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "SpezifikationAutorisierungUnterschrift")
public JAXBElement<SpezifikationAutorisierungType> createSpezifikationAutorisierungUnterschrift(SpezifikationAutorisierungType value) {
return new JAXBElement<SpezifikationAutorisierungType>(_SpezifikationAutorisierungUnterschrift_QNAME, SpezifikationAutorisierungType.class, null, value);
} }
} }

View File

@@ -0,0 +1,32 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on1basis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Ein abstraktes Element für die Spezifizierung einer Autorisierungsart mit welcher der Prozessschritt autorisiert werden soll
*
* <p>Java-Klasse für SpezifikationAutorisierung_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="SpezifikationAutorisierung_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpezifikationAutorisierung_Type")
public abstract class SpezifikationAutorisierungType {
}

View File

@@ -11,6 +11,7 @@ import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonProcessRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonProcessRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.DateianhangType; import at.vvo.omds.types.omds3Types.r1_6_0.common.DateianhangType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType; import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ProzessDokumentType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzRequestType;
@@ -27,6 +28,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzReq
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type"&gt; * &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
* &lt;element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/&gt; * &lt;element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="ProzessDokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/&gt; * &lt;element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt; * &lt;/sequence&gt;
* &lt;/extension&gt; * &lt;/extension&gt;
@@ -39,6 +41,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzReq
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationRequest_Type", propOrder = { @XmlType(name = "SubmitApplicationRequest_Type", propOrder = {
"dateianhaenge", "dateianhaenge",
"prozessDokumente",
"antragsnummer" "antragsnummer"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
@@ -51,6 +54,8 @@ public abstract class SubmitApplicationRequestType
@XmlElement(name = "Dateianhaenge") @XmlElement(name = "Dateianhaenge")
protected List<DateianhangType> dateianhaenge; protected List<DateianhangType> dateianhaenge;
@XmlElement(name = "ProzessDokumente")
protected List<ProzessDokumentType> prozessDokumente;
@XmlElement(name = "Antragsnummer") @XmlElement(name = "Antragsnummer")
protected ObjektIdType antragsnummer; protected ObjektIdType antragsnummer;
@@ -83,6 +88,35 @@ public abstract class SubmitApplicationRequestType
return this.dateianhaenge; return this.dateianhaenge;
} }
/**
* Gets the value of the prozessDokumente 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 prozessDokumente property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getProzessDokumente().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ProzessDokumentType }
*
*
*/
public List<ProzessDokumentType> getProzessDokumente() {
if (prozessDokumente == null) {
prozessDokumente = new ArrayList<ProzessDokumentType>();
}
return this.prozessDokumente;
}
/** /**
* Ruft den Wert der antragsnummer-Eigenschaft ab. * Ruft den Wert der antragsnummer-Eigenschaft ab.
* *

View File

@@ -41,6 +41,8 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType;
"versPersonenRefLfnr" "versPersonenRefLfnr"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
ElementarproduktSonderklasseType.class,
ElementarproduktPrivatarztType.class,
ElementarproduktWeltgarantieType.class, ElementarproduktWeltgarantieType.class,
ElementarproduktPraemienrueckgewaehrType.class, ElementarproduktPraemienrueckgewaehrType.class,
ElementarproduktReiseversicherungType.class, ElementarproduktReiseversicherungType.class,

View File

@@ -0,0 +1,94 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Elementarprodukt
*
* <p>Java-Klasse für ElementarproduktPrivatarzt_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ElementarproduktPrivatarzt_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ElementarproduktKranken_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Jahreslimit" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
* &lt;element name="AlternativeBehandlungen" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ElementarproduktPrivatarzt_Type", propOrder = {
"jahreslimit",
"alternativeBehandlungen"
})
public class ElementarproduktPrivatarztType
extends ElementarproduktKrankenType
{
@XmlElement(name = "Jahreslimit", required = true)
protected Object jahreslimit;
@XmlElement(name = "AlternativeBehandlungen", required = true)
protected Object alternativeBehandlungen;
/**
* Ruft den Wert der jahreslimit-Eigenschaft ab.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getJahreslimit() {
return jahreslimit;
}
/**
* Legt den Wert der jahreslimit-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setJahreslimit(Object value) {
this.jahreslimit = value;
}
/**
* Ruft den Wert der alternativeBehandlungen-Eigenschaft ab.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getAlternativeBehandlungen() {
return alternativeBehandlungen;
}
/**
* Legt den Wert der alternativeBehandlungen-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setAlternativeBehandlungen(Object value) {
this.alternativeBehandlungen = value;
}
}

View File

@@ -0,0 +1,34 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Elementarprodukt
*
* <p>Java-Klasse für ElementarproduktSonderklasse_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ElementarproduktSonderklasse_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ElementarproduktKranken_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ElementarproduktSonderklasse_Type")
public class ElementarproduktSonderklasseType
extends ElementarproduktKrankenType
{
}

View File

@@ -142,19 +142,27 @@ public class ObjectFactory {
} }
/** /**
* Create an instance of {@link ProduktSonderklasseType } * Create an instance of {@link ProduktStationaerType }
* *
*/ */
public ProduktSonderklasseType createProduktSonderklasseType() { public ProduktStationaerType createProduktStationaerType() {
return new ProduktSonderklasseType(); return new ProduktStationaerType();
} }
/** /**
* Create an instance of {@link ProduktPrivatarztType } * Create an instance of {@link ProduktAmbulantType }
* *
*/ */
public ProduktPrivatarztType createProduktPrivatarztType() { public ProduktAmbulantType createProduktAmbulantType() {
return new ProduktPrivatarztType(); return new ProduktAmbulantType();
}
/**
* Create an instance of {@link ProduktZahnType }
*
*/
public ProduktZahnType createProduktZahnType() {
return new ProduktZahnType();
} }
/** /**
@@ -189,6 +197,22 @@ public class ObjectFactory {
return new ProduktAssistanceType(); return new ProduktAssistanceType();
} }
/**
* Create an instance of {@link ElementarproduktSonderklasseType }
*
*/
public ElementarproduktSonderklasseType createElementarproduktSonderklasseType() {
return new ElementarproduktSonderklasseType();
}
/**
* Create an instance of {@link ElementarproduktPrivatarztType }
*
*/
public ElementarproduktPrivatarztType createElementarproduktPrivatarztType() {
return new ElementarproduktPrivatarztType();
}
/** /**
* Create an instance of {@link ElementarproduktWeltgarantieType } * Create an instance of {@link ElementarproduktWeltgarantieType }
* *

View File

@@ -0,0 +1,34 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Produkt
*
* <p>Java-Klasse für ProduktAmbulant_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ProduktAmbulant_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktAmbulant_Type")
public class ProduktAmbulantType
extends ProduktKrankenType
{
}

View File

@@ -40,8 +40,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType;
"selbstbehalt" "selbstbehalt"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
ProduktSonderklasseType.class, ProduktStationaerType.class,
ProduktPrivatarztType.class, ProduktAmbulantType.class,
ProduktZahnType.class,
ProduktTaggeldType.class ProduktTaggeldType.class
}) })
public class ProduktKrankenType public class ProduktKrankenType

View File

@@ -0,0 +1,34 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Produkt
*
* <p>Java-Klasse für ProduktStationaer_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ProduktStationaer_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktStationaer_Type")
public class ProduktStationaerType
extends ProduktKrankenType
{
}

View File

@@ -0,0 +1,34 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Produkt
*
* <p>Java-Klasse für ProduktZahn_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="ProduktZahn_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProduktZahn_Type")
public class ProduktZahnType
extends ProduktKrankenType
{
}

View File

@@ -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 137 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3_ON2_Antrag_Leben.xsd * Zeile 137 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 1001 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3CommonServiceTypes.xsd * Zeile 1124 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_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:

View File

@@ -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 125 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3_ON2_Antrag_Leben.xsd * Zeile 125 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 1001 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3CommonServiceTypes.xsd * Zeile 1124 von file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_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:

View File

@@ -10,8 +10,6 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateRequestGenT
/** /**
* Typ des Requestobjekts für eine Berechnung Rechtsschutz
*
* <p>Java-Klasse für anonymous complex type. * <p>Java-Klasse für anonymous complex type.
* *
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.

View File

@@ -0,0 +1,192 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.DateianhangType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.PersonType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/&gt;
* &lt;element name="Inkassoadresse" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/&gt;
* &lt;element name="Zahlweg" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}Zahlweg_Type"/&gt;
* &lt;element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objektId",
"inkassoadresse",
"zahlweg",
"dateianhaenge",
"wirksamtkeitAb"
})
@XmlRootElement(name = "CollectionChangeRequest")
public class CollectionChangeRequest
extends CommonRequestType
{
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
protected ObjektIdType objektId;
@XmlElement(name = "Inkassoadresse", required = true)
protected PersonType inkassoadresse;
@XmlElement(name = "Zahlweg", required = true)
protected ZahlwegType zahlweg;
@XmlElement(name = "Dateianhaenge")
protected List<DateianhangType> dateianhaenge;
@XmlElement(name = "WirksamtkeitAb", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar wirksamtkeitAb;
/**
* Die Id des Vertrag als ObjektId (VertragsID des OMDS-Datensatzes)
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getObjektId() {
return objektId;
}
/**
* Legt den Wert der objektId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setObjektId(ObjektIdType value) {
this.objektId = value;
}
/**
* Ruft den Wert der 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 ZahlwegType }
*
*/
public ZahlwegType getZahlweg() {
return zahlweg;
}
/**
* Legt den Wert der zahlweg-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ZahlwegType }
*
*/
public void setZahlweg(ZahlwegType value) {
this.zahlweg = value;
}
/**
* Gets the value of the dateianhaenge property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the dateianhaenge property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getDateianhaenge().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link DateianhangType }
*
*
*/
public List<DateianhangType> getDateianhaenge() {
if (dateianhaenge == null) {
dateianhaenge = new ArrayList<DateianhangType>();
}
return this.dateianhaenge;
}
/**
* Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getWirksamtkeitAb() {
return wirksamtkeitAb;
}
/**
* Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setWirksamtkeitAb(XMLGregorianCalendar value) {
this.wirksamtkeitAb = value;
}
}

View File

@@ -0,0 +1,156 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.PersonType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type"&gt;
* &lt;sequence minOccurs="0"&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/&gt;
* &lt;element name="Inkassoadresse" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/&gt;
* &lt;element name="Zahlweg" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}Zahlweg_Type"/&gt;
* &lt;element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objektId",
"inkassoadresse",
"zahlweg",
"wirksamtkeitAb"
})
@XmlRootElement(name = "CollectionChangeResponse")
public class CollectionChangeResponse
extends CommonResponseType
{
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0")
protected ObjektIdType objektId;
@XmlElement(name = "Inkassoadresse")
protected PersonType inkassoadresse;
@XmlElement(name = "Zahlweg")
protected ZahlwegType zahlweg;
@XmlElement(name = "WirksamtkeitAb")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar wirksamtkeitAb;
/**
* ObjektId des Vertrags bzw. Polizzennr.
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getObjektId() {
return objektId;
}
/**
* Legt den Wert der objektId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setObjektId(ObjektIdType value) {
this.objektId = value;
}
/**
* Ruft den Wert der 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 ZahlwegType }
*
*/
public ZahlwegType getZahlweg() {
return zahlweg;
}
/**
* Legt den Wert der zahlweg-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ZahlwegType }
*
*/
public void setZahlweg(ZahlwegType value) {
this.zahlweg = value;
}
/**
* Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getWirksamtkeitAb() {
return wirksamtkeitAb;
}
/**
* Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setWirksamtkeitAb(XMLGregorianCalendar value) {
this.wirksamtkeitAb = value;
}
}

View File

@@ -0,0 +1,127 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/&gt;
* &lt;element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/&gt;
* &lt;element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objektId",
"zahlrhythmus",
"wirksamtkeitAb"
})
@XmlRootElement(name = "CollectionRhythmChangeRequest")
public class CollectionRhythmChangeRequest
extends CommonRequestType
{
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
protected ObjektIdType objektId;
@XmlElement(name = "Zahlrhythmus", required = true)
protected String zahlrhythmus;
@XmlElement(name = "WirksamtkeitAb", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar wirksamtkeitAb;
/**
* Die Id des Vertrag als ObjektId (VertragsID des OMDS-Datensatzes)
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getObjektId() {
return objektId;
}
/**
* Legt den Wert der objektId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setObjektId(ObjektIdType value) {
this.objektId = value;
}
/**
* Ruft den Wert der zahlrhythmus-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZahlrhythmus() {
return zahlrhythmus;
}
/**
* Legt den Wert der zahlrhythmus-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZahlrhythmus(String value) {
this.zahlrhythmus = value;
}
/**
* Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getWirksamtkeitAb() {
return wirksamtkeitAb;
}
/**
* Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setWirksamtkeitAb(XMLGregorianCalendar value) {
this.wirksamtkeitAb = value;
}
}

View File

@@ -0,0 +1,183 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type"&gt;
* &lt;sequence minOccurs="0"&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/&gt;
* &lt;element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/&gt;
* &lt;element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/&gt;
* &lt;element name="PraemieAlt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}PraemienInfo_Type"/&gt;
* &lt;element name="PraemieNeu" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}PraemienInfo_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objektId",
"zahlrhythmus",
"wirksamtkeitAb",
"praemieAlt",
"praemieNeu"
})
@XmlRootElement(name = "CollectionRhythmChangeResponse")
public class CollectionRhythmChangeResponse
extends CommonResponseType
{
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0")
protected ObjektIdType objektId;
@XmlElement(name = "Zahlrhythmus")
protected String zahlrhythmus;
@XmlElement(name = "WirksamtkeitAb")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar wirksamtkeitAb;
@XmlElement(name = "PraemieAlt")
protected PraemienInfoType praemieAlt;
@XmlElement(name = "PraemieNeu")
protected PraemienInfoType praemieNeu;
/**
* ObjektId des Vertrags bzw. Polizzennr.
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getObjektId() {
return objektId;
}
/**
* Legt den Wert der objektId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setObjektId(ObjektIdType value) {
this.objektId = value;
}
/**
* Ruft den Wert der zahlrhythmus-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getZahlrhythmus() {
return zahlrhythmus;
}
/**
* Legt den Wert der zahlrhythmus-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setZahlrhythmus(String value) {
this.zahlrhythmus = value;
}
/**
* Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getWirksamtkeitAb() {
return wirksamtkeitAb;
}
/**
* Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setWirksamtkeitAb(XMLGregorianCalendar value) {
this.wirksamtkeitAb = value;
}
/**
* Ruft den Wert der praemieAlt-Eigenschaft ab.
*
* @return
* possible object is
* {@link PraemienInfoType }
*
*/
public PraemienInfoType getPraemieAlt() {
return praemieAlt;
}
/**
* Legt den Wert der praemieAlt-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PraemienInfoType }
*
*/
public void setPraemieAlt(PraemienInfoType value) {
this.praemieAlt = value;
}
/**
* Ruft den Wert der praemieNeu-Eigenschaft ab.
*
* @return
* possible object is
* {@link PraemienInfoType }
*
*/
public PraemienInfoType getPraemieNeu() {
return praemieNeu;
}
/**
* Legt den Wert der praemieNeu-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PraemienInfoType }
*
*/
public void setPraemieNeu(PraemienInfoType value) {
this.praemieNeu = value;
}
}

View File

@@ -0,0 +1,68 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objektId"
})
@XmlRootElement(name = "CollectionRhythmInfoRequest")
public class CollectionRhythmInfoRequest
extends CommonRequestType
{
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
protected ObjektIdType objektId;
/**
* Die Id des Vertrag als ObjektId (VertragsID des OMDS-Datensatzes)
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getObjektId() {
return objektId;
}
/**
* Legt den Wert der objektId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setObjektId(ObjektIdType value) {
this.objektId = value;
}
}

View File

@@ -0,0 +1,134 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import at.vvo.omds.types.omds3Types.r1_6_0.common.CommonResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type"&gt;
* &lt;sequence minOccurs="0"&gt;
* &lt;element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/&gt;
* &lt;element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/&gt;
* &lt;element name="PraemienZahlrhythmus" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}PraemienInfo_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"objektId",
"wirksamtkeitAb",
"praemienZahlrhythmus"
})
@XmlRootElement(name = "CollectionRhythmInfoResponse")
public class CollectionRhythmInfoResponse
extends CommonResponseType
{
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0")
protected ObjektIdType objektId;
@XmlElement(name = "WirksamtkeitAb")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar wirksamtkeitAb;
@XmlElement(name = "PraemienZahlrhythmus")
protected List<PraemienInfoType> praemienZahlrhythmus;
/**
* ObjektId des Vertrags bzw. Polizzennr.
*
* @return
* possible object is
* {@link ObjektIdType }
*
*/
public ObjektIdType getObjektId() {
return objektId;
}
/**
* Legt den Wert der objektId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ObjektIdType }
*
*/
public void setObjektId(ObjektIdType value) {
this.objektId = value;
}
/**
* Ruft den Wert der wirksamtkeitAb-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getWirksamtkeitAb() {
return wirksamtkeitAb;
}
/**
* Legt den Wert der wirksamtkeitAb-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setWirksamtkeitAb(XMLGregorianCalendar value) {
this.wirksamtkeitAb = value;
}
/**
* Gets the value of the praemienZahlrhythmus 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 praemienZahlrhythmus property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getPraemienZahlrhythmus().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link PraemienInfoType }
*
*
*/
public List<PraemienInfoType> getPraemienZahlrhythmus() {
if (praemienZahlrhythmus == null) {
praemienZahlrhythmus = new ArrayList<PraemienInfoType>();
}
return this.praemienZahlrhythmus;
}
}

View File

@@ -28,8 +28,6 @@ public class ObjectFactory {
private final static QName _GetPoliciesOfPartnerResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "GetPoliciesOfPartnerResponse"); private final static QName _GetPoliciesOfPartnerResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "GetPoliciesOfPartnerResponse");
private final static QName _SetMailingAddressRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "SetMailingAddressRequest"); private final static QName _SetMailingAddressRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "SetMailingAddressRequest");
private final static QName _SetMailingAddressResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "SetMailingAddressResponse"); private final static QName _SetMailingAddressResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "SetMailingAddressResponse");
private final static QName _CollectionChangeRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "CollectionChangeRequest");
private final static QName _CollectionChangeResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", "CollectionChangeResponse");
/** /**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag
@@ -79,19 +77,59 @@ public class ObjectFactory {
} }
/** /**
* Create an instance of {@link CollectionChangeRequestType } * Create an instance of {@link CollectionChangeRequest }
* *
*/ */
public CollectionChangeRequestType createCollectionChangeRequestType() { public CollectionChangeRequest createCollectionChangeRequest() {
return new CollectionChangeRequestType(); return new CollectionChangeRequest();
} }
/** /**
* Create an instance of {@link CollectionChangeResponseType } * Create an instance of {@link CollectionChangeResponse }
* *
*/ */
public CollectionChangeResponseType createCollectionChangeResponseType() { public CollectionChangeResponse createCollectionChangeResponse() {
return new CollectionChangeResponseType(); return new CollectionChangeResponse();
}
/**
* Create an instance of {@link CollectionRhythmInfoRequest }
*
*/
public CollectionRhythmInfoRequest createCollectionRhythmInfoRequest() {
return new CollectionRhythmInfoRequest();
}
/**
* Create an instance of {@link CollectionRhythmInfoResponse }
*
*/
public CollectionRhythmInfoResponse createCollectionRhythmInfoResponse() {
return new CollectionRhythmInfoResponse();
}
/**
* Create an instance of {@link PraemienInfoType }
*
*/
public PraemienInfoType createPraemienInfoType() {
return new PraemienInfoType();
}
/**
* Create an instance of {@link CollectionRhythmChangeRequest }
*
*/
public CollectionRhythmChangeRequest createCollectionRhythmChangeRequest() {
return new CollectionRhythmChangeRequest();
}
/**
* Create an instance of {@link CollectionRhythmChangeResponse }
*
*/
public CollectionRhythmChangeResponse createCollectionRhythmChangeResponse() {
return new CollectionRhythmChangeResponse();
} }
/** /**
@@ -146,22 +184,4 @@ public class ObjectFactory {
return new JAXBElement<SetMailingAddressResponseType>(_SetMailingAddressResponse_QNAME, SetMailingAddressResponseType.class, null, value); return new JAXBElement<SetMailingAddressResponseType>(_SetMailingAddressResponse_QNAME, SetMailingAddressResponseType.class, null, value);
} }
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CollectionChangeRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", name = "CollectionChangeRequest")
public JAXBElement<CollectionChangeRequestType> createCollectionChangeRequest(CollectionChangeRequestType value) {
return new JAXBElement<CollectionChangeRequestType>(_CollectionChangeRequest_QNAME, CollectionChangeRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CollectionChangeResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", name = "CollectionChangeResponse")
public JAXBElement<CollectionChangeResponseType> createCollectionChangeResponse(CollectionChangeResponseType value) {
return new JAXBElement<CollectionChangeResponseType>(_CollectionChangeResponse_QNAME, CollectionChangeResponseType.class, null, value);
}
} }

View File

@@ -0,0 +1,92 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.common.PraemieType;
/**
* <p>Java-Klasse für PraemienInfo_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="PraemienInfo_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence minOccurs="0"&gt;
* &lt;element name="JahrespraemieNto" type="{urn:omds20}decimal"/&gt;
* &lt;element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PraemienInfo_Type", propOrder = {
"jahrespraemieNto",
"praemie"
})
public class PraemienInfoType {
@XmlElement(name = "JahrespraemieNto")
protected BigDecimal jahrespraemieNto;
@XmlElement(name = "Praemie")
protected PraemieType praemie;
/**
* Ruft den Wert der jahrespraemieNto-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getJahrespraemieNto() {
return jahrespraemieNto;
}
/**
* Legt den Wert der jahrespraemieNto-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setJahrespraemieNto(BigDecimal value) {
this.jahrespraemieNto = value;
}
/**
* Ruft den Wert der praemie-Eigenschaft ab.
*
* @return
* possible object is
* {@link PraemieType }
*
*/
public PraemieType getPraemie() {
return praemie;
}
/**
* Legt den Wert der praemie-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PraemieType }
*
*/
public void setPraemie(PraemieType value) {
this.praemie = value;
}
}

View File

@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true) @XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
protected ObjektIdType objektId; protected ObjektIdType objektId;
@XmlElementRefs({ @XmlElementRefs({
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", 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) @XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class)
}) })
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung; protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
@XmlElement(name = "WirksamtkeitAb", required = true) @XmlElement(name = "WirksamtkeitAb", required = true)
@@ -115,8 +115,8 @@ public class ChangeCommunicationObjectRequestType
* *
* <p> * <p>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
* {@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 >}
* *
* *

View File

@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
/** /**
* This class was generated by Apache CXF 3.2.0 * This class was generated by Apache CXF 3.2.0
* 2020-09-24T16:22:57.415+02:00 * 2021-04-15T11:54:16.275+02:00
* Generated source version: 3.2.0 * Generated source version: 3.2.0
* *
*/ */

View File

@@ -13,11 +13,10 @@ import javax.jws.WebResult;
import javax.jws.WebService; import javax.jws.WebService;
import javax.jws.soap.SOAPBinding; import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.soap.MTOM;
/** /**
* This class was generated by Apache CXF 3.2.0 * This class was generated by Apache CXF 3.2.0
* 2020-10-05T16:22:52.675+02:00 * 2021-04-15T11:54:16.192+02:00
* Generated source version: 3.2.0 * Generated source version: 3.2.0
* *
*/ */
@@ -28,8 +27,7 @@ import javax.xml.ws.soap.MTOM;
targetNamespace = "urn:omds3Services-1-4-0", targetNamespace = "urn:omds3Services-1-4-0",
wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3Services.wsdl", wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_6_0/omds3Services.wsdl",
endpointInterface = "at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType") endpointInterface = "at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType")
@MTOM(enabled = true, threshold = 1024)
public class OmdsServicePortImpl implements OmdsServicePortType { public class OmdsServicePortImpl implements OmdsServicePortType {
private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName()); private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName());
@@ -99,13 +97,13 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
} }
/* (non-Javadoc) /* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#calculateRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequestType parameters)* * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#calculateRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequest parameters)*
*/ */
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponseType calculateRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequestType parameters) throws ServiceFaultMsg { public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponse calculateRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation calculateRechtsschutz"); LOG.info("Executing operation calculateRechtsschutz");
System.out.println(parameters); System.out.println(parameters);
try { try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponseType _return = null; at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponse _return = null;
return _return; return _return;
} catch (java.lang.Exception ex) { } catch (java.lang.Exception ex) {
ex.printStackTrace(); ex.printStackTrace();
@@ -163,13 +161,13 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
} }
/* (non-Javadoc) /* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequestType parameters)* * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequest parameters)*
*/ */
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponseType createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequestType parameters) throws ServiceFaultMsg { public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponse createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation createOfferRechtsschutz"); LOG.info("Executing operation createOfferRechtsschutz");
System.out.println(parameters); System.out.println(parameters);
try { try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponseType _return = null; at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponse _return = null;
return _return; return _return;
} catch (java.lang.Exception ex) { } catch (java.lang.Exception ex) {
ex.printStackTrace(); ex.printStackTrace();
@@ -322,6 +320,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg..."); //throw new ServiceFaultMsg("ServiceFaultMsg...");
} }
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#calculateKranken(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CalculateKrankenRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CalculateKrankenRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation calculateKranken");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CalculateKrankenResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc) /* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_6_0.on4partner.DeleteCommunicationObjectRequestType parameters)* * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_6_0.on4partner.DeleteCommunicationObjectRequestType parameters)*
*/ */
@@ -434,6 +448,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg..."); //throw new ServiceFaultMsg("ServiceFaultMsg...");
} }
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#createApplicationKranken(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateApplicationKrankenRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateApplicationKrankenRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationKranken");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateApplicationKrankenResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc) /* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters)* * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters)*
*/ */
@@ -451,13 +481,13 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
} }
/* (non-Javadoc) /* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters)* * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequest parameters)*
*/ */
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters) throws ServiceFaultMsg { public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponse createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationRechtsschutz"); LOG.info("Executing operation createApplicationRechtsschutz");
System.out.println(parameters); System.out.println(parameters);
try { try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _return = null; at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _return = null;
return _return; return _return;
} catch (java.lang.Exception ex) { } catch (java.lang.Exception ex) {
ex.printStackTrace(); ex.printStackTrace();
@@ -531,13 +561,29 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
} }
/* (non-Javadoc) /* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#collectionChange(at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequestType parameters)* * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#submitApplicationKranken(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenRequest parameters)*
*/ */
public at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponseType collectionChange(at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequestType parameters) throws ServiceFaultMsg { public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenResponse submitApplicationKranken(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation submitApplicationKranken");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#collectionChange(at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponse collectionChange(at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation collectionChange"); LOG.info("Executing operation collectionChange");
System.out.println(parameters); System.out.println(parameters);
try { try {
at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponseType _return = null; at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponse _return = null;
return _return; return _return;
} catch (java.lang.Exception ex) { } catch (java.lang.Exception ex) {
ex.printStackTrace(); ex.printStackTrace();
@@ -642,6 +688,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg..."); //throw new ServiceFaultMsg("ServiceFaultMsg...");
} }
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#createOfferKranken(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateOfferKrankenRequest parameters)*
*/
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateOfferKrankenResponse createOfferKranken(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateOfferKrankenRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation createOfferKranken");
System.out.println(parameters);
try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateOfferKrankenResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc) /* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#changeCommunicationObject(at.vvo.omds.types.omds3Types.r1_6_0.on4partner.ChangeCommunicationObjectRequestType parameters)* * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#changeCommunicationObject(at.vvo.omds.types.omds3Types.r1_6_0.on4partner.ChangeCommunicationObjectRequestType parameters)*
*/ */
@@ -739,13 +801,13 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
} }
/* (non-Javadoc) /* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#submitApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType parameters)* * @see at.vvo.omds.types.omds3Types.r1_6_0.service.OmdsServicePortType#submitApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest parameters)*
*/ */
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType submitApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType parameters) throws ServiceFaultMsg { public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse submitApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest parameters) throws ServiceFaultMsg {
LOG.info("Executing operation submitApplicationRechtsschutz"); LOG.info("Executing operation submitApplicationRechtsschutz");
System.out.println(parameters); System.out.println(parameters);
try { try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType _return = null; at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse _return = null;
return _return; return _return;
} catch (java.lang.Exception ex) { } catch (java.lang.Exception ex) {
ex.printStackTrace(); ex.printStackTrace();

View File

@@ -9,12 +9,12 @@ import javax.xml.bind.annotation.XmlSeeAlso;
/** /**
* This class was generated by Apache CXF 3.2.0 * This class was generated by Apache CXF 3.2.0
* 2020-11-05T09:15:21.272+01:00 * 2021-04-15T11:54:16.255+02:00
* Generated source version: 3.2.0 * Generated source version: 3.2.0
* *
*/ */
@WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType") @WebService(targetNamespace = "urn:omds3Services-1-4-0", name = "omdsServicePortType")
@XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on4partner.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_12.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on1basis.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.common.ObjectFactory.class}) @XmlSeeAlso({at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.produktfinder.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on4partner.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.ObjectFactory.class, at.vvo.omds.types.omds2Types.v2_12.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on1basis.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_6_0.common.ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface OmdsServicePortType { public interface OmdsServicePortType {
@@ -48,9 +48,9 @@ public interface OmdsServicePortType {
@WebMethod(action = "urn:calculateRechtsschutz") @WebMethod(action = "urn:calculateRechtsschutz")
@WebResult(name = "CalculateRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters") @WebResult(name = "CalculateRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponseType calculateRechtsschutz( public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponse calculateRechtsschutz(
@WebParam(partName = "parameters", name = "CalculateRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs") @WebParam(partName = "parameters", name = "CalculateRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequestType parameters at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequest parameters
) throws ServiceFaultMsg; ) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationKfz") @WebMethod(action = "urn:createApplicationKfz")
@@ -76,9 +76,9 @@ public interface OmdsServicePortType {
@WebMethod(action = "urn:createOfferRechtsschutz") @WebMethod(action = "urn:createOfferRechtsschutz")
@WebResult(name = "CreateOfferRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters") @WebResult(name = "CreateOfferRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponseType createOfferRechtsschutz( public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponse createOfferRechtsschutz(
@WebParam(partName = "parameters", name = "CreateOfferRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs") @WebParam(partName = "parameters", name = "CreateOfferRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequestType parameters at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequest parameters
) throws ServiceFaultMsg; ) throws ServiceFaultMsg;
@WebMethod(action = "urn:searchClaim") @WebMethod(action = "urn:searchClaim")
@@ -144,6 +144,13 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnfallRequestType parameters at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnfallRequestType parameters
) throws ServiceFaultMsg; ) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateKranken")
@WebResult(name = "CalculateKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken(
@WebParam(partName = "parameters", name = "CalculateKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken")
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CalculateKrankenRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deleteCommunicationObject") @WebMethod(action = "urn:deleteCommunicationObject")
@WebResult(name = "DeleteCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters") @WebResult(name = "DeleteCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject( public at.vvo.omds.types.omds3Types.r1_6_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(
@@ -193,6 +200,13 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListRequest parameters at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListRequest parameters
) throws ServiceFaultMsg; ) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationKranken")
@WebResult(name = "CreateApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken(
@WebParam(partName = "parameters", name = "CreateApplicationKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken")
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateApplicationKrankenRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateSachPrivat") @WebMethod(action = "urn:calculateSachPrivat")
@WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters") @WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat( public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(
@@ -202,9 +216,9 @@ public interface OmdsServicePortType {
@WebMethod(action = "urn:createApplicationRechtsschutz") @WebMethod(action = "urn:createApplicationRechtsschutz")
@WebResult(name = "CreateApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters") @WebResult(name = "CreateApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz( public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponse createApplicationRechtsschutz(
@WebParam(partName = "parameters", name = "CreateApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs") @WebParam(partName = "parameters", name = "CreateApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequest parameters
) throws ServiceFaultMsg; ) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkPartner") @WebMethod(action = "urn:deepLinkPartner")
@@ -235,11 +249,18 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkClaimRequest parameters at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkClaimRequest parameters
) throws ServiceFaultMsg; ) throws ServiceFaultMsg;
@WebMethod(action = "urn:submitApplicationKranken")
@WebResult(name = "SubmitApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenResponse submitApplicationKranken(
@WebParam(partName = "parameters", name = "SubmitApplicationKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken")
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:collectionChange") @WebMethod(action = "urn:collectionChange")
@WebResult(name = "CollectionChangeResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters") @WebResult(name = "CollectionChangeResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponseType collectionChange( public at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponse collectionChange(
@WebParam(partName = "parameters", name = "CollectionChangeRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag") @WebParam(partName = "parameters", name = "CollectionChangeRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag")
at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequestType parameters at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequest parameters
) throws ServiceFaultMsg; ) throws ServiceFaultMsg;
@WebMethod(action = "urn:getOMDSPackage") @WebMethod(action = "urn:getOMDSPackage")
@@ -284,6 +305,13 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzRequestType parameters at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzRequestType parameters
) throws ServiceFaultMsg; ) throws ServiceFaultMsg;
@WebMethod(action = "urn:createOfferKranken")
@WebResult(name = "CreateOfferKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateOfferKrankenResponse createOfferKranken(
@WebParam(partName = "parameters", name = "CreateOfferKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken")
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateOfferKrankenRequest parameters
) throws ServiceFaultMsg;
@WebMethod(action = "urn:changeCommunicationObject") @WebMethod(action = "urn:changeCommunicationObject")
@WebResult(name = "ChangeCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters") @WebResult(name = "ChangeCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on4partner.ChangeCommunicationObjectResponse changeCommunicationObject( public at.vvo.omds.types.omds3Types.r1_6_0.on4partner.ChangeCommunicationObjectResponse changeCommunicationObject(
@@ -328,9 +356,9 @@ public interface OmdsServicePortType {
@WebMethod(action = "urn:submitApplicationRechtsschutz") @WebMethod(action = "urn:submitApplicationRechtsschutz")
@WebResult(name = "SubmitApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters") @WebResult(name = "SubmitApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType submitApplicationRechtsschutz( public at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse submitApplicationRechtsschutz(
@WebParam(partName = "parameters", name = "SubmitApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs") @WebParam(partName = "parameters", name = "SubmitApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType parameters at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest parameters
) throws ServiceFaultMsg; ) throws ServiceFaultMsg;
@WebMethod(action = "urn:createOfferLeben") @WebMethod(action = "urn:createOfferLeben")

View File

@@ -16,11 +16,10 @@ import javax.jws.WebResult;
import javax.jws.WebService; import javax.jws.WebService;
import javax.jws.soap.SOAPBinding; import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.soap.MTOMFeature;
/** /**
* This class was generated by Apache CXF 3.2.0 * This class was generated by Apache CXF 3.2.0
* 2020-10-05T16:22:52.578+02:00 * 2021-04-15T11:54:16.072+02:00
* Generated source version: 3.2.0 * Generated source version: 3.2.0
* *
*/ */
@@ -45,11 +44,9 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
e.printStackTrace(); e.printStackTrace();
} }
} }
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME); OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024)); OmdsServicePortType port = ss.getOmdsServicePort();
// OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
// OmdsServicePortType port = ss.getOmdsServicePort();
{ {
System.out.println("Invoking calculateLeben..."); System.out.println("Invoking calculateLeben...");
@@ -101,9 +98,9 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
} }
{ {
System.out.println("Invoking calculateRechtsschutz..."); System.out.println("Invoking calculateRechtsschutz...");
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequestType _calculateRechtsschutz_parameters = null; at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequest _calculateRechtsschutz_parameters = null;
try { try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponseType _calculateRechtsschutz__return = port.calculateRechtsschutz(_calculateRechtsschutz_parameters); at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponse _calculateRechtsschutz__return = port.calculateRechtsschutz(_calculateRechtsschutz_parameters);
System.out.println("calculateRechtsschutz.result=" + _calculateRechtsschutz__return); System.out.println("calculateRechtsschutz.result=" + _calculateRechtsschutz__return);
} catch (ServiceFaultMsg e) { } catch (ServiceFaultMsg e) {
@@ -149,9 +146,9 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
} }
{ {
System.out.println("Invoking createOfferRechtsschutz..."); System.out.println("Invoking createOfferRechtsschutz...");
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequestType _createOfferRechtsschutz_parameters = null; at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequest _createOfferRechtsschutz_parameters = null;
try { try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponseType _createOfferRechtsschutz__return = port.createOfferRechtsschutz(_createOfferRechtsschutz_parameters); at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponse _createOfferRechtsschutz__return = port.createOfferRechtsschutz(_createOfferRechtsschutz_parameters);
System.out.println("createOfferRechtsschutz.result=" + _createOfferRechtsschutz__return); System.out.println("createOfferRechtsschutz.result=" + _createOfferRechtsschutz__return);
} catch (ServiceFaultMsg e) { } catch (ServiceFaultMsg e) {
@@ -262,6 +259,18 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnfallResponseType _createApplicationUnfall__return = port.createApplicationUnfall(_createApplicationUnfall_parameters); at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnfallResponseType _createApplicationUnfall__return = port.createApplicationUnfall(_createApplicationUnfall_parameters);
System.out.println("createApplicationUnfall.result=" + _createApplicationUnfall__return); System.out.println("createApplicationUnfall.result=" + _createApplicationUnfall__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking calculateKranken...");
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CalculateKrankenRequest _calculateKranken_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CalculateKrankenResponse _calculateKranken__return = port.calculateKranken(_calculateKranken_parameters);
System.out.println("calculateKranken.result=" + _calculateKranken__return);
} catch (ServiceFaultMsg e) { } catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred."); System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString()); System.out.println(e.toString());
@@ -346,6 +355,18 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters); at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters);
System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return); System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createApplicationKranken...");
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateApplicationKrankenRequest _createApplicationKranken_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateApplicationKrankenResponse _createApplicationKranken__return = port.createApplicationKranken(_createApplicationKranken_parameters);
System.out.println("createApplicationKranken.result=" + _createApplicationKranken__return);
} catch (ServiceFaultMsg e) { } catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred."); System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString()); System.out.println(e.toString());
@@ -365,9 +386,9 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
} }
{ {
System.out.println("Invoking createApplicationRechtsschutz..."); System.out.println("Invoking createApplicationRechtsschutz...");
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType _createApplicationRechtsschutz_parameters = null; at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequest _createApplicationRechtsschutz_parameters = null;
try { try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _createApplicationRechtsschutz__return = port.createApplicationRechtsschutz(_createApplicationRechtsschutz_parameters); at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _createApplicationRechtsschutz__return = port.createApplicationRechtsschutz(_createApplicationRechtsschutz_parameters);
System.out.println("createApplicationRechtsschutz.result=" + _createApplicationRechtsschutz__return); System.out.println("createApplicationRechtsschutz.result=" + _createApplicationRechtsschutz__return);
} catch (ServiceFaultMsg e) { } catch (ServiceFaultMsg e) {
@@ -424,10 +445,22 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
} }
} }
{ {
System.out.println("Invoking collectionChange..."); System.out.println("Invoking submitApplicationKranken...");
at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequestType _collectionChange_parameters = null; at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenRequest _submitApplicationKranken_parameters = null;
try { try {
at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponseType _collectionChange__return = port.collectionChange(_collectionChange_parameters); at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenResponse _submitApplicationKranken__return = port.submitApplicationKranken(_submitApplicationKranken_parameters);
System.out.println("submitApplicationKranken.result=" + _submitApplicationKranken__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking collectionChange...");
at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequest _collectionChange_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeResponse _collectionChange__return = port.collectionChange(_collectionChange_parameters);
System.out.println("collectionChange.result=" + _collectionChange__return); System.out.println("collectionChange.result=" + _collectionChange__return);
} catch (ServiceFaultMsg e) { } catch (ServiceFaultMsg e) {
@@ -502,6 +535,18 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters); at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters);
System.out.println("calculateKfz.result=" + _calculateKfz__return); System.out.println("calculateKfz.result=" + _calculateKfz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createOfferKranken...");
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateOfferKrankenRequest _createOfferKranken_parameters = null;
try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.CreateOfferKrankenResponse _createOfferKranken__return = port.createOfferKranken(_createOfferKranken_parameters);
System.out.println("createOfferKranken.result=" + _createOfferKranken__return);
} catch (ServiceFaultMsg e) { } catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred."); System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString()); System.out.println(e.toString());
@@ -581,9 +626,9 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
} }
{ {
System.out.println("Invoking submitApplicationRechtsschutz..."); System.out.println("Invoking submitApplicationRechtsschutz...");
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType _submitApplicationRechtsschutz_parameters = null; at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest _submitApplicationRechtsschutz_parameters = null;
try { try {
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType _submitApplicationRechtsschutz__return = port.submitApplicationRechtsschutz(_submitApplicationRechtsschutz_parameters); at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse _submitApplicationRechtsschutz__return = port.submitApplicationRechtsschutz(_submitApplicationRechtsschutz_parameters);
System.out.println("submitApplicationRechtsschutz.result=" + _submitApplicationRechtsschutz__return); System.out.println("submitApplicationRechtsschutz.result=" + _submitApplicationRechtsschutz__return);
} catch (ServiceFaultMsg e) { } catch (ServiceFaultMsg e) {

View File

@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
/** /**
* This class was generated by Apache CXF 3.2.0 * This class was generated by Apache CXF 3.2.0
* 2020-09-24T16:22:56.965+02:00 * 2021-04-15T11:54:16.184+02:00
* Generated source version: 3.2.0 * Generated source version: 3.2.0
*/ */

View File

@@ -2,7 +2,7 @@
<jaxb:bindings <jaxb:bindings
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema"
schemaLocation="../../def/r1_6_0/omds212-02.xsd" schemaLocation="../../def/r1_6_0/omds213-00.xsd"
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
version="1.0" version="1.0"
> >

View File

@@ -6,7 +6,7 @@ Was ist neu oder anders in Version 1.6.0 im Vergleich zur Version 1.5.0?
===================================================================================== =====================================================================================
1. Sparten Unfall und Leben wurden neu angelegt 1. Sparten Unfall und Leben wurden neu angelegt
2. Aufnahme Verkaufsproduktfinder? 2. Aufnahme Verkaufsproduktfinder?
3. Verwendet OMDS 2.12-02 statt 2.11-00: 3. Verwendet OMDS 2.13-00 statt 2.11-00:
- neue Vertragsrollen: AZ - Abweichender Zulassungsbesitzer, FI - Firmeninhaber, ZB - Zustellbevollmächtigter - neue Vertragsrollen: AZ - Abweichender Zulassungsbesitzer, FI - Firmeninhaber, ZB - Zustellbevollmächtigter
- neues Feld GesFormCdType in Sonst-Person - neues Feld GesFormCdType in Sonst-Person
- TIN für "Titel nachgestellt" - TIN für "Titel nachgestellt"

View File

@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- Mit XMLSpy v2020 rel. 2 (x64) (http://www.altova.com) von IT Services (d-con.net GmbH) bearbeitet --> <!-- Mit XMLSpy v2021 (x64) (http://www.altova.com) von IT Services (d-con.net GmbH) bearbeitet -->
<xsd:schema xmlns:omds="urn:omds20" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:omds20" elementFormDefault="unqualified" attributeFormDefault="unqualified" version="212-02"> <xsd:schema xmlns:omds="urn:omds20" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:omds20" elementFormDefault="unqualified" attributeFormDefault="unqualified" version="213-00">
<xsd:element name="OMDS"> <xsd:element name="OMDS">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Version 212-02 - OMDS Arbeitsgruppe</xsd:documentation> <xsd:documentation>Version 213-00 - OMDS Arbeitsgruppe</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexType> <xsd:complexType>
<xsd:sequence> <xsd:sequence>
@@ -43,7 +43,13 @@
<xsd:attribute name="PaketInhCd" type="omds:PaketInhCd_Type" use="required"/> <xsd:attribute name="PaketInhCd" type="omds:PaketInhCd_Type" use="required"/>
<xsd:attribute name="PaketUmfCd" type="omds:PaketUmfCd_Type" use="required"/> <xsd:attribute name="PaketUmfCd" type="omds:PaketUmfCd_Type" use="required"/>
<xsd:attribute name="OMDSVersion" type="omds:OMDSVersion_Type" use="required"/> <xsd:attribute name="OMDSVersion" type="omds:OMDSVersion_Type" use="required"/>
<xsd:attribute name="VUVersion" type="omds:OMDSVersion_Type" use="optional"/> <xsd:attribute name="VUVersion" use="optional">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="6"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="DVRNrAbs" use="required"> <xsd:attribute name="DVRNrAbs" use="required">
<xsd:simpleType> <xsd:simpleType>
<xsd:restriction base="xsd:string"> <xsd:restriction base="xsd:string">
@@ -276,6 +282,20 @@
</xsd:restriction> </xsd:restriction>
</xsd:simpleType> </xsd:simpleType>
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="AdressID_VU" use="optional">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="50"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="AdressID_Makler" use="optional">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="50"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:attributeGroup> </xsd:attributeGroup>
<xsd:element name="NATUERLICHE_PERSON" type="omds:NATUERLICHE_PERSON_Type" abstract="false"/> <xsd:element name="NATUERLICHE_PERSON" type="omds:NATUERLICHE_PERSON_Type" abstract="false"/>
<xsd:complexType name="NATUERLICHE_PERSON_Type"> <xsd:complexType name="NATUERLICHE_PERSON_Type">
@@ -298,6 +318,8 @@
<xsd:attribute name="Gebdat" type="omds:Datum" use="optional"/> <xsd:attribute name="Gebdat" type="omds:Datum" use="optional"/>
<xsd:attribute name="LandesCd" type="omds:LandesCd_Type" use="required"/> <xsd:attribute name="LandesCd" type="omds:LandesCd_Type" use="required"/>
<xsd:attribute name="FamilienstandCd" type="omds:FamilienstandCd_Type" use="required"/> <xsd:attribute name="FamilienstandCd" type="omds:FamilienstandCd_Type" use="required"/>
<xsd:attribute name="PersonID_VU" type="omds:PersonID_Type" use="optional"/>
<xsd:attribute name="PersonID_Makler" type="omds:PersonID_Type" use="optional"/>
</xsd:complexType> </xsd:complexType>
<xsd:element name="SONSTIGE_PERSON" type="omds:SONSTIGE_PERSON_Type" abstract="false"/> <xsd:element name="SONSTIGE_PERSON" type="omds:SONSTIGE_PERSON_Type" abstract="false"/>
<xsd:complexType name="SONSTIGE_PERSON_Type"> <xsd:complexType name="SONSTIGE_PERSON_Type">
@@ -318,6 +340,8 @@
</xsd:attribute> </xsd:attribute>
<xsd:attribute name="SonstPersArtCd" type="omds:SonstPersArtCd_Type" use="required"/> <xsd:attribute name="SonstPersArtCd" type="omds:SonstPersArtCd_Type" use="required"/>
<xsd:attribute name="GesFormCd" type="omds:GesFormCd_Type" use="optional"/> <xsd:attribute name="GesFormCd" type="omds:GesFormCd_Type" use="optional"/>
<xsd:attribute name="PersonID_VU" type="omds:PersonID_Type" use="optional"/>
<xsd:attribute name="PersonID_Makler" type="omds:PersonID_Type" use="optional"/>
</xsd:complexType> </xsd:complexType>
<xsd:element name="VERTRAG" abstract="false"> <xsd:element name="VERTRAG" abstract="false">
<xsd:complexType> <xsd:complexType>
@@ -740,6 +764,11 @@ WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e)</xsd:docu
<xsd:attribute name="SondervereinbarungKz" type="omds:Entsch3_Type" use="optional"/> <xsd:attribute name="SondervereinbarungKz" type="omds:Entsch3_Type" use="optional"/>
<xsd:attribute name="PraemieNtoSp" type="omds:decimal" use="required"/> <xsd:attribute name="PraemieNtoSp" type="omds:decimal" use="required"/>
<xsd:attribute name="PraemieBtoSp" type="omds:decimal" use="required"/> <xsd:attribute name="PraemieBtoSp" type="omds:decimal" use="required"/>
<xsd:attribute name="nmoKuendDat" type="omds:Datum" use="optional">
<xsd:annotation>
<xsd:documentation>Gibt das Datum an, zu dem der Kunde die Möglichkeit einer ordentlichen Kündigung hat (wenn z.B. abweichend von Vertragsende)</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType> </xsd:complexType>
<xsd:element name="RISIKO" type="omds:RISIKO_Type" abstract="false"/> <xsd:element name="RISIKO" type="omds:RISIKO_Type" abstract="false"/>
<xsd:complexType name="RISIKO_Type"> <xsd:complexType name="RISIKO_Type">
@@ -1613,6 +1642,11 @@ WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e)</xsd:docu
<xsd:pattern value="[0-9][0-9][0-9]-[0-9][0-9]"/> <xsd:pattern value="[0-9][0-9][0-9]-[0-9][0-9]"/>
</xsd:restriction> </xsd:restriction>
</xsd:simpleType> </xsd:simpleType>
<xsd:simpleType name="PersonID_Type">
<xsd:restriction base="xsd:string">
<xsd:maxLength value="50"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="AendGrundCd_Type"> <xsd:simpleType name="AendGrundCd_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Änderungsgrund</xsd:documentation> <xsd:documentation>Änderungsgrund</xsd:documentation>
@@ -2651,7 +2685,7 @@ WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e)</xsd:docu
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="4"> <xsd:enumeration value="4">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Rechtschutzindex</xsd:documentation> <xsd:documentation>Rechtsschutzindex</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="9"> <xsd:enumeration value="9">
@@ -4795,17 +4829,17 @@ WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e)</xsd:docu
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="R01"> <xsd:enumeration value="R01">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Privat Rechtschutz</xsd:documentation> <xsd:documentation>Privat Rechtsschutz</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="R02"> <xsd:enumeration value="R02">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Kfz-Rechtschutz</xsd:documentation> <xsd:documentation>Kfz-Rechtsschutz</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="R03"> <xsd:enumeration value="R03">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Firmen-Rechtschutz</xsd:documentation> <xsd:documentation>Firmen-Rechtsschutz</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="R04"> <xsd:enumeration value="R04">
@@ -5774,7 +5808,17 @@ WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e)</xsd:docu
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="AK"> <xsd:enumeration value="AK">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>KFZ-Kasko</xsd:documentation> <xsd:documentation>KFZ-Kasko (nur bis inkl. Vers. 212-02 zu verw.)</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="AKT">
<xsd:annotation>
<xsd:documentation>KFZ-Teilkasko</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="AKV">
<xsd:annotation>
<xsd:documentation>KFZ-Vollkasko</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="AS"> <xsd:enumeration value="AS">
@@ -5874,7 +5918,7 @@ WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e)</xsd:docu
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="RS"> <xsd:enumeration value="RS">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Rechtschutz</xsd:documentation> <xsd:documentation>Rechtsschutz</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="SS"> <xsd:enumeration value="SS">
@@ -7088,7 +7132,7 @@ WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e)</xsd:docu
<xsd:annotation> <xsd:annotation>
<xsd:documentation>abweichender Zulassungsbesitzer</xsd:documentation> <xsd:documentation>abweichender Zulassungsbesitzer</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="BG"> <xsd:enumeration value="BG">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Bausparer gesetzlicher Vertreter</xsd:documentation> <xsd:documentation>Bausparer gesetzlicher Vertreter</xsd:documentation>
@@ -7900,6 +7944,26 @@ WMTC: Messzyklus für Motorräder (Klassen L1e, L2e, L3e, L4e und L5e)</xsd:docu
<xsd:documentation>Arbeitsmaschinen</xsd:documentation> <xsd:documentation>Arbeitsmaschinen</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:enumeration> </xsd:enumeration>
<xsd:enumeration value="23">
<xsd:annotation>
<xsd:documentation>Erdbebenzone</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="24">
<xsd:annotation>
<xsd:documentation>Hagelzone</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="25">
<xsd:annotation>
<xsd:documentation>Schneelast</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="26">
<xsd:annotation>
<xsd:documentation>Sturmzone</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction> </xsd:restriction>
</xsd:simpleType> </xsd:simpleType>
<xsd:simpleType name="SprachCd_Type"> <xsd:simpleType name="SprachCd_Type">

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:omds3CommonServiceTypes-1-1-0" xmlns:xmime="http://www.w3.org/2005/05/xmlmime" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:ost="urn:omds3ServiceTypes-1-1-0" targetNamespace="urn:omds3CommonServiceTypes-1-1-0" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:omds3CommonServiceTypes-1-1-0" xmlns:xmime="http://www.w3.org/2005/05/xmlmime" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:ost="urn:omds3ServiceTypes-1-1-0" targetNamespace="urn:omds3CommonServiceTypes-1-1-0" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3ServiceTypes-1-1-0" schemaLocation="omds3ServiceTypes.xsd"/> <xsd:import namespace="urn:omds3ServiceTypes-1-1-0" schemaLocation="omds3ServiceTypes.xsd"/>
<!-- Elemente, die von allen Services gemeinsam verwendet werden --> <!-- Elemente, die von allen Services gemeinsam verwendet werden -->
<xsd:element name="serviceFault" type="ServiceFault"> <xsd:element name="serviceFault" type="ServiceFault">

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:omds3ServiceTypes-1-1-0" xmlns:xmime="http://www.w3.org/2005/05/xmlmime" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="urn:omds3ServiceTypes-1-1-0" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:omds3ServiceTypes-1-1-0" xmlns:xmime="http://www.w3.org/2005/05/xmlmime" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="urn:omds3ServiceTypes-1-1-0" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<!-- Beziehe Action Link --> <!-- Beziehe Action Link -->
<xsd:element name="loginRequest" type="LoginRequestType"> <xsd:element name="loginRequest" type="LoginRequestType">

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:annotation> <xsd:annotation>
<xsd:documentation>State-Changes</xsd:documentation> <xsd:documentation>State-Changes</xsd:documentation>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ost="urn:omds3ServiceTypes-1-1-0" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ost="urn:omds3ServiceTypes-1-1-0" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.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:omds3ServiceTypes-1-1-0" schemaLocation="omds3ServiceTypes.xsd"/>
<!--Prozessobjekte Berechnung, Offert, Antrag - Spartenübergreifend--> <!--Prozessobjekte Berechnung, Offert, Antrag - Spartenübergreifend-->

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/> <xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
<xsd:annotation> <xsd:annotation>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/> <xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
<xsd:complexType name="VerkaufsproduktKranken_Type" final="#all"> <xsd:complexType name="VerkaufsproduktKranken_Type" final="#all">
@@ -20,7 +20,7 @@
<xsd:documentation>Möglichkeit Kranken-fremde Bausteine einzugliedern.</xsd:documentation> <xsd:documentation>Möglichkeit Kranken-fremde Bausteine einzugliedern.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:element> </xsd:element>
<xsd:element name="VersichertePersonen" type="cst:VersichertePerson_Type" minOccurs="1" maxOccurs="unbounded"> <xsd:element name="VersichertePersonen" type="cst:VersichertePerson_Type" maxOccurs="unbounded">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Die Risikodaten der versicherten Interessen. In der Regel sind dies Versicherte Personen, die im Produktbaum referenziert werden.</xsd:documentation> <xsd:documentation>Die Risikodaten der versicherten Interessen. In der Regel sind dies Versicherte Personen, die im Produktbaum referenziert werden.</xsd:documentation>
</xsd:annotation> </xsd:annotation>
@@ -78,7 +78,7 @@
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<!-- Vorgefertigte Bausteine --> <!-- Vorgefertigte Bausteine -->
<xsd:complexType name="ProduktSonderklasse_Type"> <xsd:complexType name="ProduktStationaer_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Produkt</xsd:documentation> <xsd:documentation>Produkt</xsd:documentation>
</xsd:annotation> </xsd:annotation>
@@ -86,17 +86,20 @@
<xsd:extension base="ProduktKranken_Type"/> <xsd:extension base="ProduktKranken_Type"/>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="ProduktPrivatarzt_Type"> <xsd:complexType name="ProduktAmbulant_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Produkt</xsd:documentation> <xsd:documentation>Produkt</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexContent> <xsd:complexContent>
<xsd:extension base="ProduktKranken_Type"> <xsd:extension base="ProduktKranken_Type"/>
<xsd:sequence> </xsd:complexContent>
<xsd:element name="Jahreslimit"/> </xsd:complexType>
<xsd:element name="AlternativeBehandlungen"/> <xsd:complexType name="ProduktZahn_Type">
</xsd:sequence> <xsd:annotation>
</xsd:extension> <xsd:documentation>Produkt</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ProduktKranken_Type"/>
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="ProduktTaggeld_Type"> <xsd:complexType name="ProduktTaggeld_Type">
@@ -122,6 +125,27 @@
<xsd:documentation>Produkt</xsd:documentation> <xsd:documentation>Produkt</xsd:documentation>
</xsd:annotation> </xsd:annotation>
</xsd:complexType> </xsd:complexType>
<xsd:complexType name="ElementarproduktSonderklasse_Type">
<xsd:annotation>
<xsd:documentation>Elementarprodukt</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ElementarproduktKranken_Type"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ElementarproduktPrivatarzt_Type">
<xsd:annotation>
<xsd:documentation>Elementarprodukt</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ElementarproduktKranken_Type">
<xsd:sequence>
<xsd:element name="Jahreslimit"/>
<xsd:element name="AlternativeBehandlungen"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ElementarproduktWeltgarantie_Type"> <xsd:complexType name="ElementarproduktWeltgarantie_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Elementarprodukt</xsd:documentation> <xsd:documentation>Elementarprodukt</xsd:documentation>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/> <xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
<xsd:complexType name="VerkaufsproduktLeben_Type" final="#all"> <xsd:complexType name="VerkaufsproduktLeben_Type" final="#all">

View File

@@ -3,7 +3,7 @@
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0"
targetNamespace="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> targetNamespace="urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.produktfinder" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:complexType name="FinderRequest_Type"> <xsd:complexType name="FinderRequest_Type">
<xsd:annotation> <xsd:annotation>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/> <xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
<xsd:complexType name="VerkaufsproduktRechtsschutz_Type" final="#all"> <xsd:complexType name="VerkaufsproduktRechtsschutz_Type" final="#all">

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/> <xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
<xsd:complexType name="VersichertesObjektSachPrivat_Type"> <xsd:complexType name="VersichertesObjektSachPrivat_Type">

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" xmlns:ac="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/> <xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
<xsd:complexType name="VerkaufsproduktUnfall_Type" final="#all"> <xsd:complexType name="VerkaufsproduktUnfall_Type" final="#all">

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:element name="GetPoliciesOfPartnerRequest" type="GetPoliciesOfPartnerRequest_Type"> <xsd:element name="GetPoliciesOfPartnerRequest" type="GetPoliciesOfPartnerRequest_Type">
<xsd:annotation> <xsd:annotation>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<!-- Aenderung Personenbezogener Daten --> <!-- Aenderung Personenbezogener Daten -->
<xsd:complexType name="GetPartnerRequest_Type"> <xsd:complexType name="GetPartnerRequest_Type">

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<!--Schadenservices Versicherungsunternehmen --> <!--Schadenservices Versicherungsunternehmen -->
<xsd:complexType name="CheckClaimRequest_Type"> <xsd:complexType name="CheckClaimRequest_Type">

View File

@@ -2,7 +2,7 @@
<xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schadenErg" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0" <xsd:schema xmlns="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schadenErg" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" xmlns:cst="urn:omds3CommonServiceTypes-1-1-0"
xmlns:sch="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" xmlns:sch="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden"
targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schadenErg" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0"> targetNamespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schadenErg" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.6.0">
<xsd:import namespace="urn:omds20" schemaLocation="omds212-02.xsd"/> <xsd:import namespace="urn:omds20" schemaLocation="omds213-00.xsd"/>
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/> <xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
<xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" schemaLocation="omds3_ON7_Schaden.xsd"/> <xsd:import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" schemaLocation="omds3_ON7_Schaden.xsd"/>
<!--Schadenservices Versicherungsunternehmen --> <!--Schadenservices Versicherungsunternehmen -->