Umstellung Version 1.6 auf die aktuelle OMDS 2 Version: omds213-00.xsd
This commit is contained in:
@@ -49,6 +49,10 @@ public class ADRESSEType {
|
||||
protected String hausnr;
|
||||
@XmlAttribute(name = "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.
|
||||
@@ -218,4 +222,52 @@ public class ADRESSEType {
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -36,6 +36,8 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
* <attribute name="Gebdat" type="{urn:omds20}Datum" />
|
||||
* <attribute name="LandesCd" use="required" type="{urn:omds20}LandesCd_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>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
@@ -59,6 +61,10 @@ public class NATUERLICHEPERSONType {
|
||||
protected String landesCd;
|
||||
@XmlAttribute(name = "FamilienstandCd", required = true)
|
||||
protected String familienstandCd;
|
||||
@XmlAttribute(name = "PersonID_VU")
|
||||
protected String personIDVU;
|
||||
@XmlAttribute(name = "PersonID_Makler")
|
||||
protected String personIDMakler;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der familienname-Eigenschaft ab.
|
||||
@@ -204,4 +210,52 @@ public class NATUERLICHEPERSONType {
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -38,7 +38,13 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
* <attribute name="PaketInhCd" use="required" type="{urn:omds20}PaketInhCd_Type" />
|
||||
* <attribute name="PaketUmfCd" use="required" type="{urn:omds20}PaketUmfCd_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">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
|
||||
@@ -93,6 +93,10 @@ public class PERSONType {
|
||||
protected String hausnr;
|
||||
@XmlAttribute(name = "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.
|
||||
@@ -393,4 +397,52 @@ public class PERSONType {
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -664,21 +664,21 @@ public enum RisikoArtCdType {
|
||||
M_07("M07"),
|
||||
|
||||
/**
|
||||
* Privat Rechtschutz
|
||||
* Privat Rechtsschutz
|
||||
*
|
||||
*/
|
||||
@XmlEnumValue("R01")
|
||||
R_01("R01"),
|
||||
|
||||
/**
|
||||
* Kfz-Rechtschutz
|
||||
* Kfz-Rechtsschutz
|
||||
*
|
||||
*/
|
||||
@XmlEnumValue("R02")
|
||||
R_02("R02"),
|
||||
|
||||
/**
|
||||
* Firmen-Rechtschutz
|
||||
* Firmen-Rechtsschutz
|
||||
*
|
||||
*/
|
||||
@XmlEnumValue("R03")
|
||||
|
||||
@@ -33,6 +33,8 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* </attribute>
|
||||
* <attribute name="SonstPersArtCd" use="required" type="{urn:omds20}SonstPersArtCd_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>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
@@ -52,6 +54,10 @@ public class SONSTIGEPERSONType {
|
||||
protected String sonstPersArtCd;
|
||||
@XmlAttribute(name = "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.
|
||||
@@ -149,4 +155,52 @@ public class SONSTIGEPERSONType {
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -82,6 +82,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
* <attribute name="SondervereinbarungKz" type="{urn:omds20}Entsch3_Type" />
|
||||
* <attribute name="PraemieNtoSp" use="required" type="{urn:omds20}decimal" />
|
||||
* <attribute name="PraemieBtoSp" use="required" type="{urn:omds20}decimal" />
|
||||
* <attribute name="nmoKuendDat" type="{urn:omds20}Datum" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
@@ -144,6 +145,8 @@ public class SPARTEType {
|
||||
protected BigDecimal praemieNtoSp;
|
||||
@XmlAttribute(name = "PraemieBtoSp", required = true)
|
||||
protected BigDecimal praemieBtoSp;
|
||||
@XmlAttribute(name = "nmoKuendDat")
|
||||
protected XMLGregorianCalendar nmoKuendDat;
|
||||
|
||||
/**
|
||||
* Gets the value of the elAnzahlOrELBetragOrELBezugsberechtigung property.
|
||||
@@ -553,4 +556,28 @@ public class SPARTEType {
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -124,6 +124,10 @@ public class VERSSACHEType {
|
||||
protected String hausnr;
|
||||
@XmlAttribute(name = "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.
|
||||
@@ -687,4 +691,52 @@ public class VERSSACHEType {
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -54,6 +54,10 @@ public class AdresseType {
|
||||
protected String hausnr;
|
||||
@XmlAttribute(name = "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.
|
||||
@@ -247,4 +251,52 @@ public class AdresseType {
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
* <complexType name="Autorisierung">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Autorisierung")
|
||||
public abstract class Autorisierung {
|
||||
|
||||
|
||||
}
|
||||
@@ -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.on2antrag.common.GetApplicationDocumentRequestType;
|
||||
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.SetMailingAddressRequestType;
|
||||
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,
|
||||
GetPoliciesOfPartnerRequestType.class,
|
||||
SetMailingAddressRequestType.class,
|
||||
CollectionChangeRequestType.class,
|
||||
CommonSearchRequestType.class,
|
||||
GetApplicationDocumentRequestType.class,
|
||||
CheckClaimRequestType.class,
|
||||
@@ -79,6 +80,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimRequestType;
|
||||
FinderRequestType.class,
|
||||
GetStateSignaturesRequest.class,
|
||||
CollectSignaturesRequest.class,
|
||||
CollectionRhythmChangeRequest.class,
|
||||
CollectionRhythmInfoRequest.class,
|
||||
CollectionChangeRequest.class,
|
||||
CommonProcessRequestType.class
|
||||
})
|
||||
public abstract class CommonRequestType {
|
||||
|
||||
@@ -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.on2antrag.common.GetApplicationDocumentResponseType;
|
||||
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.SetMailingAddressResponseType;
|
||||
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,
|
||||
GetPoliciesOfPartnerResponseType.class,
|
||||
SetMailingAddressResponseType.class,
|
||||
CollectionChangeResponseType.class,
|
||||
CommonSearchResponseType.class,
|
||||
GetApplicationDocumentResponseType.class,
|
||||
CheckClaimResponseType.class,
|
||||
@@ -78,6 +79,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType;
|
||||
FinderResponseType.class,
|
||||
GetStateSignaturesResponse.class,
|
||||
CollectSignaturesResponse.class,
|
||||
CollectionRhythmChangeResponse.class,
|
||||
CollectionRhythmInfoResponse.class,
|
||||
CollectionChangeResponse.class,
|
||||
ChangeCommunicationObjectResponseType.class,
|
||||
CommonProcessResponseType.class
|
||||
})
|
||||
|
||||
@@ -6,7 +6,6 @@ import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -26,7 +25,14 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <element name="ISIN" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
|
||||
* <element name="WKN" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
|
||||
* </choice>
|
||||
* <element name="Prozentanteil" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" minOccurs="0"/>
|
||||
* <element name="Prozentanteil" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}float">
|
||||
* <minInclusive value="0"/>
|
||||
* <maxInclusive value="100"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="ZusaetzlicheFondsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheFondsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
@@ -50,8 +56,7 @@ public class ElementFondsauswahlType {
|
||||
@XmlElement(name = "WKN")
|
||||
protected AttributEnumType wkn;
|
||||
@XmlElement(name = "Prozentanteil")
|
||||
@XmlSchemaType(name = "unsignedByte")
|
||||
protected Short prozentanteil;
|
||||
protected Float prozentanteil;
|
||||
@XmlElement(name = "ZusaetzlicheFondsdaten")
|
||||
protected List<ZusaetzlicheFondsdatenType> zusaetzlicheFondsdaten;
|
||||
|
||||
@@ -108,10 +113,10 @@ public class ElementFondsauswahlType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Short }
|
||||
* {@link Float }
|
||||
*
|
||||
*/
|
||||
public Short getProzentanteil() {
|
||||
public Float getProzentanteil() {
|
||||
return prozentanteil;
|
||||
}
|
||||
|
||||
@@ -120,10 +125,10 @@ public class ElementFondsauswahlType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Short }
|
||||
* {@link Float }
|
||||
*
|
||||
*/
|
||||
public void setProzentanteil(Short value) {
|
||||
public void setProzentanteil(Float value) {
|
||||
this.prozentanteil = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -106,6 +106,7 @@ import at.vvo.omds.types.omds2Types.v2_12.Entsch2Type;
|
||||
* <attribute name="Sonderausstattung" type="{urn:omds20}decimal" />
|
||||
* <attribute name="Eigengewicht" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* <attribute name="ZulassdatHalter" type="{urn:omds20}Datum" />
|
||||
* <attribute name="AufbauNatC" type="{urn:omds3CommonServiceTypes-1-1-0}AufbauNatC_Type" />
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
@@ -184,6 +185,8 @@ public class FahrzeugType
|
||||
protected Integer eigengewicht;
|
||||
@XmlAttribute(name = "ZulassdatHalter", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected XMLGregorianCalendar zulassdatHalter;
|
||||
@XmlAttribute(name = "AufbauNatC", namespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||
protected String aufbauNatC;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zulassungsdaten-Eigenschaft ab.
|
||||
@@ -833,4 +836,28 @@ public class FahrzeugType
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -53,6 +53,22 @@ public class ObjectFactory {
|
||||
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 }
|
||||
*
|
||||
@@ -725,6 +741,30 @@ public class ObjectFactory {
|
||||
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 >}}
|
||||
*
|
||||
|
||||
@@ -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>
|
||||
* <complexType name="ProzessDokumentAnforderung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* <element name="DateiBeschreibung">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="200"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="DateiType" type="{urn:omds3CommonServiceTypes-1-1-0}TypeDateianhang_Type"/>
|
||||
* <element name="Unterschriften" maxOccurs="unbounded" minOccurs="0">
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
|
||||
* <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="ZulaessigeUnterschritenarten" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </element>
|
||||
* <element name="DocUploadRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="ZulaessigeMimetypes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
|
||||
* <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="ZulaessigeUnterschritenarten" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
* <complexType name="ProzessDokument_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* <element name="DateiBeschreibung" minOccurs="0">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <maxLength value="200"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="DateiType" type="{urn:omds3CommonServiceTypes-1-1-0}TypeDateianhang_Type"/>
|
||||
* <element name="Unterschriften" maxOccurs="unbounded" minOccurs="0">
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
|
||||
* <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Unterschriftenart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </element>
|
||||
* <element name="DokumentHinterlegt" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="DokData" minOccurs="0">
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
||||
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
||||
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
|
||||
* <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Unterschriftenart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -29,7 +29,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.ObjektIdType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
|
||||
* <element name="Kontaktinformation" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}Kontaktinformation_Type" maxOccurs="unbounded"/>
|
||||
* <element name="Autorisierungsart" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}SpezifikationAutorisierung_Type"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -123,7 +123,7 @@ public class CollectSignaturesRequest
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
|
||||
* <element name="Kontaktinformation" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}Kontaktinformation_Type" maxOccurs="unbounded"/>
|
||||
* <element name="Autorisierungsart" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}SpezifikationAutorisierung_Type"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -135,14 +135,14 @@ public class CollectSignaturesRequest
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"objektId",
|
||||
"kontaktinformation"
|
||||
"autorisierungsart"
|
||||
})
|
||||
public static class Personen {
|
||||
|
||||
@XmlElement(name = "ObjektId", required = true)
|
||||
protected ObjektIdType objektId;
|
||||
@XmlElement(name = "Kontaktinformation", required = true)
|
||||
protected List<KontaktinformationType> kontaktinformation;
|
||||
@XmlElement(name = "Autorisierungsart", required = true)
|
||||
protected SpezifikationAutorisierungType autorisierungsart;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der objektId-Eigenschaft ab.
|
||||
@@ -169,32 +169,27 @@ public class CollectSignaturesRequest
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the kontaktinformation 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 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 }
|
||||
* Ruft den Wert der autorisierungsart-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SpezifikationAutorisierungType }
|
||||
*
|
||||
*/
|
||||
public List<KontaktinformationType> getKontaktinformation() {
|
||||
if (kontaktinformation == null) {
|
||||
kontaktinformation = new ArrayList<KontaktinformationType>();
|
||||
}
|
||||
return this.kontaktinformation;
|
||||
public SpezifikationAutorisierungType getAutorisierungsart() {
|
||||
return autorisierungsart;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der autorisierungsart-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SpezifikationAutorisierungType }
|
||||
*
|
||||
*/
|
||||
public void setAutorisierungsart(SpezifikationAutorisierungType value) {
|
||||
this.autorisierungsart = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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 _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 _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
|
||||
@@ -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")
|
||||
public JAXBElement<KontaktinformationType> createKontaktinformationEMail(KontaktinformationType value) {
|
||||
return new JAXBElement<KontaktinformationType>(_KontaktinformationEMail_QNAME, KontaktinformationType.class, null, value);
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "SpezifikationAutorisierungEMail")
|
||||
public JAXBElement<SpezifikationAutorisierungType> createSpezifikationAutorisierungEMail(SpezifikationAutorisierungType 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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
* <complexType name="SpezifikationAutorisierung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SpezifikationAutorisierung_Type")
|
||||
public abstract class SpezifikationAutorisierungType {
|
||||
|
||||
|
||||
}
|
||||
@@ -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.DateianhangType;
|
||||
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;
|
||||
|
||||
|
||||
@@ -27,6 +28,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzReq
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
||||
* <sequence>
|
||||
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="ProzessDokumente" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokument_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
@@ -39,6 +41,7 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.SubmitApplicationKfzReq
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SubmitApplicationRequest_Type", propOrder = {
|
||||
"dateianhaenge",
|
||||
"prozessDokumente",
|
||||
"antragsnummer"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
@@ -51,6 +54,8 @@ public abstract class SubmitApplicationRequestType
|
||||
|
||||
@XmlElement(name = "Dateianhaenge")
|
||||
protected List<DateianhangType> dateianhaenge;
|
||||
@XmlElement(name = "ProzessDokumente")
|
||||
protected List<ProzessDokumentType> prozessDokumente;
|
||||
@XmlElement(name = "Antragsnummer")
|
||||
protected ObjektIdType antragsnummer;
|
||||
|
||||
@@ -83,6 +88,35 @@ public abstract class SubmitApplicationRequestType
|
||||
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.
|
||||
*
|
||||
|
||||
@@ -41,6 +41,8 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType;
|
||||
"versPersonenRefLfnr"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
ElementarproduktSonderklasseType.class,
|
||||
ElementarproduktPrivatarztType.class,
|
||||
ElementarproduktWeltgarantieType.class,
|
||||
ElementarproduktPraemienrueckgewaehrType.class,
|
||||
ElementarproduktReiseversicherungType.class,
|
||||
|
||||
@@ -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>
|
||||
* <complexType name="ElementarproduktPrivatarzt_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ElementarproduktKranken_Type">
|
||||
* <sequence>
|
||||
* <element name="Jahreslimit" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||
* <element name="AlternativeBehandlungen" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
* <complexType name="ElementarproduktSonderklasse_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ElementarproduktKranken_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ElementarproduktSonderklasse_Type")
|
||||
public class ElementarproduktSonderklasseType
|
||||
extends ElementarproduktKrankenType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -142,19 +142,27 @@ public class ObjectFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ProduktSonderklasseType }
|
||||
* Create an instance of {@link ProduktStationaerType }
|
||||
*
|
||||
*/
|
||||
public ProduktSonderklasseType createProduktSonderklasseType() {
|
||||
return new ProduktSonderklasseType();
|
||||
public ProduktStationaerType createProduktStationaerType() {
|
||||
return new ProduktStationaerType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ProduktPrivatarztType }
|
||||
* Create an instance of {@link ProduktAmbulantType }
|
||||
*
|
||||
*/
|
||||
public ProduktPrivatarztType createProduktPrivatarztType() {
|
||||
return new ProduktPrivatarztType();
|
||||
public ProduktAmbulantType createProduktAmbulantType() {
|
||||
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();
|
||||
}
|
||||
|
||||
/**
|
||||
* 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 }
|
||||
*
|
||||
|
||||
@@ -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>
|
||||
* <complexType name="ProduktAmbulant_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ProduktAmbulant_Type")
|
||||
public class ProduktAmbulantType
|
||||
extends ProduktKrankenType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -40,8 +40,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.common.SelbstbehaltType;
|
||||
"selbstbehalt"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
ProduktSonderklasseType.class,
|
||||
ProduktPrivatarztType.class,
|
||||
ProduktStationaerType.class,
|
||||
ProduktAmbulantType.class,
|
||||
ProduktZahnType.class,
|
||||
ProduktTaggeldType.class
|
||||
})
|
||||
public class ProduktKrankenType
|
||||
|
||||
@@ -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>
|
||||
* <complexType name="ProduktStationaer_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ProduktStationaer_Type")
|
||||
public class ProduktStationaerType
|
||||
extends ProduktKrankenType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
* <complexType name="ProduktZahn_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken}ProduktKranken_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ProduktZahn_Type")
|
||||
public class ProduktZahnType
|
||||
extends ProduktKrankenType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -49,7 +49,7 @@ public class ZusatzversicherungUnfallinvaliditaetType
|
||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||
* 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 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>
|
||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||
|
||||
@@ -49,7 +49,7 @@ public class ZusatzversicherungUnfalltodType
|
||||
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
|
||||
* 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 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>
|
||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||
|
||||
@@ -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>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
|
||||
@@ -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>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* <element name="Inkassoadresse" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
|
||||
* <element name="Zahlweg" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}Zahlweg_Type"/>
|
||||
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||
* <sequence minOccurs="0">
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* <element name="Inkassoadresse" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
|
||||
* <element name="Zahlweg" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}Zahlweg_Type"/>
|
||||
* <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
|
||||
* <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||
* <sequence minOccurs="0">
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type"/>
|
||||
* <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
|
||||
* <element name="PraemieAlt" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}PraemienInfo_Type"/>
|
||||
* <element name="PraemieNeu" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}PraemienInfo_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
||||
* <sequence minOccurs="0">
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* <element name="WirksamtkeitAb" type="{http://www.w3.org/2001/XMLSchema}date"/>
|
||||
* <element name="PraemienZahlrhythmus" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag}PraemienInfo_Type" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -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 _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 _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
|
||||
@@ -79,19 +77,59 @@ public class ObjectFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CollectionChangeRequestType }
|
||||
* Create an instance of {@link CollectionChangeRequest }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeRequestType createCollectionChangeRequestType() {
|
||||
return new CollectionChangeRequestType();
|
||||
public CollectionChangeRequest createCollectionChangeRequest() {
|
||||
return new CollectionChangeRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CollectionChangeResponseType }
|
||||
* Create an instance of {@link CollectionChangeResponse }
|
||||
*
|
||||
*/
|
||||
public CollectionChangeResponseType createCollectionChangeResponseType() {
|
||||
return new CollectionChangeResponseType();
|
||||
public CollectionChangeResponse createCollectionChangeResponse() {
|
||||
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);
|
||||
}
|
||||
|
||||
/**
|
||||
* 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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
* <complexType name="PraemienInfo_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence minOccurs="0">
|
||||
* <element name="JahrespraemieNto" type="{urn:omds20}decimal"/>
|
||||
* <element name="Praemie" type="{urn:omds3CommonServiceTypes-1-1-0}Praemie_Type"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
|
||||
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
protected ObjektIdType objektId;
|
||||
@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 = "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;
|
||||
@XmlElement(name = "WirksamtkeitAb", required = true)
|
||||
@@ -115,8 +115,8 @@ public class ChangeCommunicationObjectRequestType
|
||||
*
|
||||
* <p>
|
||||
* 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 ObjektIdType }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||
*
|
||||
*
|
||||
|
||||
@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
|
||||
|
||||
/**
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -13,11 +13,10 @@ import javax.jws.WebResult;
|
||||
import javax.jws.WebService;
|
||||
import javax.jws.soap.SOAPBinding;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.ws.soap.MTOM;
|
||||
|
||||
/**
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
@@ -29,7 +28,6 @@ import javax.xml.ws.soap.MTOM;
|
||||
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")
|
||||
|
||||
@MTOM(enabled = true, threshold = 1024)
|
||||
public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
|
||||
private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName());
|
||||
@@ -99,13 +97,13 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
}
|
||||
|
||||
/* (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");
|
||||
System.out.println(parameters);
|
||||
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;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -163,13 +161,13 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
}
|
||||
|
||||
/* (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");
|
||||
System.out.println(parameters);
|
||||
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;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -322,6 +320,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
//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)
|
||||
* @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...");
|
||||
}
|
||||
|
||||
/* (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)
|
||||
* @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)
|
||||
* @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");
|
||||
System.out.println(parameters);
|
||||
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;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -531,13 +561,29 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
}
|
||||
|
||||
/* (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");
|
||||
System.out.println(parameters);
|
||||
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;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
@@ -642,6 +688,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
//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)
|
||||
* @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)
|
||||
* @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");
|
||||
System.out.println(parameters);
|
||||
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;
|
||||
} catch (java.lang.Exception ex) {
|
||||
ex.printStackTrace();
|
||||
|
||||
@@ -9,12 +9,12 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
@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)
|
||||
public interface OmdsServicePortType {
|
||||
|
||||
@@ -48,9 +48,9 @@ public interface OmdsServicePortType {
|
||||
|
||||
@WebMethod(action = "urn:calculateRechtsschutz")
|
||||
@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")
|
||||
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;
|
||||
|
||||
@WebMethod(action = "urn:createApplicationKfz")
|
||||
@@ -76,9 +76,9 @@ public interface OmdsServicePortType {
|
||||
|
||||
@WebMethod(action = "urn:createOfferRechtsschutz")
|
||||
@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")
|
||||
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;
|
||||
|
||||
@WebMethod(action = "urn:searchClaim")
|
||||
@@ -144,6 +144,13 @@ public interface OmdsServicePortType {
|
||||
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnfallRequestType parameters
|
||||
) 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")
|
||||
@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(
|
||||
@@ -193,6 +200,13 @@ public interface OmdsServicePortType {
|
||||
at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.OMDSPackageListRequest parameters
|
||||
) 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")
|
||||
@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(
|
||||
@@ -202,9 +216,9 @@ public interface OmdsServicePortType {
|
||||
|
||||
@WebMethod(action = "urn:createApplicationRechtsschutz")
|
||||
@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")
|
||||
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;
|
||||
|
||||
@WebMethod(action = "urn:deepLinkPartner")
|
||||
@@ -235,11 +249,18 @@ public interface OmdsServicePortType {
|
||||
at.vvo.omds.types.omds3Types.r1_6_0.servicetypes.DeepLinkClaimRequest parameters
|
||||
) 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")
|
||||
@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")
|
||||
at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequestType parameters
|
||||
at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequest parameters
|
||||
) throws ServiceFaultMsg;
|
||||
|
||||
@WebMethod(action = "urn:getOMDSPackage")
|
||||
@@ -284,6 +305,13 @@ public interface OmdsServicePortType {
|
||||
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kfz.CalculateKfzRequestType parameters
|
||||
) 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")
|
||||
@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(
|
||||
@@ -328,9 +356,9 @@ public interface OmdsServicePortType {
|
||||
|
||||
@WebMethod(action = "urn:submitApplicationRechtsschutz")
|
||||
@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")
|
||||
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;
|
||||
|
||||
@WebMethod(action = "urn:createOfferLeben")
|
||||
|
||||
@@ -16,11 +16,10 @@ import javax.jws.WebResult;
|
||||
import javax.jws.WebService;
|
||||
import javax.jws.soap.SOAPBinding;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.ws.soap.MTOMFeature;
|
||||
|
||||
/**
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
@@ -47,9 +46,7 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
}
|
||||
|
||||
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
|
||||
OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024));
|
||||
// OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
|
||||
// OmdsServicePortType port = ss.getOmdsServicePort();
|
||||
OmdsServicePortType port = ss.getOmdsServicePort();
|
||||
|
||||
{
|
||||
System.out.println("Invoking calculateLeben...");
|
||||
@@ -101,9 +98,9 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
}
|
||||
{
|
||||
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 {
|
||||
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);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
@@ -149,9 +146,9 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
}
|
||||
{
|
||||
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 {
|
||||
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);
|
||||
|
||||
} 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);
|
||||
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) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
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);
|
||||
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) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
System.out.println(e.toString());
|
||||
@@ -365,9 +386,9 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
}
|
||||
{
|
||||
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 {
|
||||
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);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
@@ -424,10 +445,22 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
}
|
||||
}
|
||||
{
|
||||
System.out.println("Invoking collectionChange...");
|
||||
at.vvo.omds.types.omds3Types.r1_6_0.on3vertrag.CollectionChangeRequestType _collectionChange_parameters = null;
|
||||
System.out.println("Invoking submitApplicationKranken...");
|
||||
at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.kranken.SubmitApplicationKrankenRequest _submitApplicationKranken_parameters = null;
|
||||
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);
|
||||
|
||||
} 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);
|
||||
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) {
|
||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||
System.out.println(e.toString());
|
||||
@@ -581,9 +626,9 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
}
|
||||
{
|
||||
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 {
|
||||
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);
|
||||
|
||||
} catch (ServiceFaultMsg e) {
|
||||
|
||||
@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
|
||||
|
||||
/**
|
||||
* 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
|
||||
*/
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<jaxb:bindings
|
||||
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"
|
||||
version="1.0"
|
||||
>
|
||||
|
||||
@@ -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
|
||||
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
|
||||
- neues Feld GesFormCdType in Sonst-Person
|
||||
- TIN für "Titel nachgestellt"
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?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 -->
|
||||
<xsd:schema xmlns:omds="urn:omds20" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:omds20" elementFormDefault="unqualified" attributeFormDefault="unqualified" version="212-02">
|
||||
<!-- 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="213-00">
|
||||
<xsd:element name="OMDS">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Version 212-02 - OMDS Arbeitsgruppe</xsd:documentation>
|
||||
<xsd:documentation>Version 213-00 - OMDS Arbeitsgruppe</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
@@ -43,7 +43,13 @@
|
||||
<xsd:attribute name="PaketInhCd" type="omds:PaketInhCd_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="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:simpleType>
|
||||
<xsd:restriction base="xsd:string">
|
||||
@@ -276,6 +282,20 @@
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</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:element name="NATUERLICHE_PERSON" type="omds:NATUERLICHE_PERSON_Type" abstract="false"/>
|
||||
<xsd:complexType name="NATUERLICHE_PERSON_Type">
|
||||
@@ -298,6 +318,8 @@
|
||||
<xsd:attribute name="Gebdat" type="omds:Datum" use="optional"/>
|
||||
<xsd:attribute name="LandesCd" type="omds:LandesCd_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:element name="SONSTIGE_PERSON" type="omds:SONSTIGE_PERSON_Type" abstract="false"/>
|
||||
<xsd:complexType name="SONSTIGE_PERSON_Type">
|
||||
@@ -318,6 +340,8 @@
|
||||
</xsd:attribute>
|
||||
<xsd:attribute name="SonstPersArtCd" type="omds:SonstPersArtCd_Type" use="required"/>
|
||||
<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:element name="VERTRAG" abstract="false">
|
||||
<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="PraemieNtoSp" 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:element name="RISIKO" type="omds:RISIKO_Type" abstract="false"/>
|
||||
<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:restriction>
|
||||
</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:annotation>
|
||||
<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 value="4">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Rechtschutzindex</xsd:documentation>
|
||||
<xsd:documentation>Rechtsschutzindex</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<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 value="R01">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Privat Rechtschutz</xsd:documentation>
|
||||
<xsd:documentation>Privat Rechtsschutz</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<xsd:enumeration value="R02">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Kfz-Rechtschutz</xsd:documentation>
|
||||
<xsd:documentation>Kfz-Rechtsschutz</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<xsd:enumeration value="R03">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Firmen-Rechtschutz</xsd:documentation>
|
||||
<xsd:documentation>Firmen-Rechtsschutz</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<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 value="AK">
|
||||
<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:enumeration>
|
||||
<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 value="RS">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Rechtschutz</xsd:documentation>
|
||||
<xsd:documentation>Rechtsschutz</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
<xsd:enumeration value="SS">
|
||||
@@ -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:annotation>
|
||||
</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:simpleType>
|
||||
<xsd:simpleType name="SprachCd_Type">
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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"/>
|
||||
<!-- Elemente, die von allen Services gemeinsam verwendet werden -->
|
||||
<xsd:element name="serviceFault" type="ServiceFault">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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"/>
|
||||
<!-- Beziehe Action Link -->
|
||||
<xsd:element name="loginRequest" type="LoginRequestType">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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:annotation>
|
||||
<xsd:documentation>State-Changes</xsd:documentation>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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:omds3ServiceTypes-1-1-0" schemaLocation="omds3ServiceTypes.xsd"/>
|
||||
<!--Prozessobjekte Berechnung, Offert, Antrag - Spartenübergreifend-->
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
|
||||
<xsd:annotation>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
|
||||
<xsd:complexType name="VerkaufsproduktKranken_Type" final="#all">
|
||||
@@ -20,7 +20,7 @@
|
||||
<xsd:documentation>Möglichkeit Kranken-fremde Bausteine einzugliedern.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</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:documentation>Die Risikodaten der versicherten Interessen. In der Regel sind dies Versicherte Personen, die im Produktbaum referenziert werden.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
@@ -78,7 +78,7 @@
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<!-- Vorgefertigte Bausteine -->
|
||||
<xsd:complexType name="ProduktSonderklasse_Type">
|
||||
<xsd:complexType name="ProduktStationaer_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Produkt</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
@@ -86,17 +86,20 @@
|
||||
<xsd:extension base="ProduktKranken_Type"/>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProduktPrivatarzt_Type">
|
||||
<xsd:complexType name="ProduktAmbulant_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Produkt</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ProduktKranken_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Jahreslimit"/>
|
||||
<xsd:element name="AlternativeBehandlungen"/>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
<xsd:extension base="ProduktKranken_Type"/>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProduktZahn_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Produkt</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="ProduktKranken_Type"/>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="ProduktTaggeld_Type">
|
||||
@@ -122,6 +125,27 @@
|
||||
<xsd:documentation>Produkt</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</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:annotation>
|
||||
<xsd:documentation>Elementarprodukt</xsd:documentation>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
|
||||
<xsd:complexType name="VerkaufsproduktLeben_Type" final="#all">
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||
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">
|
||||
<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:complexType name="FinderRequest_Type">
|
||||
<xsd:annotation>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
|
||||
<xsd:complexType name="VerkaufsproduktRechtsschutz_Type" final="#all">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
|
||||
<xsd:complexType name="VersichertesObjektSachPrivat_Type">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
|
||||
<xsd:complexType name="VerkaufsproduktUnfall_Type" final="#all">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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:element name="GetPoliciesOfPartnerRequest" type="GetPoliciesOfPartnerRequest_Type">
|
||||
<xsd:annotation>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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"/>
|
||||
<!-- Aenderung Personenbezogener Daten -->
|
||||
<xsd:complexType name="GetPartnerRequest_Type">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?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: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"/>
|
||||
<!--Schadenservices Versicherungsunternehmen -->
|
||||
<xsd:complexType name="CheckClaimRequest_Type">
|
||||
|
||||
@@ -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"
|
||||
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">
|
||||
<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:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" schemaLocation="omds3_ON7_Schaden.xsd"/>
|
||||
<!--Schadenservices Versicherungsunternehmen -->
|
||||
|
||||
Reference in New Issue
Block a user