Variante zwei Konvertierungshilfe aus WSDL entfernt, Objekte nach CommonServiceTypes verschoben, Umbenennungen in den Bindings angepasst, Java neu generiert.

This commit is contained in:
2022-06-02 17:01:11 +02:00
parent 9292fb06f6
commit c07f5aac63
59 changed files with 885 additions and 1971 deletions

View File

@@ -26,14 +26,13 @@ import javax.xml.bind.annotation.XmlType;
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/>
* <element name="Konvertierung" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="GewaehlteAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion2_Type" minOccurs="0"/>
* <element name="Konvertierungsaktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
@@ -53,11 +52,9 @@ import javax.xml.bind.annotation.XmlType;
"bezeichnung",
"bedingungen",
"meldungen",
"kombinationen",
"konvertierung"
})
@XmlSeeAlso({
KonvertierungBaustein2Type.class,
ProduktbausteinType.class
})
public abstract class BasisProduktbausteinType {
@@ -70,8 +67,6 @@ public abstract class BasisProduktbausteinType {
protected List<String> bedingungen;
@XmlElement(name = "Meldungen")
protected List<ServiceFault> meldungen;
@XmlElement(name = "Kombinationen")
protected KombinationenType kombinationen;
@XmlElement(name = "Konvertierung")
protected BasisProduktbausteinType.Konvertierung konvertierung;
@@ -181,30 +176,6 @@ public abstract class BasisProduktbausteinType {
return this.meldungen;
}
/**
* Ruft den Wert der kombinationen-Eigenschaft ab.
*
* @return
* possible object is
* {@link KombinationenType }
*
*/
public KombinationenType getKombinationen() {
return kombinationen;
}
/**
* Legt den Wert der kombinationen-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link KombinationenType }
*
*/
public void setKombinationen(KombinationenType value) {
this.kombinationen = value;
}
/**
* Ruft den Wert der konvertierung-Eigenschaft ab.
*
@@ -241,7 +212,7 @@ public abstract class BasisProduktbausteinType {
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="GewaehlteAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion2_Type" minOccurs="0"/&gt;
* &lt;element name="Konvertierungsaktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
@@ -253,14 +224,14 @@ public abstract class BasisProduktbausteinType {
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"ersetztId",
"gewaehlteAktion"
"konvertierungsaktion"
})
public static class Konvertierung {
@XmlElement(name = "ErsetztId", required = true)
protected String ersetztId;
@XmlElement(name = "GewaehlteAktion")
protected Konvertierungsaktion2Type gewaehlteAktion;
@XmlElement(name = "Konvertierungsaktion")
protected KonvertierungsaktionType konvertierungsaktion;
/**
* Ruft den Wert der ersetztId-Eigenschaft ab.
@@ -287,27 +258,27 @@ public abstract class BasisProduktbausteinType {
}
/**
* Ruft den Wert der gewaehlteAktion-Eigenschaft ab.
* Ruft den Wert der konvertierungsaktion-Eigenschaft ab.
*
* @return
* possible object is
* {@link Konvertierungsaktion2Type }
* {@link KonvertierungsaktionType }
*
*/
public Konvertierungsaktion2Type getGewaehlteAktion() {
return gewaehlteAktion;
public KonvertierungsaktionType getKonvertierungsaktion() {
return konvertierungsaktion;
}
/**
* Legt den Wert der gewaehlteAktion-Eigenschaft fest.
* Legt den Wert der konvertierungsaktion-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Konvertierungsaktion2Type }
* {@link KonvertierungsaktionType }
*
*/
public void setGewaehlteAktion(Konvertierungsaktion2Type value) {
this.gewaehlteAktion = value;
public void setKonvertierungsaktion(KonvertierungsaktionType value) {
this.konvertierungsaktion = value;
}
}

View File

@@ -9,9 +9,7 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalRequest;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalRequest2;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeRequest;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeRequest2;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.GetApplicationDocumentRequestType;
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType;
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageRequest;
@@ -54,18 +52,16 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptRequest;
"korrelationsId"
})
@XmlSeeAlso({
GetApplicationDocumentRequestType.class,
CommonSearchRequestType.class,
CheckClaimRequestType.class,
SubmitClaimRequestType.class,
GetClaimRequestType.class,
CommonSearchRequestType.class,
GetApplicationDocumentRequestType.class,
ConversionProposalRequest2 .class,
ConversionScopeRequest2 .class,
SubmitReceiptRequest.class,
CheckCoverageRequest.class,
ConversionProposalRequest.class,
ConversionScopeRequest.class,
CommonProcessRequestType.class,
SubmitReceiptRequest.class,
CheckCoverageRequest.class
CommonProcessRequestType.class
})
public abstract class CommonRequestType {

View File

@@ -11,9 +11,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalResponse;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalResponse2;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeResponse;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeResponse2;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.GetApplicationDocumentResponseType;
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType;
import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageResponse;
@@ -54,18 +52,16 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptResponse;
"beendet"
})
@XmlSeeAlso({
GetApplicationDocumentResponseType.class,
CommonSearchResponseType.class,
CheckClaimResponseType.class,
SubmitClaimResponseType.class,
GetClaimResponseType.class,
CommonSearchResponseType.class,
GetApplicationDocumentResponseType.class,
ConversionProposalResponse2 .class,
ConversionScopeResponse2 .class,
SubmitReceiptResponse.class,
CheckCoverageResponse.class,
ConversionProposalResponse.class,
ConversionScopeResponse.class,
CommonProcessResponseType.class,
SubmitReceiptResponse.class,
CheckCoverageResponse.class
CommonProcessResponseType.class
})
public abstract class CommonResponseType {

View File

@@ -50,10 +50,10 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.LeistungsartUnfallTy
"versicherungssumme"
})
@XmlSeeAlso({
LeistungsartUnfallType.class,
TarifLebenType.class,
ElementarproduktSachPrivatType.class,
ElementarproduktRechtsschutzType.class,
LeistungsartUnfallType.class,
ElementarproduktSachPrivatType.class,
TarifLebenType.class,
ElementarproduktKrankenType.class
})
public abstract class ElementarproduktGenerischType

View File

@@ -44,9 +44,9 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.VerkehrsrechtsschutzKfz
"zusaetzlicheElementarproduktdaten"
})
@XmlSeeAlso({
ElementarproduktGenerischType.class,
ElementarproduktKfzType.class,
VerkehrsrechtsschutzKfzType.class
VerkehrsrechtsschutzKfzType.class,
ElementarproduktGenerischType.class
})
public abstract class ElementarproduktType
extends ProduktbausteinType

View File

@@ -6,7 +6,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.KonvertierungsumfangVertragType;
/**

View File

@@ -5,6 +5,7 @@ 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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
@@ -23,6 +24,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;sequence&gt;
* &lt;element name="Kombination" type="{urn:omds3CommonServiceTypes-1-1-0}Kombination_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;attribute name="zulaessige" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
@@ -38,6 +40,8 @@ public class KombinationenType {
@XmlElement(name = "Kombination", required = true)
protected List<KombinationType> kombinationen;
@XmlAttribute(name = "zulaessige", namespace = "urn:omds3CommonServiceTypes-1-1-0")
protected Boolean zulaessige;
/**
* <p>Die Liste der zulässigen Kombinationen.</p>
@@ -69,4 +73,32 @@ public class KombinationenType {
return this.kombinationen;
}
/**
* Ruft den Wert der zulaessige-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isZulaessige() {
if (zulaessige == null) {
return true;
} else {
return zulaessige;
}
}
/**
* Legt den Wert der zulaessige-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setZulaessige(Boolean value) {
this.zulaessige = value;
}
}

View File

@@ -1,106 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_8_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;
/**
* Typ um die Behandlung der Unterbausteine in der Konvertierungshilfe zu spezifizieren
*
* <p>Java-Klasse für KonvertierungBaustein2_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="KonvertierungBaustein2_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}BasisProduktbaustein_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="ZulaessigeAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion2_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Zusatzinformation" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungZusatzinformation_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KonvertierungBaustein2_Type", propOrder = {
"zulaessigeAktion",
"zusatzinformation"
})
public class KonvertierungBaustein2Type
extends BasisProduktbausteinType
{
@XmlElement(name = "ZulaessigeAktion")
protected List<Konvertierungsaktion2Type> zulaessigeAktion;
@XmlElement(name = "Zusatzinformation")
protected List<KonvertierungZusatzinformationType> zusatzinformation;
/**
* Gets the value of the zulaessigeAktion 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 zulaessigeAktion property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZulaessigeAktion().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Konvertierungsaktion2Type }
*
*
*/
public List<Konvertierungsaktion2Type> getZulaessigeAktion() {
if (zulaessigeAktion == null) {
zulaessigeAktion = new ArrayList<Konvertierungsaktion2Type>();
}
return this.zulaessigeAktion;
}
/**
* Gets the value of the zusatzinformation 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 zusatzinformation property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusatzinformation().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link KonvertierungZusatzinformationType }
*
*
*/
public List<KonvertierungZusatzinformationType> getZusatzinformation() {
if (zusatzinformation == null) {
zusatzinformation = new ArrayList<KonvertierungZusatzinformationType>();
}
return this.zusatzinformation;
}
}

