Alternativer Entwurf für die Konvertierungshilfe, welcher den Basis-Produktbaustein verwendet.
This commit is contained in:
@@ -3,7 +3,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>at.vvo.omds</groupId>
|
||||
<artifactId>OMDSServiceDefinition</artifactId>
|
||||
<version>1.8.0-SNAPSHOT</version>
|
||||
<version>1.8.0-SNAPSHOT</version><!-- Konvertierungshilfe -->
|
||||
<name>OMDS Service Definition</name>
|
||||
<description>Dieses Projekt enthaelt die Definitionen fuer die OMDS Services.</description>
|
||||
|
||||
|
||||
@@ -23,10 +23,22 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <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"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
@@ -38,26 +50,30 @@ import javax.xml.bind.annotation.XmlType;
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BasisProduktbaustein_Type", propOrder = {
|
||||
"id",
|
||||
"ersetztId",
|
||||
"bezeichnung",
|
||||
"bedingungen",
|
||||
"meldungen"
|
||||
"meldungen",
|
||||
"kombinationen",
|
||||
"konvertierung"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
KonvertierungBaustein2Type.class,
|
||||
ProduktbausteinType.class
|
||||
})
|
||||
public abstract class BasisProduktbausteinType {
|
||||
|
||||
@XmlElement(name = "Id")
|
||||
protected String id;
|
||||
@XmlElement(name = "ErsetztId")
|
||||
protected String ersetztId;
|
||||
@XmlElement(name = "Bezeichnung")
|
||||
protected String bezeichnung;
|
||||
@XmlElement(name = "Bedingungen")
|
||||
protected List<String> bedingungen;
|
||||
@XmlElement(name = "Meldungen")
|
||||
protected List<ServiceFault> meldungen;
|
||||
@XmlElement(name = "Kombinationen")
|
||||
protected KombinationenType kombinationen;
|
||||
@XmlElement(name = "Konvertierung")
|
||||
protected BasisProduktbausteinType.Konvertierung konvertierung;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der id-Eigenschaft ab.
|
||||
@@ -83,30 +99,6 @@ public abstract class BasisProduktbausteinType {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
||||
*
|
||||
@@ -189,4 +181,135 @@ 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.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BasisProduktbausteinType.Konvertierung }
|
||||
*
|
||||
*/
|
||||
public BasisProduktbausteinType.Konvertierung getKonvertierung() {
|
||||
return konvertierung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der konvertierung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BasisProduktbausteinType.Konvertierung }
|
||||
*
|
||||
*/
|
||||
public void setKonvertierung(BasisProduktbausteinType.Konvertierung value) {
|
||||
this.konvertierung = value;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java-Klasse für anonymous complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ErsetztId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="GewaehlteAktion" type="{urn:omds3CommonServiceTypes-1-1-0}Konvertierungsaktion2_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"ersetztId",
|
||||
"gewaehlteAktion"
|
||||
})
|
||||
public static class Konvertierung {
|
||||
|
||||
@XmlElement(name = "ErsetztId", required = true)
|
||||
protected String ersetztId;
|
||||
@XmlElement(name = "GewaehlteAktion")
|
||||
protected Konvertierungsaktion2Type gewaehlteAktion;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der gewaehlteAktion-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Konvertierungsaktion2Type }
|
||||
*
|
||||
*/
|
||||
public Konvertierungsaktion2Type getGewaehlteAktion() {
|
||||
return gewaehlteAktion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der gewaehlteAktion-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Konvertierungsaktion2Type }
|
||||
*
|
||||
*/
|
||||
public void setGewaehlteAktion(Konvertierungsaktion2Type value) {
|
||||
this.gewaehlteAktion = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -9,7 +9,9 @@ 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;
|
||||
@@ -57,6 +59,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptRequest;
|
||||
GetClaimRequestType.class,
|
||||
CommonSearchRequestType.class,
|
||||
GetApplicationDocumentRequestType.class,
|
||||
ConversionProposalRequest2 .class,
|
||||
ConversionScopeRequest2 .class,
|
||||
ConversionProposalRequest.class,
|
||||
ConversionScopeRequest.class,
|
||||
CommonProcessRequestType.class,
|
||||
|
||||
@@ -11,7 +11,9 @@ 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;
|
||||
@@ -57,6 +59,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on7schaden.SubmitReceiptResponse;
|
||||
GetClaimResponseType.class,
|
||||
CommonSearchResponseType.class,
|
||||
GetApplicationDocumentResponseType.class,
|
||||
ConversionProposalResponse2 .class,
|
||||
ConversionScopeResponse2 .class,
|
||||
ConversionProposalResponse.class,
|
||||
ConversionScopeResponse.class,
|
||||
CommonProcessResponseType.class,
|
||||
|
||||
@@ -253,6 +253,38 @@ 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 }
|
||||
*
|
||||
@@ -789,6 +821,14 @@ public class ObjectFactory {
|
||||
return new ElementFondsauswahlType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link at.vvo.omds.types.omds3Types.r1_8_0.common.BasisProduktbausteinType.Konvertierung }
|
||||
*
|
||||
*/
|
||||
public at.vvo.omds.types.omds3Types.r1_8_0.common.BasisProduktbausteinType.Konvertierung createBasisProduktbausteinTypeKonvertierung() {
|
||||
return new at.vvo.omds.types.omds3Types.r1_8_0.common.BasisProduktbausteinType.Konvertierung();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GMSGType.SteuerlichAnsaessig }
|
||||
*
|
||||
|
||||
@@ -40,8 +40,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallReque
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
CalculateUnfallRequestType.class,
|
||||
CalculateSachPrivatRequestType.class,
|
||||
CalculateLebenRequestType.class,
|
||||
CalculateSachPrivatRequestType.class,
|
||||
CalculateKrankenRequest.class,
|
||||
CalculateRechtsschutzRequest.class
|
||||
})
|
||||
|
||||
@@ -34,8 +34,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CalculateUnfallRespo
|
||||
@XmlType(name = "CalculateResponseGen_Type")
|
||||
@XmlSeeAlso({
|
||||
CalculateUnfallResponseType.class,
|
||||
CalculateSachPrivatResponseType.class,
|
||||
CalculateLebenResponseType.class,
|
||||
CalculateSachPrivatResponseType.class,
|
||||
CalculateKrankenResponse.class,
|
||||
CalculateRechtsschutzResponse.class
|
||||
})
|
||||
|
||||
@@ -40,8 +40,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnf
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
CreateApplicationUnfallRequestType.class,
|
||||
CreateApplicationSachPrivatRequestType.class,
|
||||
CreateApplicationLebenRequestType.class,
|
||||
CreateApplicationSachPrivatRequestType.class,
|
||||
CreateApplicationKrankenRequest.class,
|
||||
CreateApplicationRechtsschutzRequest.class
|
||||
})
|
||||
|
||||
@@ -34,8 +34,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateApplicationUnf
|
||||
@XmlType(name = "CreateApplicationResponseGen_Type")
|
||||
@XmlSeeAlso({
|
||||
CreateApplicationUnfallResponseType.class,
|
||||
CreateApplicationSachPrivatResponseType.class,
|
||||
CreateApplicationLebenResponseType.class,
|
||||
CreateApplicationSachPrivatResponseType.class,
|
||||
CreateApplicationKrankenResponse.class,
|
||||
CreateApplicationRechtsschutzResponse.class
|
||||
})
|
||||
|
||||
@@ -40,8 +40,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallReq
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
CreateOfferUnfallRequestType.class,
|
||||
CreateOfferSachPrivatRequestType.class,
|
||||
CreateOfferLebenRequestType.class,
|
||||
CreateOfferSachPrivatRequestType.class,
|
||||
CreateOfferKrankenRequest.class,
|
||||
CreateOfferRechtsschutzRequest.class
|
||||
})
|
||||
|
||||
@@ -34,8 +34,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.CreateOfferUnfallRes
|
||||
@XmlType(name = "CreateOfferResponseGen_Type")
|
||||
@XmlSeeAlso({
|
||||
CreateOfferUnfallResponseType.class,
|
||||
CreateOfferSachPrivatResponseType.class,
|
||||
CreateOfferLebenResponseType.class,
|
||||
CreateOfferSachPrivatResponseType.class,
|
||||
CreateOfferKrankenResponse.class,
|
||||
CreateOfferRechtsschutzResponse.class
|
||||
})
|
||||
|
||||
@@ -42,6 +42,14 @@ public class ObjectFactory {
|
||||
return new ConversionScopeRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ConversionScopeRequest2 }
|
||||
*
|
||||
*/
|
||||
public ConversionScopeRequest2 createConversionScopeRequest2() {
|
||||
return new ConversionScopeRequest2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link KonvertierungsumfangType }
|
||||
*
|
||||
@@ -114,6 +122,54 @@ 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 }
|
||||
*
|
||||
*/
|
||||
public SpezBOASchrittType createSpezBOASchrittType() {
|
||||
return new SpezBOASchrittType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link KonvertierungsumfangVertragType }
|
||||
*
|
||||
|
||||
@@ -11,7 +11,6 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.AbgelehnteRisikenType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.AntragsartType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.BeteiligtePersonVertragType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.DatenverwendungType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.EinwilligungType;
|
||||
import at.vvo.omds.types.omds3Types.r1_8_0.common.ErsatzpolizzenType;
|
||||
@@ -38,11 +37,9 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezAntragUnfallType
|
||||
* <pre>
|
||||
* <complexType name="SpezAntrag_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
|
||||
* <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
|
||||
* <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||
* <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||
* <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="WeitereVertragspersonen" type="{urn:omds3CommonServiceTypes-1-1-0}Vertragsperson_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
@@ -59,7 +56,7 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezAntragUnfallType
|
||||
* <element name="Sicherstellungen" type="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Einwilligungen" type="{urn:omds3CommonServiceTypes-1-1-0}Einwilligung_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
@@ -69,8 +66,6 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezAntragUnfallType
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SpezAntrag_Type", propOrder = {
|
||||
"antragsart",
|
||||
"personen",
|
||||
"versicherungsnehmer",
|
||||
"abweichenderPraemienzahler",
|
||||
"weitereVersicherungsnehmer",
|
||||
"weitereVertragspersonen",
|
||||
@@ -88,23 +83,20 @@ 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,
|
||||
SpezAntragKrankenType.class
|
||||
SpezAntragKfzType.class
|
||||
})
|
||||
public abstract class SpezAntragType {
|
||||
public abstract class SpezAntragType
|
||||
extends SpezOffertType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragsart")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected AntragsartType antragsart;
|
||||
@XmlElement(name = "Personen", required = true)
|
||||
protected List<BeteiligtePersonVertragType> personen;
|
||||
@XmlElement(name = "Versicherungsnehmer")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected int versicherungsnehmer;
|
||||
@XmlElement(name = "AbweichenderPraemienzahler")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer abweichenderPraemienzahler;
|
||||
@@ -164,51 +156,6 @@ public abstract class SpezAntragType {
|
||||
this.antragsart = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the personen 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 personen property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPersonen().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link BeteiligtePersonVertragType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<BeteiligtePersonVertragType> getPersonen() {
|
||||
if (personen == null) {
|
||||
personen = new ArrayList<BeteiligtePersonVertragType>();
|
||||
}
|
||||
return this.personen;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der versicherungsnehmer-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public int getVersicherungsnehmer() {
|
||||
return versicherungsnehmer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der versicherungsnehmer-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setVersicherungsnehmer(int value) {
|
||||
this.versicherungsnehmer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der abweichenderPraemienzahler-Eigenschaft ab.
|
||||
*
|
||||
|
||||
@@ -27,11 +27,11 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezBerechnungUnfall
|
||||
* <pre>
|
||||
* <complexType name="SpezBerechnung_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
|
||||
* <sequence>
|
||||
* <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
@@ -43,14 +43,16 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezBerechnungUnfall
|
||||
"personen"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
SpezBerechnungKfzType.class,
|
||||
SpezBerechnungRechtsschutzType.class,
|
||||
SpezBerechnungUnfallType.class,
|
||||
BerechnungSachPrivatType.class,
|
||||
SpezBerechnungLebenType.class,
|
||||
SpezBerechnungKrankenType.class
|
||||
BerechnungSachPrivatType.class,
|
||||
SpezBerechnungRechtsschutzType.class,
|
||||
SpezBerechnungKrankenType.class,
|
||||
SpezBerechnungKfzType.class
|
||||
})
|
||||
public abstract class SpezBerechnungType {
|
||||
public abstract class SpezBerechnungType
|
||||
extends SpezBOASchrittType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Personen")
|
||||
protected List<BeteiligtePersonVertragType> personen;
|
||||
|
||||
@@ -29,13 +29,13 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezOffertUnfallType
|
||||
* <pre>
|
||||
* <complexType name="SpezOffert_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBOASchritt_Type">
|
||||
* <sequence>
|
||||
* <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||
* <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
|
||||
* <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
@@ -49,14 +49,17 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SpezOffertUnfallType
|
||||
"versicherungsnehmer"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
SpezOffertKfzType.class,
|
||||
SpezOffertRechtsschutzType.class,
|
||||
SpezOffertUnfallType.class,
|
||||
OffertSachPrivatType.class,
|
||||
SpezOffertLebenType.class,
|
||||
SpezOffertKrankenType.class
|
||||
OffertSachPrivatType.class,
|
||||
SpezOffertRechtsschutzType.class,
|
||||
SpezOffertKrankenType.class,
|
||||
SpezOffertKfzType.class,
|
||||
SpezAntragType.class
|
||||
})
|
||||
public abstract class SpezOffertType {
|
||||
public abstract class SpezOffertType
|
||||
extends SpezBOASchrittType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Offertnummer")
|
||||
protected ObjektIdType offertnummer;
|
||||
|
||||
@@ -40,8 +40,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnf
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
SubmitApplicationUnfallRequestType.class,
|
||||
SubmitApplicationSachPrivatRequestType.class,
|
||||
SubmitApplicationLebenRequestType.class,
|
||||
SubmitApplicationSachPrivatRequestType.class,
|
||||
SubmitApplicationKrankenRequest.class,
|
||||
SubmitApplicationRechtsschutzRequest.class
|
||||
})
|
||||
|
||||
@@ -34,8 +34,8 @@ import at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.unfall.SubmitApplicationUnf
|
||||
@XmlType(name = "SubmitApplicationResponseGen_Type")
|
||||
@XmlSeeAlso({
|
||||
SubmitApplicationUnfallResponseType.class,
|
||||
SubmitApplicationSachPrivatResponseType.class,
|
||||
SubmitApplicationLebenResponseType.class,
|
||||
SubmitApplicationSachPrivatResponseType.class,
|
||||
SubmitApplicationKrankenResponse.class,
|
||||
SubmitApplicationRechtsschutzResponse.class
|
||||
})
|
||||
|
||||
@@ -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/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3_ON2_Antrag_Leben.xsd
|
||||
* Zeile 1414 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3CommonServiceTypes.xsd
|
||||
* 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
|
||||
* <p>
|
||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||
|
||||
@@ -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/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3_ON2_Antrag_Leben.xsd
|
||||
* Zeile 1414 von file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3CommonServiceTypes.xsd
|
||||
* 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
|
||||
* <p>
|
||||
* Um diese Eigenschaft zu entfernen, wenden Sie eine Eigenschaftenanpassung für eine
|
||||
* der beiden folgenden Deklarationen an, um deren Namen zu ändern:
|
||||
|
||||
@@ -10,12 +10,12 @@ import javax.xml.ws.Service;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.5.0
|
||||
* 2022-05-05T10:26:35.508+02:00
|
||||
* 2022-05-13T13:48:10.802+02:00
|
||||
* Generated source version: 3.5.0
|
||||
*
|
||||
*/
|
||||
@WebServiceClient(name = "omdsService",
|
||||
wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl",
|
||||
wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl",
|
||||
targetNamespace = "urn:omds3Services-1-4-0")
|
||||
public class OmdsService extends Service {
|
||||
|
||||
@@ -26,11 +26,11 @@ public class OmdsService extends Service {
|
||||
static {
|
||||
URL url = null;
|
||||
try {
|
||||
url = new URL("file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl");
|
||||
url = new URL("file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl");
|
||||
} catch (MalformedURLException e) {
|
||||
java.util.logging.Logger.getLogger(OmdsService.class.getName())
|
||||
.log(java.util.logging.Level.INFO,
|
||||
"Can not initialize the default wsdl from {0}", "file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl");
|
||||
"Can not initialize the default wsdl from {0}", "file:/C:/Users/jensb/git/omdsservicedefinitions2/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl");
|
||||
}
|
||||
WSDL_LOCATION = url;
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.5.0
|
||||
* 2022-05-05T10:26:35.463+02:00
|
||||
* 2022-05-13T13:48:10.782+02:00
|
||||
* Generated source version: 3.5.0
|
||||
*
|
||||
*/
|
||||
@@ -25,29 +25,13 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
serviceName = "omdsService",
|
||||
portName = "omdsServicePort",
|
||||
targetNamespace = "urn:omds3Services-1-4-0",
|
||||
wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions_master/OMDSServiceDefinition/src/main/resources/def/r1_8_0/omds3Services.wsdl",
|
||||
wsdlLocation = "file:/C:/Users/jensb/git/omdsservicedefinitions2/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)*
|
||||
*/
|
||||
@@ -80,38 +64,6 @@ 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)*
|
||||
*/
|
||||
@@ -128,22 +80,6 @@ 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)*
|
||||
*/
|
||||
@@ -192,22 +128,6 @@ 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)*
|
||||
*/
|
||||
@@ -224,22 +144,6 @@ 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)*
|
||||
*/
|
||||
@@ -288,6 +192,278 @@ 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)*
|
||||
*/
|
||||
@@ -336,22 +512,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#submitApplicationKranken(at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.kranken.SubmitApplicationKrankenRequest param)*
|
||||
*/
|
||||
@@ -400,22 +560,6 @@ 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)*
|
||||
*/
|
||||
@@ -448,22 +592,6 @@ 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)*
|
||||
*/
|
||||
@@ -528,38 +656,6 @@ 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)*
|
||||
*/
|
||||
@@ -576,22 +672,6 @@ 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)*
|
||||
*/
|
||||
@@ -656,22 +736,6 @@ 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)*
|
||||
*/
|
||||
@@ -688,22 +752,6 @@ 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)*
|
||||
*/
|
||||
@@ -768,20 +816,4 @@ 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...");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.5.0
|
||||
* 2022-05-05T10:26:35.496+02:00
|
||||
* 2022-05-13T13:48:10.795+02:00
|
||||
* Generated source version: 3.5.0
|
||||
*
|
||||
*/
|
||||
@@ -18,14 +18,6 @@ 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(
|
||||
@@ -42,22 +34,6 @@ 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(
|
||||
@@ -66,14 +42,6 @@ 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(
|
||||
@@ -98,14 +66,6 @@ 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(
|
||||
@@ -114,14 +74,6 @@ 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(
|
||||
@@ -146,6 +98,142 @@ 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(
|
||||
@@ -170,14 +258,6 @@ 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(
|
||||
@@ -202,14 +282,6 @@ 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(
|
||||
@@ -226,15 +298,7 @@ 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:getStateChanges")
|
||||
@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(
|
||||
|
||||
@@ -266,22 +330,6 @@ 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(
|
||||
@@ -290,14 +338,6 @@ 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(
|
||||
@@ -306,7 +346,7 @@ public interface OmdsServicePortType {
|
||||
at.vvo.omds.types.omds3Types.r1_8_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType param
|
||||
) throws ServiceFaultMsg;
|
||||
|
||||
@WebMethod(action = "urn:getStateChanges")
|
||||
@WebMethod(action = "urn:conversionScope")
|
||||
@WebResult(name = "ConversionScopeResponse", 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.ConversionScopeResponse conversionScope(
|
||||
|
||||
@@ -330,14 +370,6 @@ 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(
|
||||
@@ -346,14 +378,6 @@ 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(
|
||||
@@ -385,12 +409,4 @@ 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;
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.5.0
|
||||
* 2022-05-05T10:26:35.396+02:00
|
||||
* 2022-05-13T13:48:10.731+02:00
|
||||
* Generated source version: 3.5.0
|
||||
*
|
||||
*/
|
||||
@@ -48,19 +48,6 @@ 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;
|
||||
@@ -81,32 +68,6 @@ 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());
|
||||
@@ -120,19 +81,6 @@ 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());
|
||||
@@ -172,19 +120,6 @@ 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());
|
||||
@@ -198,19 +133,6 @@ 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());
|
||||
@@ -250,6 +172,227 @@ 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());
|
||||
@@ -289,19 +432,6 @@ 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());
|
||||
@@ -341,19 +471,6 @@ 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());
|
||||
@@ -380,19 +497,6 @@ 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());
|
||||
@@ -445,32 +549,6 @@ 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());
|
||||
@@ -484,19 +562,6 @@ 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());
|
||||
@@ -549,19 +614,6 @@ 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());
|
||||
@@ -575,19 +627,6 @@ 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());
|
||||
@@ -640,19 +679,6 @@ 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());
|
||||
|
||||
@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.5.0
|
||||
* 2022-05-05T10:26:35.458+02:00
|
||||
* 2022-05-13T13:48:10.778+02:00
|
||||
* Generated source version: 3.5.0
|
||||
*/
|
||||
|
||||
|
||||
@@ -1112,11 +1112,6 @@
|
||||
<xsd:documentation>Schluessel der Tarifkomponente</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="ErsetztId" type="xsd:string" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Im Falle einer Konvertierung die ursprüngliche Id des Vertragsbausteins</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Bezeichnung" type="xsd:string" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Eine menschenverständliche Bezeichnung. Ist kein Eingabewert,wird von der VU gesetzt</xsd:documentation>
|
||||
@@ -1132,6 +1127,27 @@
|
||||
<xsd:documentation>Meldungen zu Elementen in diesem Produktbaustein</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Kombinationen" type="Kombinationen_Type" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Möglichkeit zulässige Kombinationen von Baustein-Ids der Unterbausteine als Restriktion anzugeben.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Konvertierung" minOccurs="0">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ErsetztId" type="xsd:string">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Im Falle einer Konvertierung die ursprüngliche Id des Vertragsbausteins</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="GewaehlteAktion" type="Konvertierungsaktion2_Type" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Gewaehlte Aktion in der Übermittlung der geplanten Konvertierung vom Client.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Produktbaustein_Type" abstract="true">
|
||||
@@ -1218,7 +1234,7 @@
|
||||
<xsd:element name="Verkaufsproduktgeneration" type="xsd:string" minOccurs="0"/>
|
||||
<xsd:element name="Berechnungsvariante" type="Berechnungsvariante_Type" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Ermöglicht eine Vorgabe für die Produktkonfiguration durch den Serviceprovider: von "basic = Basiskonfiguration" über "medium" bis "top" = vollumfänglich".</xsd:documentation>
|
||||
<xsd:documentation>Ermöglicht eine Vorgabe für die Produktkonfiguration an den Serviceprovider: von "basic = Basiskonfiguration" über "medium" bis "top" = vollumfänglich".</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Vermittlernr" type="omds:Vermnr" minOccurs="0">
|
||||
@@ -1450,6 +1466,77 @@
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="KonvertierungBaustein2_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Typ um die Behandlung der Unterbausteine in der Konvertierungshilfe zu spezifizieren</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="BasisProduktbaustein_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="ZulaessigeAktion" type="Konvertierungsaktion2_Type" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Zulaessige Aktion bzw. zulaessige Aktionen in der Übermittlung vom Serviceprovider.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Zusatzinformation" type="KonvertierungZusatzinformation_Type" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Erweiterungsmöglichkeit für VU-spezifische Erweiterungen in der Konvertierungshilfe.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="Konvertierungsaktion2_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Aktion für einen Baustein</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Art" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Nähere Spezifikation der Art der Aktion, falls notwendig.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<!-- Soll die Art an omds:AendGrund_Type gebunden werden? -->
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="KonvertierungsaktionBelassen2_Type" final="#all">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Belassen-Aktion (Keine Aktion, der Baustein bleibt weiter in altem Vertrag)</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="Konvertierungsaktion2_Type"/>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="KonvertierungsaktionUebernehmen2_Type" final="#all">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Uebernehmen-Aktion (der Baustein wird in den Folgevertrag uebernommen)</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="Konvertierungsaktion2_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Baustein" type="KonvertierungBaustein2_Type" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Innerhalb dieser Aktion mögliche Unterelemente dieses Bausteins mit den Aktionen, die an diesen Unterelementen möglich sind.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="KonvertierungsaktionStorno2_Type" final="#all">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Storno-Aktion (der Baustein wird im alten Vertrag storniert und nicht in den neuen übernommen)</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="Konvertierungsaktion2_Type"/>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="KonvertierungZusatzinformation_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Abstraktes Element für die Ableitung von Typen für VU-spezifische Zusatzinformationen</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:complexType>
|
||||
<!-- Allgemeine Typen -->
|
||||
<xsd:simpleType name="Hauptfaelligkeit_Type">
|
||||
<xsd:annotation>
|
||||
|
||||
@@ -350,6 +350,20 @@ 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" />
|
||||
@@ -613,6 +627,16 @@ 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">
|
||||
@@ -1209,7 +1233,7 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
|
||||
<!-- Konvertierungshilfe -->
|
||||
<operation name="conversionScope">
|
||||
<soap:operation soapAction="urn:getStateChanges" style="document"/>
|
||||
<soap:operation soapAction="urn:conversionScope" style="document"/>
|
||||
<input name="ConversionScopeRequestPort">
|
||||
<soap:body use="literal"/>
|
||||
</input>
|
||||
@@ -1221,7 +1245,7 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
</fault>
|
||||
</operation>
|
||||
<operation name="conversionProposal">
|
||||
<soap:operation soapAction="urn:getStateChanges" style="document"/>
|
||||
<soap:operation soapAction="urn:conversionProposal" style="document"/>
|
||||
<input name="ConversionProposalRequestPort">
|
||||
<soap:body use="literal"/>
|
||||
</input>
|
||||
@@ -1232,6 +1256,31 @@ 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>
|
||||
|
||||
|
||||
@@ -4,10 +4,17 @@
|
||||
<xsd:import namespace="urn:omds3CommonServiceTypes-1-1-0" schemaLocation="omds3CommonServiceTypes.xsd"/>
|
||||
<xsd:import namespace="urn:omds3ServiceTypes-1-1-0" schemaLocation="omds3ServiceTypes.xsd"/>
|
||||
<!--Prozessobjekte Berechnung, Offert, Antrag - Spartenübergreifend-->
|
||||
<xsd:complexType name="SpezBOASchritt_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Abstrackter Basistyp für das Datenmodell aller BOA-Prozessschritte</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="SpezBerechnung_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Abstrakter Basistyp Berechnung, der bei Request und bei Response gleich ist</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="SpezBOASchritt_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Personen" type="cst:BeteiligtePersonVertrag_Type" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
@@ -15,11 +22,15 @@
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="SpezOffert_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Abstrakter Basistyp Offert, der bei Request und Response gleich ist</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="SpezBOASchritt_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Offertnummer" type="cst:ObjektId_Type" minOccurs="0"/>
|
||||
<xsd:element name="Personen" type="cst:BeteiligtePersonVertrag_Type" maxOccurs="unbounded">
|
||||
@@ -33,27 +44,21 @@
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="SpezAntrag_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Abstrakter Basistyp für Antrag, der bei Request und bei Response gleich ist</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="SpezOffert_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Antragsart" type="cst:Antragsart_Type" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Die Antragsart kann auch vom ServiceProvider automatisch bestimmt werden, dann bleibt sie im Request leer.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Personen" type="cst:BeteiligtePersonVertrag_Type" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Liste aller benötigten Vertragspersonen (nicht versicherte Personen), welche dann über ihre Rolle referenziert werden. Die Personen können eine Adresse enthalten.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Versicherungsnehmer" type="xsd:unsignedShort">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Referenz auf die Person, die als Versicherungsnehmer fungiert. </xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="AbweichenderPraemienzahler" type="xsd:unsignedShort" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Referenz auf einen abweichenden Praemienzahler, wenn nicht der Versicherungsnehmer die Prämie zahlt</xsd:documentation>
|
||||
@@ -126,6 +131,8 @@
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
<xsd:complexType name="SpezAntragPersonen_Type" abstract="true">
|
||||
<xsd:annotation>
|
||||
@@ -710,4 +717,100 @@
|
||||
<xsd:documentation>Abstraktes Element für die Ableitung von Typen für VU-spezifische Zusatzinformationen</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:complexType>
|
||||
<xsd:element name="ConversionScopeRequest2">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Request um die Konvertierungsmöglichkeiten für einen oder mehrere Verträge zu erhalten</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:CommonRequest_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Vertrag" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Angabe für welche Verträge die Konvertierung geplant ist.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Polizzennr" type="omds:Polizzennr"/>
|
||||
<xsd:element name="VertragsID" type="omds:VertragsID" minOccurs="0"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="ConversionScopeResponse2">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Response mit den Konvertierungsmöglichkeiten</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:CommonResponse_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Scope" type="Konvertierungsumfang2_Type" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Konvertierungsmöglichkeiten</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="ConversionProposalRequest2">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Request um einen Konvertierungsvorschlag zu generieren</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:CommonRequest_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Konvertierungsplan" type="Konvertierungsumfang_Type" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Angabe auf welchem Vertrag oder welchen Verträgen der neue Vertrag aufgebaut werden soll</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="ConversionProposalResponse2">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Response um mit einem Konvertierungsvorschlag</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:complexContent>
|
||||
<xsd:extension base="cst:CommonResponse_Type">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Vorschlag" type="SpezAntrag_Type" minOccurs="0">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Vorschlag für den Antrag des konvertierten Vertrags.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Dokument" type="cst:ProzessDokHandout_Type" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Möglichkeit um Konvertierungsübersicht (Gegenüberstellung von Deckungen) mitzugeben.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
<xsd:element name="Ersatzpolizze" type="cst:Ersatzpolizze_Type" minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Polizzennummern, die im Rahmen der Konvertierung abgelöst werden sollen.</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:element>
|
||||
</xsd:sequence>
|
||||
</xsd:extension>
|
||||
</xsd:complexContent>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:complexType name="Konvertierungsumfang2_Type">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>Spezifiziert die Konvertierung mehrerer Verträge in einen Vertrag</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Vertrag" type="cst:KonvertierungBaustein2_Type" maxOccurs="unbounded"/>
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
Reference in New Issue
Block a user