View File

@@ -1,5 +1,5 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common;
package at.vvo.omds.types.omds3Types.r1_8_0.common;
import java.util.ArrayList;
import java.util.List;
@@ -21,7 +21,8 @@ import javax.xml.bind.annotation.XmlType;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Id" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
* &lt;element name="AntragsId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Bezeichnung" minOccurs="0"&gt;
* &lt;simpleType&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
@@ -29,9 +30,8 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="ZulaessigeAktion" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsaktion_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="GewaehlteAktion" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsaktion_Type" minOccurs="0"/&gt;
* &lt;element name="Zusatzinformation" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}KonvertierungZusatzinformation_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="ZulaessigeAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="GewaehlteAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
@@ -42,47 +42,71 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KonvertierungBaustein_Type", propOrder = {
"id",
"ersetztId",
"antragsId",
"bezeichnung",
"zulaessigeAktionen",
"gewaehlteAktion",
"zusatzinformation"
"gewaehlteAktion"
})
public class KonvertierungBausteinType {
@XmlElement(name = "Id", required = true)
protected String id;
@XmlElement(name = "ErsetztId", required = true)
protected Object ersetztId;
@XmlElement(name = "AntragsId")
protected String antragsId;
@XmlElement(name = "Bezeichnung")
protected String bezeichnung;
@XmlElement(name = "ZulaessigeAktion")
protected List<KonvertierungsaktionType> zulaessigeAktionen;
@XmlElement(name = "GewaehlteAktion")
protected KonvertierungsaktionType gewaehlteAktion;
@XmlElement(name = "Zusatzinformation")
protected List<KonvertierungZusatzinformationType> zusatzinformation;
/**
* Ruft den Wert der id-Eigenschaft ab.
* Ruft den Wert der ersetztId-Eigenschaft ab.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getErsetztId() {
return ersetztId;
}
/**
* Legt den Wert der ersetztId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setErsetztId(Object value) {
this.ersetztId = value;
}
/**
* Ruft den Wert der antragsId-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
public String getAntragsId() {
return antragsId;
}
/**
* Legt den Wert der id-Eigenschaft fest.
* Legt den Wert der antragsId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
public void setAntragsId(String value) {
this.antragsId = value;
}
/**
@@ -165,33 +189,4 @@ public class KonvertierungBausteinType {
this.gewaehlteAktion = value;
}
/**
* Gets the value of the zusatzinformation 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 zusatzinformation property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getZusatzinformation().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link KonvertierungZusatzinformationType }
*
*
*/
public List<KonvertierungZusatzinformationType> getZusatzinformation() {
if (zusatzinformation == null) {
zusatzinformation = new ArrayList<KonvertierungZusatzinformationType>();
}
return this.zusatzinformation;
}
}

View File

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

View File

@@ -1,70 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_8_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Aktion für einen Baustein
*
* <p>Java-Klasse für Konvertierungsaktion2_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Konvertierungsaktion2_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Art" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Konvertierungsaktion2_Type", propOrder = {
"art"
})
@XmlSeeAlso({
KonvertierungsaktionBelassen2Type.class,
KonvertierungsaktionUebernehmen2Type.class,
KonvertierungsaktionStorno2Type.class
})
public abstract class Konvertierungsaktion2Type {
@XmlElement(name = "Art")
protected Object art;
/**
* Ruft den Wert der art-Eigenschaft ab.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getArt() {
return art;
}
/**
* Legt den Wert der art-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setArt(Object value) {
this.art = value;
}
}

View File

@@ -1,34 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_8_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Belassen-Aktion (Keine Aktion, der Baustein bleibt weiter in altem Vertrag)
*
* <p>Java-Klasse für KonvertierungsaktionBelassen2_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="KonvertierungsaktionBelassen2_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion2_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KonvertierungsaktionBelassen2_Type")
public class KonvertierungsaktionBelassen2Type
extends Konvertierungsaktion2Type
{
}

View File

@@ -1,5 +1,5 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common;
package at.vvo.omds.types.omds3Types.r1_8_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlType;
* <pre>
* &lt;complexType name="KonvertierungsaktionBelassen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsaktion_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;

View File

@@ -1,34 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_8_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Storno-Aktion (der Baustein wird im alten Vertrag storniert und nicht in den neuen übernommen)
*
* <p>Java-Klasse für KonvertierungsaktionStorno2_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="KonvertierungsaktionStorno2_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion2_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KonvertierungsaktionStorno2_Type")
public class KonvertierungsaktionStorno2Type
extends Konvertierungsaktion2Type
{
}

View File

@@ -1,5 +1,5 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common;
package at.vvo.omds.types.omds3Types.r1_8_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlType;
* <pre>
* &lt;complexType name="KonvertierungsaktionStorno_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsaktion_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;

View File

@@ -1,5 +1,5 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common;
package at.vvo.omds.types.omds3Types.r1_8_0.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;

View File

@@ -1,73 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_8_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;
/**
* Uebernehmen-Aktion (der Baustein wird in den Folgevertrag uebernommen)
*
* <p>Java-Klasse für KonvertierungsaktionUebernehmen2_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="KonvertierungsaktionUebernehmen2_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion2_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein2_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KonvertierungsaktionUebernehmen2_Type", propOrder = {
"baustein"
})
public class KonvertierungsaktionUebernehmen2Type
extends Konvertierungsaktion2Type
{
@XmlElement(name = "Baustein")
protected List<KonvertierungBaustein2Type> baustein;
/**
* Gets the value of the baustein 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 baustein property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getBaustein().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link KonvertierungBaustein2Type }
*
*
*/
public List<KonvertierungBaustein2Type> getBaustein() {
if (baustein == null) {
baustein = new ArrayList<KonvertierungBaustein2Type>();
}
return this.baustein;
}
}

View File

@@ -1,5 +1,5 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common;
package at.vvo.omds.types.omds3Types.r1_8_0.common;
import java.util.ArrayList;
import java.util.List;
@@ -7,7 +7,6 @@ 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_8_0.common.KombinationenType;
/**
@@ -20,9 +19,9 @@ import at.vvo.omds.types.omds3Types.r1_8_0.common.KombinationenType;
* <pre>
* &lt;complexType name="KonvertierungsaktionUebernehmen_Type"&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsaktion_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Baustein" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}KonvertierungBaustein_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -34,7 +33,7 @@ import at.vvo.omds.types.omds3Types.r1_8_0.common.KombinationenType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KonvertierungsaktionUebernehmen_Type", propOrder = {
"baustein",
"bausteine",
"kombinationen"
})
public class KonvertierungsaktionUebernehmenType
@@ -42,23 +41,24 @@ public class KonvertierungsaktionUebernehmenType
{
@XmlElement(name = "Baustein")
protected List<KonvertierungBausteinType> baustein;
protected List<KonvertierungBausteinType> bausteine;
@XmlElement(name = "Kombinationen")
protected KombinationenType kombinationen;
/**
* Gets the value of the baustein property.
* <p>Die Liste der Bausteine, die in der Konvertierungsaktion behandelt werden.</p>
* Gets the value of the bausteine 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 baustein property.
* This is why there is not a <CODE>set</CODE> method for the bausteine property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getBaustein().add(newItem);
* getBausteine().add(newItem);
* </pre>
*
*
@@ -68,11 +68,11 @@ public class KonvertierungsaktionUebernehmenType
*
*
*/
public List<KonvertierungBausteinType> getBaustein() {
if (baustein == null) {
baustein = new ArrayList<KonvertierungBausteinType>();
public List<KonvertierungBausteinType> getBausteine() {
if (bausteine == null) {
bausteine = new ArrayList<KonvertierungBausteinType>();
}
return this.baustein;
return this.bausteine;
}
/**

View File

@@ -1,5 +1,5 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common;
package at.vvo.omds.types.omds3Types.r1_8_0.common;
import java.util.ArrayList;
import java.util.List;
@@ -8,12 +8,10 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_8_0.common.ErsatzpolizzeType;
import at.vvo.omds.types.omds3Types.r1_8_0.common.KombinationenType;
/**
* Spezifiziert die Konvertierung eines Vertrags
* Spezifiziert die Konvertierung eines Vertrags in einen neuen Vertrag
*
* <p>Java-Klasse für KonvertierungsumfangVertrag_Type complex type.
*
@@ -25,7 +23,7 @@ import at.vvo.omds.types.omds3Types.r1_8_0.common.KombinationenType;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="Sparte" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}KonvertierungBaustein_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Baustein" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein_Type" maxOccurs="unbounded"/&gt;
* &lt;element name="Kombinationen" type="{urn:omds3CommonServiceTypes-1-1-0}Kombinationen_Type" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
@@ -38,7 +36,7 @@ import at.vvo.omds.types.omds3Types.r1_8_0.common.KombinationenType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KonvertierungsumfangVertrag_Type", propOrder = {
"bezeichnung",
"sparten",
"bausteine",
"kombinationen"
})
@XmlSeeAlso({
@@ -50,8 +48,8 @@ public class KonvertierungsumfangVertragType
@XmlElement(name = "Bezeichnung")
protected String bezeichnung;
@XmlElement(name = "Sparte", required = true)
protected List<KonvertierungBausteinType> sparten;
@XmlElement(name = "Baustein", required = true)
protected List<KonvertierungBausteinType> bausteine;
@XmlElement(name = "Kombinationen")
protected KombinationenType kombinationen;
@@ -80,19 +78,19 @@ public class KonvertierungsumfangVertragType
}
/**
* <p>Die Liste der Sparten, die in der Konvertierungsanforderung behandelt werden.</p>
* Gets the value of the sparten property.
* <p>Die Liste der Bausteine, die in der Konvertierungsanforderung behandelt werden.</p>
* Gets the value of the bausteine 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 sparten property.
* This is why there is not a <CODE>set</CODE> method for the bausteine property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getSparten().add(newItem);
* getBausteine().add(newItem);
* </pre>
*
*
@@ -102,11 +100,11 @@ public class KonvertierungsumfangVertragType
*
*
*/
public List<KonvertierungBausteinType> getSparten() {
if (sparten == null) {
sparten = new ArrayList<KonvertierungBausteinType>();
public List<KonvertierungBausteinType> getBausteine() {
if (bausteine == null) {
bausteine = new ArrayList<KonvertierungBausteinType>();
}
return this.sparten;
return this.bausteine;
}
/**

View File

@@ -45,6 +45,14 @@ public class ObjectFactory {
return new GMSGType();
}
/**
* Create an instance of {@link ZahlwegType }
*
*/
public ZahlwegType createZahlwegType() {
return new ZahlwegType();
}
/**
* Create an instance of {@link ProzessDokumentType }
*
@@ -54,11 +62,11 @@ public class ObjectFactory {
}
/**
* Create an instance of {@link ZahlwegType }
* Create an instance of {@link ServiceFault }
*
*/
public ZahlwegType createZahlwegType() {
return new ZahlwegType();
public ServiceFault createServiceFault() {
return new ServiceFault();
}
/**
@@ -69,14 +77,6 @@ public class ObjectFactory {
return new ObjektIdType();
}
/**
* Create an instance of {@link TechnicalKeyValueType }
*
*/
public TechnicalKeyValueType createTechnicalKeyValueType() {
return new TechnicalKeyValueType();
}
/**
* Create an instance of {@link PersonType }
*
@@ -85,38 +85,6 @@ public class ObjectFactory {
return new PersonType();
}
/**
* Create an instance of {@link ResponseStatusType }
*
*/
public ResponseStatusType createResponseStatusType() {
return new ResponseStatusType();
}
/**
* Create an instance of {@link DokumentInfoType }
*
*/
public DokumentInfoType createDokumentInfoType() {
return new DokumentInfoType();
}
/**
* Create an instance of {@link DateianhangType }
*
*/
public DateianhangType createDateianhangType() {
return new DateianhangType();
}
/**
* Create an instance of {@link ServiceFault }
*
*/
public ServiceFault createServiceFault() {
return new ServiceFault();
}
/**
* Create an instance of {@link AdresseType }
*
@@ -141,6 +109,14 @@ public class ObjectFactory {
return new ElementIdType();
}
/**
* Create an instance of {@link ResponseStatusType }
*
*/
public ResponseStatusType createResponseStatusType() {
return new ResponseStatusType();
}
/**
* Create an instance of {@link Referenz }
*
@@ -157,6 +133,14 @@ public class ObjectFactory {
return new LegitimationType();
}
/**
* Create an instance of {@link DateianhangType }
*
*/
public DateianhangType createDateianhangType() {
return new DateianhangType();
}
/**
* Create an instance of {@link DokumentBinaryDataType }
*
@@ -253,38 +237,6 @@ public class ObjectFactory {
return new BeteiligtePersonVertragType();
}
/**
* Create an instance of {@link KonvertierungBaustein2Type }
*
*/
public KonvertierungBaustein2Type createKonvertierungBaustein2Type() {
return new KonvertierungBaustein2Type();
}
/**
* Create an instance of {@link KonvertierungsaktionBelassen2Type }
*
*/
public KonvertierungsaktionBelassen2Type createKonvertierungsaktionBelassen2Type() {
return new KonvertierungsaktionBelassen2Type();
}
/**
* Create an instance of {@link KonvertierungsaktionUebernehmen2Type }
*
*/
public KonvertierungsaktionUebernehmen2Type createKonvertierungsaktionUebernehmen2Type() {
return new KonvertierungsaktionUebernehmen2Type();
}
/**
* Create an instance of {@link KonvertierungsaktionStorno2Type }
*
*/
public KonvertierungsaktionStorno2Type createKonvertierungsaktionStorno2Type() {
return new KonvertierungsaktionStorno2Type();
}
/**
* Create an instance of {@link PraemieType }
*
@@ -301,6 +253,14 @@ public class ObjectFactory {
return new VersicherungssteuerType();
}
/**
* Create an instance of {@link TechnicalKeyValueType }
*
*/
public TechnicalKeyValueType createTechnicalKeyValueType() {
return new TechnicalKeyValueType();
}
/**
* Create an instance of {@link VertragspersonType }
*
@@ -469,6 +429,54 @@ public class ObjectFactory {
return new ErsatzpolizzeMitAendGrundType();
}
/**
* Create an instance of {@link KonvertierungsumfangVertragType }
*
*/
public KonvertierungsumfangVertragType createKonvertierungsumfangVertragType() {
return new KonvertierungsumfangVertragType();
}
/**
* Create an instance of {@link KonvertierungBausteinType }
*
*/
public KonvertierungBausteinType createKonvertierungBausteinType() {
return new KonvertierungBausteinType();
}
/**
* Create an instance of {@link KonvertierungsaktionBelassenType }
*
*/
public KonvertierungsaktionBelassenType createKonvertierungsaktionBelassenType() {
return new KonvertierungsaktionBelassenType();
}
/**
* Create an instance of {@link KonvertierungsaktionUebernehmenType }
*
*/
public KonvertierungsaktionUebernehmenType createKonvertierungsaktionUebernehmenType() {
return new KonvertierungsaktionUebernehmenType();
}
/**
* Create an instance of {@link KonvertierungsaktionStornoType }
*
*/
public KonvertierungsaktionStornoType createKonvertierungsaktionStornoType() {
return new KonvertierungsaktionStornoType();
}
/**
* Create an instance of {@link DokumentInfoType }
*
*/
public DokumentInfoType createDokumentInfoType() {
return new DokumentInfoType();
}
/**
* Create an instance of {@link ZahlungsdatenType }
*
@@ -837,14 +845,6 @@ public class ObjectFactory {
return new GMSGType.SteuerlichAnsaessig();
}
/**
* Create an instance of {@link ProzessDokumentType.Autorisierungen }
*
*/
public ProzessDokumentType.Autorisierungen createProzessDokumentTypeAutorisierungen() {
return new ProzessDokumentType.Autorisierungen();
}
/**
* Create an instance of {@link ZahlwegType.Kundenkonto }
*
@@ -853,6 +853,14 @@ public class ObjectFactory {
return new ZahlwegType.Kundenkonto();
}
/**
* Create an instance of {@link ProzessDokumentType.Autorisierungen }
*
*/
public ProzessDokumentType.Autorisierungen createProzessDokumentTypeAutorisierungen() {
return new ProzessDokumentType.Autorisierungen();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link ServiceFault }{@code >}
*

View File

@@ -29,9 +29,9 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SchadenmelderVermittlerTyp
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ObjektSpezifikation_Type")
@XmlSeeAlso({
SchadenmelderVermittlerType.class,
PolizzenObjektSpezifikationType.class,
SchadenObjektSpezifikationType.class
SchadenObjektSpezifikationType.class,
SchadenmelderVermittlerType.class
})
public abstract class ObjektSpezifikationType {

View File

@@ -44,8 +44,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.ProduktSachPriva
"beschreibungTxt"
})
@XmlSeeAlso({
ProduktSachPrivatType.class,
ProduktRechtsschutzType.class,
ProduktSachPrivatType.class,
ProduktMitVpType.class
})
public abstract class ProduktGenerischType

View File

@@ -52,9 +52,9 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.ZusatzproduktKfzType;
"zusaetzlicheProduktdaten"
})
@XmlSeeAlso({
ProduktGenerischType.class,
ProduktKfzType.class,
ZusatzproduktKfzType.class
ZusatzproduktKfzType.class,
ProduktGenerischType.class
})
public abstract class ProduktType
extends ProduktbausteinType

View File

@@ -29,7 +29,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;/restriction&gt;
* &lt;/simpleType&gt;
* &lt;/element&gt;
* &lt;element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}integer"/&gt;
* &lt;element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/&gt;
* &lt;element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="elementReference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;/sequence&gt;
@@ -51,7 +51,6 @@ public class ServiceFault {
@XmlElement(required = true)
protected BigInteger errorType;
@XmlElement(required = true)
protected BigInteger errorCode;
@XmlElement(required = true)
protected String errorMsg;

View File

@@ -47,10 +47,10 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.VerkaufsproduktUnfal
"beschreibungTxt"
})
@XmlSeeAlso({
VerkaufsproduktUnfallType.class,
VerkaufsproduktLebenType.class,
VerkaufsproduktSachPrivatType.class,
VerkaufsproduktRechtsschutzType.class,
VerkaufsproduktUnfallType.class,
VerkaufsproduktSachPrivatType.class,
VerkaufsproduktLebenType.class,
VerkaufsproduktKrankenType.class
})
public abstract class VerkaufsproduktGenerischType

View File

@@ -52,8 +52,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.VerkaufsproduktKfzType;
"zusaetzlicheVerkaufproduktdaten"
})
@XmlSeeAlso({
VerkaufsproduktGenerischType.class,
VerkaufsproduktKfzType.class
VerkaufsproduktKfzType.class,
VerkaufsproduktGenerischType.class
})
public abstract class VerkaufsproduktType
extends ProduktbausteinType

View File

@@ -39,11 +39,11 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.VersichertesObje
"attributMetadaten"
})
@XmlSeeAlso({
VersichertePersonType.class,
VersicherteLiegenschaftType.class,
VersichertesObjektSachPrivatType.class,
RisikoHaushaltType.class,
RisikoGebaeudeType.class,
VersichertePersonType.class,
VersicherteLiegenschaftType.class
RisikoGebaeudeType.class
})
public abstract class VersichertesInteresseMitAttributMetadatenType
extends VersichertesInteresseType

View File

@@ -24,6 +24,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
* &lt;element name="ZusaetzlicheRisikodaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheRisikodaten_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" /&gt;
@@ -36,6 +37,7 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VersichertesInteresse_Type", propOrder = {
"ersetztId",
"zusaetzlicheRisikodaten"
})
@XmlSeeAlso({
@@ -44,12 +46,38 @@ import javax.xml.bind.annotation.XmlType;
})
public abstract class VersichertesInteresseType {
@XmlElement(name = "ErsetztId")
protected String ersetztId;
@XmlElement(name = "ZusaetzlicheRisikodaten")
protected List<ZusaetzlicheRisikodatenType> zusaetzlicheRisikodaten;
@XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
@XmlSchemaType(name = "unsignedShort")
protected int lfnr;
/**
* Ruft den Wert der ersetztId-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getErsetztId() {
return ersetztId;
}
/**
* Legt den Wert der ersetztId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setErsetztId(String value) {
this.ersetztId = value;
}
/**
* Gets the value of the zusaetzlicheRisikodaten property.
*

View File

@@ -55,8 +55,8 @@ import javax.xml.bind.annotation.XmlType;
"zusaetzlicheVorversicherungsdaten"
})
@XmlSeeAlso({
VorversicherungType.class,
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.VorversicherungenKfzType.VorversicherungKfz.class,
VorversicherungType.class
})
public class VorversicherungenDetailType {

View File

@@ -29,8 +29,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.VorversicherungenKfzTyp
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Vorversicherungen_Type")
@XmlSeeAlso({
VorversicherungenImplType.class,
VorversicherungenKfzType.class
VorversicherungenKfzType.class,
VorversicherungenImplType.class
})
public abstract class VorversicherungenType {

View File

@@ -40,8 +40,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallReque
})
@XmlSeeAlso({
CalculateUnfallRequestType.class,
CalculateLebenRequestType.class,
CalculateSachPrivatRequestType.class,
CalculateLebenRequestType.class,
CalculateKrankenRequest.class,
CalculateRechtsschutzRequest.class
})

View File

@@ -34,8 +34,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallRespo
@XmlType(name = "CalculateResponseGen_Type")
@XmlSeeAlso({
CalculateUnfallResponseType.class,
CalculateLebenResponseType.class,
CalculateSachPrivatResponseType.class,
CalculateLebenResponseType.class,
CalculateKrankenResponse.class,
CalculateRechtsschutzResponse.class
})

View File

@@ -1,74 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Konvertierungsplan" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsumfang_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"konvertierungsplan"
})
@XmlRootElement(name = "ConversionProposalRequest2")
public class ConversionProposalRequest2
extends CommonRequestType
{
@XmlElement(name = "Konvertierungsplan", required = true)
protected List<KonvertierungsumfangType> konvertierungsplan;
/**
* Gets the value of the konvertierungsplan 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 konvertierungsplan property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getKonvertierungsplan().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link KonvertierungsumfangType }
*
*
*/
public List<KonvertierungsumfangType> getKonvertierungsplan() {
if (konvertierungsplan == null) {
konvertierungsplan = new ArrayList<KonvertierungsumfangType>();
}
return this.konvertierungsplan;
}
}

View File

@@ -1,137 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType;
import at.vvo.omds.types.omds3Types.r1_8_0.common.ErsatzpolizzeType;
import at.vvo.omds.types.omds3Types.r1_8_0.common.ProzessDokHandoutType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Vorschlag" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type" minOccurs="0"/&gt;
* &lt;element name="Dokument" type="{urn:omds3CommonServiceTypes-1-1-0}ProzessDokHandout_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Ersatzpolizze" type="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"vorschlag",
"dokument",
"ersatzpolizze"
})
@XmlRootElement(name = "ConversionProposalResponse2")
public class ConversionProposalResponse2
extends CommonResponseType
{
@XmlElement(name = "Vorschlag")
protected SpezAntragType vorschlag;
@XmlElement(name = "Dokument")
protected List<ProzessDokHandoutType> dokument;
@XmlElement(name = "Ersatzpolizze")
protected List<ErsatzpolizzeType> ersatzpolizze;
/**
* Ruft den Wert der vorschlag-Eigenschaft ab.
*
* @return
* possible object is
* {@link SpezAntragType }
*
*/
public SpezAntragType getVorschlag() {
return vorschlag;
}
/**
* Legt den Wert der vorschlag-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SpezAntragType }
*
*/
public void setVorschlag(SpezAntragType value) {
this.vorschlag = value;
}
/**
* Gets the value of the dokument 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 dokument property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getDokument().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ProzessDokHandoutType }
*
*
*/
public List<ProzessDokHandoutType> getDokument() {
if (dokument == null) {
dokument = new ArrayList<ProzessDokHandoutType>();
}
return this.dokument;
}
/**
* Gets the value of the ersatzpolizze 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 ersatzpolizze property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getErsatzpolizze().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ErsatzpolizzeType }
*
*
*/
public List<ErsatzpolizzeType> getErsatzpolizze() {
if (ersatzpolizze == null) {
ersatzpolizze = new ArrayList<ErsatzpolizzeType>();
}
return this.ersatzpolizze;
}
}

View File

@@ -1,168 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonRequestType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Vertrag" maxOccurs="unbounded"&gt;
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Polizzennr" type="{urn:omds20}Polizzennr"/&gt;
* &lt;element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* &lt;/element&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"vertrag"
})
@XmlRootElement(name = "ConversionScopeRequest2")
public class ConversionScopeRequest2
extends CommonRequestType
{
@XmlElement(name = "Vertrag", required = true)
protected List<ConversionScopeRequest2 .Vertrag> vertrag;
/**
* Gets the value of the vertrag 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 vertrag property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getVertrag().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ConversionScopeRequest2 .Vertrag }
*
*
*/
public List<ConversionScopeRequest2 .Vertrag> getVertrag() {
if (vertrag == null) {
vertrag = new ArrayList<ConversionScopeRequest2 .Vertrag>();
}
return this.vertrag;
}
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Polizzennr" type="{urn:omds20}Polizzennr"/&gt;
* &lt;element name="VertragsID" type="{urn:omds20}VertragsID" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"polizzennr",
"vertragsID"
})
public static class Vertrag {
@XmlElement(name = "Polizzennr", required = true)
protected String polizzennr;
@XmlElement(name = "VertragsID")
protected String vertragsID;
/**
* Ruft den Wert der polizzennr-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolizzennr() {
return polizzennr;
}
/**
* Legt den Wert der polizzennr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolizzennr(String value) {
this.polizzennr = value;
}
/**
* Ruft den Wert der vertragsID-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVertragsID() {
return vertragsID;
}
/**
* Legt den Wert der vertragsID-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVertragsID(String value) {
this.vertragsID = value;
}
}
}

View File

@@ -1,74 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_8_0.common.CommonResponseType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type"&gt;
* &lt;sequence&gt;
* &lt;element name="Scope" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}Konvertierungsumfang2_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"scope"
})
@XmlRootElement(name = "ConversionScopeResponse2")
public class ConversionScopeResponse2
extends CommonResponseType
{
@XmlElement(name = "Scope", required = true)
protected List<Konvertierungsumfang2Type> scope;
/**
* Gets the value of the scope 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 scope property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getScope().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Konvertierungsumfang2Type }
*
*
*/
public List<Konvertierungsumfang2Type> getScope() {
if (scope == null) {
scope = new ArrayList<Konvertierungsumfang2Type>();
}
return this.scope;
}
}

View File

@@ -40,8 +40,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnf
})
@XmlSeeAlso({
CreateApplicationUnfallRequestType.class,
CreateApplicationLebenRequestType.class,
CreateApplicationSachPrivatRequestType.class,
CreateApplicationLebenRequestType.class,
CreateApplicationKrankenRequest.class,
CreateApplicationRechtsschutzRequest.class
})

View File

@@ -34,8 +34,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnf
@XmlType(name = "CreateApplicationResponseGen_Type")
@XmlSeeAlso({
CreateApplicationUnfallResponseType.class,
CreateApplicationLebenResponseType.class,
CreateApplicationSachPrivatResponseType.class,
CreateApplicationLebenResponseType.class,
CreateApplicationKrankenResponse.class,
CreateApplicationRechtsschutzResponse.class
})

View File

@@ -40,8 +40,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallReq
})
@XmlSeeAlso({
CreateOfferUnfallRequestType.class,
CreateOfferLebenRequestType.class,
CreateOfferSachPrivatRequestType.class,
CreateOfferLebenRequestType.class,
CreateOfferKrankenRequest.class,
CreateOfferRechtsschutzRequest.class
})

View File

@@ -34,8 +34,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRes
@XmlType(name = "CreateOfferResponseGen_Type")
@XmlSeeAlso({
CreateOfferUnfallResponseType.class,
CreateOfferLebenResponseType.class,
CreateOfferSachPrivatResponseType.class,
CreateOfferLebenResponseType.class,
CreateOfferKrankenResponse.class,
CreateOfferRechtsschutzResponse.class
})

View File

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

View File

@@ -1,72 +0,0 @@
package at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.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;
import at.vvo.omds.types.omds3Types.r1_8_0.common.KonvertierungBaustein2Type;
/**
* Spezifiziert die Konvertierung mehrerer Verträge in einen Vertrag
*
* <p>Java-Klasse für Konvertierungsumfang2_Type complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* &lt;complexType name="Konvertierungsumfang2_Type"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="Vertrag" type="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungBaustein2_Type" maxOccurs="unbounded"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Konvertierungsumfang2_Type", propOrder = {
"vertrag"
})
public class Konvertierungsumfang2Type {
@XmlElement(name = "Vertrag", required = true)
protected List<KonvertierungBaustein2Type> vertrag;
/**
* Gets the value of the vertrag 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 vertrag property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getVertrag().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link KonvertierungBaustein2Type }
*
*
*/
public List<KonvertierungBaustein2Type> getVertrag() {
if (vertrag == null) {
vertrag = new ArrayList<KonvertierungBaustein2Type>();
}
return this.vertrag;
}
}

View File

@@ -7,10 +7,11 @@ 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_8_0.common.KonvertierungsumfangVertragType;
/**
* Spezifiziert die Konvertierung mehrerer Verträge in einen Vertrag
* Spezifiziert die Konvertierung mehrerer Verträge in einen neuen Vertrag
*
* <p>Java-Klasse für Konvertierungsumfang_Type complex type.
*
@@ -24,7 +25,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;element name="Vertrag" maxOccurs="unbounded"&gt;
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}KonvertierungsumfangVertrag_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungsumfangVertrag_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
@@ -85,7 +86,7 @@ public class KonvertierungsumfangType {
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}KonvertierungsumfangVertrag_Type"&gt;
* &lt;extension base="{urn:omds3CommonServiceTypes-1-1-0}KonvertierungsumfangVertrag_Type"&gt;
* &lt;/extension&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;

View File

@@ -42,14 +42,6 @@ public class ObjectFactory {
return new ConversionScopeRequest();
}
/**
* Create an instance of {@link ConversionScopeRequest2 }
*
*/
public ConversionScopeRequest2 createConversionScopeRequest2() {
return new ConversionScopeRequest2();
}
/**
* Create an instance of {@link KonvertierungsumfangType }
*
@@ -122,46 +114,6 @@ public class ObjectFactory {
return new ConversionProposalResponse();
}
/**
* Create an instance of {@link ConversionScopeRequest2 .Vertrag }
*
*/
public ConversionScopeRequest2 .Vertrag createConversionScopeRequest2Vertrag() {
return new ConversionScopeRequest2 .Vertrag();
}
/**
* Create an instance of {@link ConversionScopeResponse2 }
*
*/
public ConversionScopeResponse2 createConversionScopeResponse2() {
return new ConversionScopeResponse2();
}
/**
* Create an instance of {@link Konvertierungsumfang2Type }
*
*/
public Konvertierungsumfang2Type createKonvertierungsumfang2Type() {
return new Konvertierungsumfang2Type();
}
/**
* Create an instance of {@link ConversionProposalRequest2 }
*
*/
public ConversionProposalRequest2 createConversionProposalRequest2() {
return new ConversionProposalRequest2();
}
/**
* Create an instance of {@link ConversionProposalResponse2 }
*
*/
public ConversionProposalResponse2 createConversionProposalResponse2() {
return new ConversionProposalResponse2();
}
/**
* Create an instance of {@link SpezBOASchrittType }
*
@@ -170,46 +122,6 @@ public class ObjectFactory {
return new SpezBOASchrittType();
}
/**
* Create an instance of {@link KonvertierungsumfangVertragType }
*
*/
public KonvertierungsumfangVertragType createKonvertierungsumfangVertragType() {
return new KonvertierungsumfangVertragType();
}
/**
* Create an instance of {@link KonvertierungBausteinType }
*
*/
public KonvertierungBausteinType createKonvertierungBausteinType() {
return new KonvertierungBausteinType();
}
/**
* Create an instance of {@link KonvertierungsaktionBelassenType }
*
*/
public KonvertierungsaktionBelassenType createKonvertierungsaktionBelassenType() {
return new KonvertierungsaktionBelassenType();
}
/**
* Create an instance of {@link KonvertierungsaktionUebernehmenType }
*
*/
public KonvertierungsaktionUebernehmenType createKonvertierungsaktionUebernehmenType() {
return new KonvertierungsaktionUebernehmenType();
}
/**
* Create an instance of {@link KonvertierungsaktionStornoType }
*
*/
public KonvertierungsaktionStornoType createKonvertierungsaktionStornoType() {
return new KonvertierungsaktionStornoType();
}
/**
* Create an instance of {@link KonvertierungsumfangType.Vertrag }
*

View File

@@ -83,12 +83,12 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezAntragUnfallType
"einwilligungen"
})
@XmlSeeAlso({
SpezAntragKfzType.class,
SpezAntragRechtsschutzType.class,
SpezAntragUnfallType.class,
AntragSachPrivatType.class,
SpezAntragRechtsschutzType.class,
SpezAntragKrankenType.class,
SpezAntragPersonenType.class,
SpezAntragKfzType.class
SpezAntragKrankenType.class
})
public abstract class SpezAntragType
extends SpezOffertType

View File

@@ -43,12 +43,12 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezBerechnungUnfall
"personen"
})
@XmlSeeAlso({
SpezBerechnungUnfallType.class,
SpezBerechnungLebenType.class,
BerechnungSachPrivatType.class,
SpezBerechnungKfzType.class,
SpezBerechnungRechtsschutzType.class,
SpezBerechnungKrankenType.class,
SpezBerechnungKfzType.class
SpezBerechnungUnfallType.class,
BerechnungSachPrivatType.class,
SpezBerechnungLebenType.class,
SpezBerechnungKrankenType.class
})
public abstract class SpezBerechnungType
extends SpezBOASchrittType

View File

@@ -49,12 +49,12 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezOffertUnfallType
"versicherungsnehmer"
})
@XmlSeeAlso({
SpezOffertUnfallType.class,
SpezOffertLebenType.class,
OffertSachPrivatType.class,
SpezOffertRechtsschutzType.class,
SpezOffertKrankenType.class,
SpezOffertKfzType.class,
SpezOffertRechtsschutzType.class,
SpezOffertUnfallType.class,
OffertSachPrivatType.class,
SpezOffertLebenType.class,
SpezOffertKrankenType.class,
SpezAntragType.class
})
public abstract class SpezOffertType

View File

@@ -40,8 +40,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnf
})
@XmlSeeAlso({
SubmitApplicationUnfallRequestType.class,
SubmitApplicationLebenRequestType.class,
SubmitApplicationSachPrivatRequestType.class,
SubmitApplicationLebenRequestType.class,
SubmitApplicationKrankenRequest.class,
SubmitApplicationRechtsschutzRequest.class
})

View File

@@ -34,8 +34,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnf
@XmlType(name = "SubmitApplicationResponseGen_Type")
@XmlSeeAlso({
SubmitApplicationUnfallResponseType.class,
SubmitApplicationLebenResponseType.class,
SubmitApplicationSachPrivatResponseType.class,
SubmitApplicationLebenResponseType.class,
SubmitApplicationKrankenResponse.class,
SubmitApplicationRechtsschutzResponse.class
})

View File

@@ -48,8 +48,8 @@ public class ZusatzversicherungUnfallinvaliditaetType
* <p>
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
* Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 1430 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3CommonServiceTypes.xsd
* Zeile 131 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 1451 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_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:

View File

@@ -48,8 +48,8 @@ public class ZusatzversicherungUnfalltodType
* <p>
* Sie rufen diese "catch-all"-Eigenschaft aus folgendem Grund ab:
* Der Feldname "Versicherungssumme" wird von zwei verschiedenen Teilen eines Schemas verwendet. Siehe:
* Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 1430 von file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3CommonServiceTypes.xsd
* Zeile 119 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3_ON2_Antrag_Leben.xsd
* Zeile 1451 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_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:

View File

@@ -33,7 +33,7 @@ import at.vvo.omds.types.omds3Types.r1_8_0.common.VersichertesInteresseMitAttrib
* &lt;element name="BauartCd" type="{urn:omds20}BauartCd_Type" minOccurs="0"/&gt;
* &lt;element name="DachungCd" type="{urn:omds20}DachungCd_Type" minOccurs="0"/&gt;
* &lt;element name="GebaeudeHoeheCd" type="{urn:omds20}GebaeudeHoeheCd_Type" minOccurs="0"/&gt;
* &lt;element name="BaujahrGebaeude" type="{http://www.w3.org/2001/XMLSchema}integer"/&gt;
* &lt;element name="BaujahrGebaeude" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/&gt;
* &lt;element name="EL-Flaeche" type="{urn:omds20}EL-Flaeche_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="Vorschaeden" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}RisikoVorschaeden_Type" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;element name="AusstattungCd" type="{urn:omds20}AusstattungCd_Type" minOccurs="0"/&gt;
@@ -80,7 +80,7 @@ public class RisikoGebaeudeType
protected String dachungCd;
@XmlElement(name = "GebaeudeHoeheCd")
protected String gebaeudeHoeheCd;
@XmlElement(name = "BaujahrGebaeude", required = true)
@XmlElement(name = "BaujahrGebaeude")
protected BigInteger baujahrGebaeude;
@XmlElement(name = "EL-Flaeche")
protected List<ELFlaecheType> elFlaeche;

View File

@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 3.5.0
* 2022-05-13T13:48:10.782+02:00
* 2022-06-02T16:53:58.058+02:00
* Generated source version: 3.5.0
*
*/
@@ -25,13 +25,29 @@ import javax.xml.bind.annotation.XmlSeeAlso;
serviceName = "omdsService",
portName = "omdsServicePort",
targetNamespace = "urn:omds3Services-1-4-0",
wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl",
wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl",
endpointInterface = "at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType")
public class OmdsServicePortImpl implements OmdsServicePortType {
private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName());
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation getOMDSPackageList");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse _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_8_0.service.OmdsServicePortType#calculateLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenRequestType param)*
*/
@@ -64,6 +80,38 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createApplicationKranken(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationKranken");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_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_8_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation calculateSachPrivat");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _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_8_0.service.OmdsServicePortType#calculateRechtsschutz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CalculateRechtsschutzRequest param)*
*/
@@ -80,6 +128,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzResponse createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationRechtsschutz");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _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_8_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzRequestType param)*
*/
@@ -128,6 +192,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkPartner");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _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_8_0.service.OmdsServicePortType#submitApplicationLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenRequestType param)*
*/
@@ -144,6 +224,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkPolicy");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _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_8_0.service.OmdsServicePortType#createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateOfferRechtsschutzRequest param)*
*/
@@ -192,278 +288,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#submitClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType submitClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation submitClaim");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType _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_8_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkOffer");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _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_8_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation getDocumentsOfPeriod");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType _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_8_0.service.OmdsServicePortType#createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationUnfall");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType _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_8_0.service.OmdsServicePortType#calculateKranken(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation calculateKranken");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_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_8_0.service.OmdsServicePortType#checkClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType checkClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation checkClaim");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType _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_8_0.service.OmdsServicePortType#conversionProposal2(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalRequest2 param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalResponse2 conversionProposal2(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalRequest2 param) throws ServiceFaultMsg {
LOG.info("Executing operation conversionProposal2");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalResponse2 _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_8_0.service.OmdsServicePortType#createApplicationLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationLeben");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType _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_8_0.service.OmdsServicePortType#conversionScope2(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeRequest2 param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeResponse2 conversionScope2(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeRequest2 param) throws ServiceFaultMsg {
LOG.info("Executing operation conversionScope2");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeResponse2 _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_8_0.service.OmdsServicePortType#createOfferUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation createOfferUnfall");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType _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_8_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation getArcImageInfos");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse _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_8_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation getOMDSPackageList");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse _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_8_0.service.OmdsServicePortType#createApplicationKranken(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationKranken");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_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_8_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation calculateSachPrivat");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _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_8_0.service.OmdsServicePortType#createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzResponse createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationRechtsschutz");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _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_8_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkPartner");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _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_8_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkPolicy");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _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_8_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.UserDataRequest param)*
*/
@@ -512,6 +336,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#submitClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType submitClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation submitClaim");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType _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_8_0.service.OmdsServicePortType#submitApplicationKranken(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.SubmitApplicationKrankenRequest param)*
*/
@@ -560,6 +400,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation deepLinkOffer");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _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_8_0.service.OmdsServicePortType#calculateUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallRequestType param)*
*/
@@ -592,6 +448,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation getDocumentsOfPeriod");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType _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_8_0.service.OmdsServicePortType#conversionProposal(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalRequest param)*
*/
@@ -656,6 +528,38 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationUnfall");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType _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_8_0.service.OmdsServicePortType#calculateKranken(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation calculateKranken");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_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_8_0.service.OmdsServicePortType#createOfferSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param)*
*/
@@ -672,6 +576,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#checkClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType checkClaim(at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation checkClaim");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType _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_8_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param)*
*/
@@ -736,6 +656,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createApplicationLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation createApplicationLeben");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType _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_8_0.service.OmdsServicePortType#submitApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest param)*
*/
@@ -752,6 +688,22 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#createOfferUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType param) throws ServiceFaultMsg {
LOG.info("Executing operation createOfferUnfall");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType _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_8_0.service.OmdsServicePortType#createOfferLeben(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenRequestType param)*
*/
@@ -816,4 +768,20 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
/* (non-Javadoc)
* @see at.vvo.omds.types.omds3Types.r1_8_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest param)*
*/
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest param) throws ServiceFaultMsg {
LOG.info("Executing operation getArcImageInfos");
System.out.println(param);
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
//throw new ServiceFaultMsg("ServiceFaultMsg...");
}
}

View File

@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 3.5.0
* 2022-05-13T13:48:10.795+02:00
* 2022-06-02T16:53:58.086+02:00
* Generated source version: 3.5.0
*
*/
@@ -18,6 +18,14 @@ import javax.xml.bind.annotation.XmlSeeAlso;
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface OmdsServicePortType {
@WebMethod(action = "urn:getOMDSPackageList")
@WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(
@WebParam(partName = "param", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateLeben")
@WebResult(name = "CalculateLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenResponseType calculateLeben(
@@ -34,6 +42,22 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.AddDocToBusinessCaseRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationKranken")
@WebResult(name = "CreateApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken(
@WebParam(partName = "param", name = "CreateApplicationKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateSachPrivat")
@WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(
@WebParam(partName = "param", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateRechtsschutz")
@WebResult(name = "CalculateRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CalculateRechtsschutzResponse calculateRechtsschutz(
@@ -42,6 +66,14 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CalculateRechtsschutzRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationRechtsschutz")
@WebResult(name = "CreateApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzResponse createApplicationRechtsschutz(
@WebParam(partName = "param", name = "CreateApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationKfz")
@WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(
@@ -66,6 +98,14 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkPartner")
@WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(
@WebParam(partName = "param", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:submitApplicationLeben")
@WebResult(name = "SubmitApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenResponseType submitApplicationLeben(
@@ -74,6 +114,14 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkPolicy")
@WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(
@WebParam(partName = "param", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createOfferRechtsschutz")
@WebResult(name = "CreateOfferRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateOfferRechtsschutzResponse createOfferRechtsschutz(
@@ -98,142 +146,6 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetStateChangesRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:submitClaim")
@WebResult(name = "SubmitClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType submitClaim(
@WebParam(partName = "param", name = "SubmitClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkOffer")
@WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(
@WebParam(partName = "param", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getDocumentsOfPeriod")
@WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(
@WebParam(partName = "param", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen")
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationUnfall")
@WebResult(name = "CreateApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall(
@WebParam(partName = "param", name = "CreateApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateKranken")
@WebResult(name = "CalculateKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken(
@WebParam(partName = "param", name = "CalculateKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:checkClaim")
@WebResult(name = "CheckClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType checkClaim(
@WebParam(partName = "param", name = "CheckClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:conversionProposal2")
@WebResult(name = "ConversionProposalResponse2", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalResponse2 conversionProposal2(
@WebParam(partName = "param", name = "ConversionProposalRequest2", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalRequest2 param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationLeben")
@WebResult(name = "CreateApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben(
@WebParam(partName = "param", name = "CreateApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:conversionScope2")
@WebResult(name = "ConversionScopeResponse2", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeResponse2 conversionScope2(
@WebParam(partName = "param", name = "ConversionScopeRequest2", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeRequest2 param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createOfferUnfall")
@WebResult(name = "CreateOfferUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall(
@WebParam(partName = "param", name = "CreateOfferUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getArcImageInfos")
@WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse getArcImageInfos(
@WebParam(partName = "param", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getOMDSPackageList")
@WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(
@WebParam(partName = "param", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationKranken")
@WebResult(name = "CreateApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenResponse createApplicationKranken(
@WebParam(partName = "param", name = "CreateApplicationKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateSachPrivat")
@WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(
@WebParam(partName = "param", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationRechtsschutz")
@WebResult(name = "CreateApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzResponse createApplicationRechtsschutz(
@WebParam(partName = "param", name = "CreateApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkPartner")
@WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(
@WebParam(partName = "param", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkPolicy")
@WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(
@WebParam(partName = "param", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getUserData")
@WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.UserDataResponse getUserData(
@@ -258,6 +170,14 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:submitClaim")
@WebResult(name = "SubmitClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType submitClaim(
@WebParam(partName = "param", name = "SubmitClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:submitApplicationKranken")
@WebResult(name = "SubmitApplicationKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.SubmitApplicationKrankenResponse submitApplicationKranken(
@@ -282,6 +202,14 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetNumberOfDocumentsRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:deepLinkOffer")
@WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(
@WebParam(partName = "param", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateUnfall")
@WebResult(name = "CalculateUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallResponseType calculateUnfall(
@@ -298,6 +226,14 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getDocumentsOfPeriod")
@WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(
@WebParam(partName = "param", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen")
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:conversionProposal")
@WebResult(name = "ConversionProposalResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalResponse conversionProposal(
@@ -330,6 +266,22 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateOfferKrankenRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationUnfall")
@WebResult(name = "CreateApplicationUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType createApplicationUnfall(
@WebParam(partName = "param", name = "CreateApplicationUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:calculateKranken")
@WebResult(name = "CalculateKrankenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenResponse calculateKranken(
@WebParam(partName = "param", name = "CalculateKrankenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-6-0.on2antrag.kranken")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createOfferSachPrivat")
@WebResult(name = "CreateOfferSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType createOfferSachPrivat(
@@ -338,6 +290,14 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:checkClaim")
@WebResult(name = "CheckClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType checkClaim(
@WebParam(partName = "param", name = "CheckClaimRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationSachPrivat")
@WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(
@@ -370,6 +330,14 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createApplicationLeben")
@WebResult(name = "CreateApplicationLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType createApplicationLeben(
@WebParam(partName = "param", name = "CreateApplicationLebenRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:submitApplicationRechtsschutz")
@WebResult(name = "SubmitApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse submitApplicationRechtsschutz(
@@ -378,6 +346,14 @@ public interface OmdsServicePortType {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createOfferUnfall")
@WebResult(name = "CreateOfferUnfallResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType createOfferUnfall(
@WebParam(partName = "param", name = "CreateOfferUnfallRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:createOfferLeben")
@WebResult(name = "CreateOfferLebenResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-5-0.on2antrag.leben", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateOfferLebenResponseType createOfferLeben(
@@ -409,4 +385,12 @@ public interface OmdsServicePortType {
@WebParam(partName = "param", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat")
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType param
) throws ServiceFaultMsg;
@WebMethod(action = "urn:getArcImageInfos")
@WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "param")
public at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse getArcImageInfos(
@WebParam(partName = "param", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest param
) throws ServiceFaultMsg;
}

View File

@@ -19,7 +19,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 3.5.0
* 2022-05-13T13:48:10.731+02:00
* 2022-06-02T16:53:57.984+02:00
* Generated source version: 3.5.0
*
*/
@@ -48,6 +48,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
OmdsServicePortType port = ss.getOmdsServicePort();
{
System.out.println("Invoking getOMDSPackageList...");
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_param);
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 calculateLeben...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CalculateLebenRequestType _calculateLeben_param = null;
@@ -68,6 +81,32 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.AddDocToBusinessCaseResponseType _addDocToBusinessCase__return = port.addDocToBusinessCase(_addDocToBusinessCase_param);
System.out.println("addDocToBusinessCase.result=" + _addDocToBusinessCase__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_8_0.on2antrag.kranken.CreateApplicationKrankenRequest _createApplicationKranken_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenResponse _createApplicationKranken__return = port.createApplicationKranken(_createApplicationKranken_param);
System.out.println("createApplicationKranken.result=" + _createApplicationKranken__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking calculateSachPrivat...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_param);
System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -81,6 +120,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CalculateRechtsschutzResponse _calculateRechtsschutz__return = port.calculateRechtsschutz(_calculateRechtsschutz_param);
System.out.println("calculateRechtsschutz.result=" + _calculateRechtsschutz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createApplicationRechtsschutz...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzRequest _createApplicationRechtsschutz_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _createApplicationRechtsschutz__return = port.createApplicationRechtsschutz(_createApplicationRechtsschutz_param);
System.out.println("createApplicationRechtsschutz.result=" + _createApplicationRechtsschutz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -120,6 +172,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_param);
System.out.println("createOfferKfz.result=" + _createOfferKfz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkPartner...");
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_param);
System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -133,6 +198,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.SubmitApplicationLebenResponseType _submitApplicationLeben__return = port.submitApplicationLeben(_submitApplicationLeben_param);
System.out.println("submitApplicationLeben.result=" + _submitApplicationLeben__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkPolicy...");
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_param);
System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -172,227 +250,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetStateChangesResponseType _getStateChanges__return = port.getStateChanges(_getStateChanges_param);
System.out.println("getStateChanges.result=" + _getStateChanges__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking submitClaim...");
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType _submitClaim_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_param);
System.out.println("submitClaim.result=" + _submitClaim__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkOffer...");
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_param);
System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getDocumentsOfPeriod...");
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_param);
System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createApplicationUnfall...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType _createApplicationUnfall_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType _createApplicationUnfall__return = port.createApplicationUnfall(_createApplicationUnfall_param);
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_8_0.on2antrag.kranken.CalculateKrankenRequest _calculateKranken_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenResponse _calculateKranken__return = port.calculateKranken(_calculateKranken_param);
System.out.println("calculateKranken.result=" + _calculateKranken__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking checkClaim...");
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType _checkClaim_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType _checkClaim__return = port.checkClaim(_checkClaim_param);
System.out.println("checkClaim.result=" + _checkClaim__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking conversionProposal2...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalRequest2 _conversionProposal2_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionProposalResponse2 _conversionProposal2__return = port.conversionProposal2(_conversionProposal2_param);
System.out.println("conversionProposal2.result=" + _conversionProposal2__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createApplicationLeben...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType _createApplicationLeben_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType _createApplicationLeben__return = port.createApplicationLeben(_createApplicationLeben_param);
System.out.println("createApplicationLeben.result=" + _createApplicationLeben__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking conversionScope2...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeRequest2 _conversionScope2_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.common.ConversionScopeResponse2 _conversionScope2__return = port.conversionScope2(_conversionScope2_param);
System.out.println("conversionScope2.result=" + _conversionScope2__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createOfferUnfall...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType _createOfferUnfall_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType _createOfferUnfall__return = port.createOfferUnfall(_createOfferUnfall_param);
System.out.println("createOfferUnfall.result=" + _createOfferUnfall__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getArcImageInfos...");
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_param);
System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getOMDSPackageList...");
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_param);
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_8_0.on2antrag.kranken.CreateApplicationKrankenRequest _createApplicationKranken_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateApplicationKrankenResponse _createApplicationKranken__return = port.createApplicationKranken(_createApplicationKranken_param);
System.out.println("createApplicationKranken.result=" + _createApplicationKranken__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking calculateSachPrivat...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_param);
System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createApplicationRechtsschutz...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzRequest _createApplicationRechtsschutz_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.CreateApplicationRechtsschutzResponse _createApplicationRechtsschutz__return = port.createApplicationRechtsschutz(_createApplicationRechtsschutz_param);
System.out.println("createApplicationRechtsschutz.result=" + _createApplicationRechtsschutz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkPartner...");
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_param);
System.out.println("deepLinkPartner.result=" + _deepLinkPartner__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkPolicy...");
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_param);
System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -432,6 +289,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckCoverageResponse _checkCoverage__return = port.checkCoverage(_checkCoverage_param);
System.out.println("checkCoverage.result=" + _checkCoverage__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking submitClaim...");
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimRequestType _submitClaim_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_param);
System.out.println("submitClaim.result=" + _submitClaim__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -471,6 +341,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetNumberOfDocumentsResponseType _getNumberOfDocuments__return = port.getNumberOfDocuments(_getNumberOfDocuments_param);
System.out.println("getNumberOfDocuments.result=" + _getNumberOfDocuments__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking deepLinkOffer...");
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_param);
System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -497,6 +380,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnfallResponseType _submitApplicationUnfall__return = port.submitApplicationUnfall(_submitApplicationUnfall_param);
System.out.println("submitApplicationUnfall.result=" + _submitApplicationUnfall__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getDocumentsOfPeriod...");
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_param);
System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -549,6 +445,32 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CreateOfferKrankenResponse _createOfferKranken__return = port.createOfferKranken(_createOfferKranken_param);
System.out.println("createOfferKranken.result=" + _createOfferKranken__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createApplicationUnfall...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallRequestType _createApplicationUnfall_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnfallResponseType _createApplicationUnfall__return = port.createApplicationUnfall(_createApplicationUnfall_param);
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_8_0.on2antrag.kranken.CalculateKrankenRequest _calculateKranken_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.CalculateKrankenResponse _calculateKranken__return = port.calculateKranken(_calculateKranken_param);
System.out.println("calculateKranken.result=" + _calculateKranken__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -562,6 +484,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_param);
System.out.println("createOfferSachPrivat.result=" + _createOfferSachPrivat__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking checkClaim...");
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimRequestType _checkClaim_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.CheckClaimResponseType _checkClaim__return = port.checkClaim(_checkClaim_param);
System.out.println("checkClaim.result=" + _checkClaim__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -614,6 +549,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageResponse _getArcImage__return = port.getArcImage(_getArcImage_param);
System.out.println("getArcImage.result=" + _getArcImage__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createApplicationLeben...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenRequestType _createApplicationLeben_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.leben.CreateApplicationLebenResponseType _createApplicationLeben__return = port.createApplicationLeben(_createApplicationLeben_param);
System.out.println("createApplicationLeben.result=" + _createApplicationLeben__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -627,6 +575,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse _submitApplicationRechtsschutz__return = port.submitApplicationRechtsschutz(_submitApplicationRechtsschutz_param);
System.out.println("submitApplicationRechtsschutz.result=" + _submitApplicationRechtsschutz__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking createOfferUnfall...");
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRequestType _createOfferUnfall_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallResponseType _createOfferUnfall__return = port.createOfferUnfall(_createOfferUnfall_param);
System.out.println("createOfferUnfall.result=" + _createOfferUnfall__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
@@ -679,6 +640,19 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _submitApplicationSachPrivat__return = port.submitApplicationSachPrivat(_submitApplicationSachPrivat_param);
System.out.println("submitApplicationSachPrivat.result=" + _submitApplicationSachPrivat__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());
}
}
{
System.out.println("Invoking getArcImageInfos...");
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_param = null;
try {
at.vvo.omds.types.omds3Types.r1_8_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_param);
System.out.println("getArcImageInfos.result=" + _getArcImageInfos__return);
} catch (ServiceFaultMsg e) {
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
System.out.println(e.toString());

View File

@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
/**
* This class was generated by Apache CXF 3.5.0
* 2022-05-13T13:48:10.778+02:00
* 2022-06-02T16:53:58.053+02:00
* Generated source version: 3.5.0
*/

View File

@@ -24,20 +24,5 @@ version="1.0"
</jaxb:property>
</jaxb:bindings>
<jaxb:bindings node="//xs:complexType[@name='KonvertierungsumfangVertrag_Type']//xs:element[@name='Sparte']">
<jaxb:property name="sparten">
<jaxb:javadoc><![CDATA[<p>Die Liste der Sparten, die in der Konvertierungsanforderung behandelt werden.</p>
]]></jaxb:javadoc>
</jaxb:property>
</jaxb:bindings>
<jaxb:bindings node="//xs:complexType[@name='KonvertierungBaustein_Type']//xs:element[@name='ZulaessigeAktion']">
<jaxb:property name="zulaessigeAktionen">
<jaxb:javadoc><![CDATA[<p>Die Liste der Aktionen, die für einen Vertragsbaustein zulässig sind.
Die zulässigen Aktionen müssen nur im Response vom ServiceProvider (VU) befüllt werden.
Im Request eines Konvertierungsvorschlags durch den Consumer, können sie leer bleiben. </p>
]]></jaxb:javadoc>
</jaxb:property>
</jaxb:bindings>
</jaxb:bindings>

View File

@@ -25,5 +25,28 @@ version="1.0"
</jaxb:bindings>
<jaxb:bindings node="//xs:complexType[@name='KonvertierungsumfangVertrag_Type']//xs:element[@name='Baustein']">
<jaxb:property name="bausteine">
<jaxb:javadoc><![CDATA[<p>Die Liste der Bausteine, die in der Konvertierungsanforderung behandelt werden.</p>
]]></jaxb:javadoc>
</jaxb:property>
</jaxb:bindings>
<jaxb:bindings node="//xs:complexType[@name='KonvertierungBaustein_Type']//xs:element[@name='ZulaessigeAktion']">
<jaxb:property name="zulaessigeAktionen">
<jaxb:javadoc><![CDATA[<p>Die Liste der Aktionen, die für einen Vertragsbaustein zulässig sind.
Die zulässigen Aktionen müssen nur im Response vom ServiceProvider (VU) befüllt werden.
Im Request eines Konvertierungsvorschlags durch den Consumer, können sie leer bleiben. </p>
]]></jaxb:javadoc>
</jaxb:property>
</jaxb:bindings>
<jaxb:bindings node="//xs:complexType[@name='KonvertierungsaktionUebernehmen_Type']//xs:element[@name='Baustein']">
<jaxb:property name="bausteine">
<jaxb:javadoc><![CDATA[<p>Die Liste der Bausteine, die in der Konvertierungsaktion behandelt werden.</p>
]]></jaxb:javadoc>
</jaxb:property>
</jaxb:bindings>
</jaxb:bindings>

View File

@@ -350,20 +350,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<part name="param" element="boa:ConversionProposalResponse"/>
</message>
<!-- Konvertierungshilfe alternativ -->
<message name="ConversionScopeRequestMsg2">
<part name="param" element="boa:ConversionScopeRequest2"/>
</message>
<message name="ConversionScopeResponseMsg2">
<part name="param" element="boa:ConversionScopeResponse2"/>
</message>
<message name="ConversionProposalRequestMsg2">
<part name="param" element="boa:ConversionProposalRequest2"/>
</message>
<message name="ConversionProposalResponseMsg2">
<part name="param" element="boa:ConversionProposalResponse2"/>
</message>
<!-- Fehler -->
<message name="ServiceFaultMsg">
<part name="param" element="cst:serviceFault" />
@@ -627,16 +613,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<output name="ConversionProposalResponsePort" message="os:ConversionProposalResponseMsg"/>
<fault name="ConversionProposalFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="conversionScope2">
<input name="ConversionScopeRequestPort2" message="os:ConversionScopeRequestMsg2"/>
<output name="ConversionScopeResponsePort2" message="os:ConversionScopeResponseMsg2"/>
<fault name="ConversionScopeFault" message="os:ServiceFaultMsg"/>
</operation>
<operation name="conversionProposal2">
<input name="ConversionProposalRequestPort2" message="os:ConversionProposalRequestMsg2"/>
<output name="ConversionProposalResponsePort2" message="os:ConversionProposalResponseMsg2"/>
<fault name="ConversionProposalFault" message="os:ServiceFaultMsg"/>
</operation>
</portType>
<binding name="omdsServicePortBinding" type="os:omdsServicePortType">
@@ -1256,31 +1232,6 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:fault name="ConversionProposalFault" use="literal"/>
</fault>
</operation>
<!-- Konvertierungshilfe alternativ -->
<operation name="conversionScope2">
<soap:operation soapAction="urn:conversionScope2" style="document"/>
<input name="ConversionScopeRequestPort2">
<soap:body use="literal"/>
</input>
<output name="ConversionScopeResponsePort2">
<soap:body use="literal"/>
</output>
<fault name="ConversionScopeFault">
<soap:fault name="ConversionScopeFault" use="literal"/>
</fault>
</operation>
<operation name="conversionProposal2">
<soap:operation soapAction="urn:conversionProposal2" style="document"/>
<input name="ConversionProposalRequestPort2">
<soap:body use="literal"/>
</input>
<output name="ConversionProposalResponsePort2">
<soap:body use="literal"/>
</output>
<fault name="ConversionProposalFault">
<soap:fault name="ConversionProposalFault" use="literal"/>
</fault>
</operation>
</binding>