Allgemeine Methoden für BOA hinzugefügt, die spartenunabhängig sind
This commit is contained in:
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ um einen allgemeinen Berechungsrequest durchzuführen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CalculateCommonRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CalculateCommonRequest_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Berechnungsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnungCommon_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CalculateCommonRequest_Type", propOrder = {
|
||||||
|
"berechnungsanfrage"
|
||||||
|
})
|
||||||
|
public class CalculateCommonRequestType
|
||||||
|
extends CalculateRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Berechnungsanfrage", required = true)
|
||||||
|
protected SpezBerechnungCommonType berechnungsanfrage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der berechnungsanfrage-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezBerechnungCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezBerechnungCommonType getBerechnungsanfrage() {
|
||||||
|
return berechnungsanfrage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der berechnungsanfrage-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezBerechnungCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBerechnungsanfrage(SpezBerechnungCommonType value) {
|
||||||
|
this.berechnungsanfrage = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für einen allgemeinen Berechnungs-Response
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CalculateCommonResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CalculateCommonResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnungCommon_Type" minOccurs="0"/>
|
||||||
|
* <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}UpsellingResponseCommon_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CalculateCommonResponse_Type", propOrder = {
|
||||||
|
"berechnungsantwort",
|
||||||
|
"responseUpselling"
|
||||||
|
})
|
||||||
|
public class CalculateCommonResponseType
|
||||||
|
extends CalculateResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Berechnungsantwort")
|
||||||
|
protected SpezBerechnungCommonType berechnungsantwort;
|
||||||
|
@XmlElement(name = "ResponseUpselling")
|
||||||
|
protected List<UpsellingResponseCommonType> responseUpselling;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der berechnungsantwort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezBerechnungCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezBerechnungCommonType getBerechnungsantwort() {
|
||||||
|
return berechnungsantwort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der berechnungsantwort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezBerechnungCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setBerechnungsantwort(SpezBerechnungCommonType value) {
|
||||||
|
this.berechnungsantwort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the responseUpselling 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 responseUpselling property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getResponseUpselling().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link UpsellingResponseCommonType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<UpsellingResponseCommonType> getResponseUpselling() {
|
||||||
|
if (responseUpselling == null) {
|
||||||
|
responseUpselling = new ArrayList<UpsellingResponseCommonType>();
|
||||||
|
}
|
||||||
|
return this.responseUpselling;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -40,6 +40,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CalculateUnfallReque
|
|||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
CalculateKfzRequestType.class,
|
CalculateKfzRequestType.class,
|
||||||
|
CalculateCommonRequestType.class,
|
||||||
CalculateRechtsschutzRequestType.class,
|
CalculateRechtsschutzRequestType.class,
|
||||||
CalculateSachPrivatRequestType.class,
|
CalculateSachPrivatRequestType.class,
|
||||||
CalculateUnfallRequestType.class
|
CalculateUnfallRequestType.class
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CalculateUnfallRespo
|
|||||||
@XmlType(name = "CalculateResponse_Type")
|
@XmlType(name = "CalculateResponse_Type")
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
CalculateKfzResponseType.class,
|
CalculateKfzResponseType.class,
|
||||||
|
CalculateCommonResponseType.class,
|
||||||
CalculateRechtsschutzResponseType.class,
|
CalculateRechtsschutzResponseType.class,
|
||||||
CalculateSachPrivatResponseType.class,
|
CalculateSachPrivatResponseType.class,
|
||||||
CalculateUnfallResponseType.class
|
CalculateUnfallResponseType.class
|
||||||
|
|||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ um einen allgemeinen Antragserzeugungs-Request durchzuführen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CreateApplicationCommonRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CreateApplicationCommonRequest_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragCommon_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CreateApplicationCommonRequest_Type", propOrder = {
|
||||||
|
"antragsanfrage"
|
||||||
|
})
|
||||||
|
public class CreateApplicationCommonRequestType
|
||||||
|
extends CreateApplicationRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Antragsanfrage", required = true)
|
||||||
|
protected SpezAntragCommonType antragsanfrage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezAntragCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezAntragCommonType getAntragsanfrage() {
|
||||||
|
return antragsanfrage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antragsanfrage-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezAntragCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntragsanfrage(SpezAntragCommonType value) {
|
||||||
|
this.antragsanfrage = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für einen allgemeinen Antragserzeugungs-Response
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CreateApplicationCommonResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CreateApplicationCommonResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragCommon_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CreateApplicationCommonResponse_Type", propOrder = {
|
||||||
|
"antragsantwort"
|
||||||
|
})
|
||||||
|
public class CreateApplicationCommonResponseType
|
||||||
|
extends CreateApplicationResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Antragsantwort")
|
||||||
|
protected SpezAntragCommonType antragsantwort;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antragsantwort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezAntragCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezAntragCommonType getAntragsantwort() {
|
||||||
|
return antragsantwort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antragsantwort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezAntragCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntragsantwort(SpezAntragCommonType value) {
|
||||||
|
this.antragsantwort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -43,6 +43,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateApplicationUnf
|
|||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
CreateApplicationKfzRequestType.class,
|
CreateApplicationKfzRequestType.class,
|
||||||
|
CreateApplicationCommonRequestType.class,
|
||||||
CreateApplicationRechtsschutzRequestType.class,
|
CreateApplicationRechtsschutzRequestType.class,
|
||||||
CreateApplicationSachPrivatRequestType.class,
|
CreateApplicationSachPrivatRequestType.class,
|
||||||
CreateApplicationUnfallRequestType.class
|
CreateApplicationUnfallRequestType.class
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateApplicationUnf
|
|||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
CreateApplicationKfzResponseType.class,
|
CreateApplicationKfzResponseType.class,
|
||||||
|
CreateApplicationCommonResponseType.class,
|
||||||
CreateApplicationRechtsschutzResponseType.class,
|
CreateApplicationRechtsschutzResponseType.class,
|
||||||
CreateApplicationSachPrivatResponseType.class,
|
CreateApplicationSachPrivatResponseType.class,
|
||||||
CreateApplicationUnfallResponseType.class
|
CreateApplicationUnfallResponseType.class
|
||||||
|
|||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ um einen allgemeinen Offerterzeugungs-Request durchzuführen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CreateOfferCommonRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CreateOfferCommonRequest_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Offertanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffertCommon_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CreateOfferCommonRequest_Type", propOrder = {
|
||||||
|
"offertanfrage"
|
||||||
|
})
|
||||||
|
public class CreateOfferCommonRequestType
|
||||||
|
extends CreateOfferRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Offertanfrage", required = true)
|
||||||
|
protected SpezOffertCommonType offertanfrage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der offertanfrage-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezOffertCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezOffertCommonType getOffertanfrage() {
|
||||||
|
return offertanfrage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der offertanfrage-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezOffertCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOffertanfrage(SpezOffertCommonType value) {
|
||||||
|
this.offertanfrage = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für einen allgemeinen Offerterzeugungs-Response
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für CreateOfferCommonResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="CreateOfferCommonResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffertCommon_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "CreateOfferCommonResponse_Type", propOrder = {
|
||||||
|
"offertantwort"
|
||||||
|
})
|
||||||
|
public class CreateOfferCommonResponseType
|
||||||
|
extends CreateOfferResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Offertantwort")
|
||||||
|
protected SpezOffertCommonType offertantwort;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der offertantwort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezOffertCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezOffertCommonType getOffertantwort() {
|
||||||
|
return offertantwort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der offertantwort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezOffertCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setOffertantwort(SpezOffertCommonType value) {
|
||||||
|
this.offertantwort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -34,6 +34,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateOfferUnfallReq
|
|||||||
@XmlType(name = "CreateOfferRequest_Type")
|
@XmlType(name = "CreateOfferRequest_Type")
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
CreateOfferKfzRequestType.class,
|
CreateOfferKfzRequestType.class,
|
||||||
|
CreateOfferCommonRequestType.class,
|
||||||
CreateOfferRechtsschutzRequestType.class,
|
CreateOfferRechtsschutzRequestType.class,
|
||||||
CreateOfferSachPrivatRequestType.class,
|
CreateOfferSachPrivatRequestType.class,
|
||||||
CreateOfferUnfallRequestType.class
|
CreateOfferUnfallRequestType.class
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.CreateOfferUnfallRes
|
|||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
CreateOfferKfzResponseType.class,
|
CreateOfferKfzResponseType.class,
|
||||||
|
CreateOfferCommonResponseType.class,
|
||||||
CreateOfferRechtsschutzResponseType.class,
|
CreateOfferRechtsschutzResponseType.class,
|
||||||
CreateOfferSachPrivatResponseType.class,
|
CreateOfferSachPrivatResponseType.class,
|
||||||
CreateOfferUnfallResponseType.class
|
CreateOfferUnfallResponseType.class
|
||||||
|
|||||||
@@ -26,6 +26,14 @@ public class ObjectFactory {
|
|||||||
|
|
||||||
private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest");
|
private final static QName _GetApplicationDocumentRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentRequest");
|
||||||
private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse");
|
private final static QName _GetApplicationDocumentResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "GetApplicationDocumentResponse");
|
||||||
|
private final static QName _CalculateCommonRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CalculateCommonRequest");
|
||||||
|
private final static QName _CalculateCommonResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CalculateCommonResponse");
|
||||||
|
private final static QName _CreateOfferCommonRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CreateOfferCommonRequest");
|
||||||
|
private final static QName _CreateOfferCommonResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CreateOfferCommonResponse");
|
||||||
|
private final static QName _CreateApplicationCommonRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CreateApplicationCommonRequest");
|
||||||
|
private final static QName _CreateApplicationCommonResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "CreateApplicationCommonResponse");
|
||||||
|
private final static QName _SubmitApplicationCommonRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "SubmitApplicationCommonRequest");
|
||||||
|
private final static QName _SubmitApplicationCommonResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", "SubmitApplicationCommonResponse");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common
|
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common
|
||||||
@@ -50,6 +58,94 @@ public class ObjectFactory {
|
|||||||
return new GetApplicationDocumentResponseType();
|
return new GetApplicationDocumentResponseType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CalculateCommonRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CalculateCommonRequestType createCalculateCommonRequestType() {
|
||||||
|
return new CalculateCommonRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CalculateCommonResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CalculateCommonResponseType createCalculateCommonResponseType() {
|
||||||
|
return new CalculateCommonResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CreateOfferCommonRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CreateOfferCommonRequestType createCreateOfferCommonRequestType() {
|
||||||
|
return new CreateOfferCommonRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CreateOfferCommonResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CreateOfferCommonResponseType createCreateOfferCommonResponseType() {
|
||||||
|
return new CreateOfferCommonResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CreateApplicationCommonRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CreateApplicationCommonRequestType createCreateApplicationCommonRequestType() {
|
||||||
|
return new CreateApplicationCommonRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link CreateApplicationCommonResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public CreateApplicationCommonResponseType createCreateApplicationCommonResponseType() {
|
||||||
|
return new CreateApplicationCommonResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SubmitApplicationCommonRequestType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SubmitApplicationCommonRequestType createSubmitApplicationCommonRequestType() {
|
||||||
|
return new SubmitApplicationCommonRequestType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SubmitApplicationCommonResponseType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SubmitApplicationCommonResponseType createSubmitApplicationCommonResponseType() {
|
||||||
|
return new SubmitApplicationCommonResponseType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SpezBerechnungCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezBerechnungCommonType createSpezBerechnungCommonType() {
|
||||||
|
return new SpezBerechnungCommonType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SpezOffertCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezOffertCommonType createSpezOffertCommonType() {
|
||||||
|
return new SpezOffertCommonType();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link SpezAntragCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezAntragCommonType createSpezAntragCommonType() {
|
||||||
|
return new SpezAntragCommonType();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link GetApplicationDocumentRequestType }{@code >}}
|
||||||
*
|
*
|
||||||
@@ -68,4 +164,76 @@ public class ObjectFactory {
|
|||||||
return new JAXBElement<GetApplicationDocumentResponseType>(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value);
|
return new JAXBElement<GetApplicationDocumentResponseType>(_GetApplicationDocumentResponse_QNAME, GetApplicationDocumentResponseType.class, null, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateCommonRequestType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CalculateCommonRequest")
|
||||||
|
public JAXBElement<CalculateCommonRequestType> createCalculateCommonRequest(CalculateCommonRequestType value) {
|
||||||
|
return new JAXBElement<CalculateCommonRequestType>(_CalculateCommonRequest_QNAME, CalculateCommonRequestType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateCommonResponseType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CalculateCommonResponse")
|
||||||
|
public JAXBElement<CalculateCommonResponseType> createCalculateCommonResponse(CalculateCommonResponseType value) {
|
||||||
|
return new JAXBElement<CalculateCommonResponseType>(_CalculateCommonResponse_QNAME, CalculateCommonResponseType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferCommonRequestType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CreateOfferCommonRequest")
|
||||||
|
public JAXBElement<CreateOfferCommonRequestType> createCreateOfferCommonRequest(CreateOfferCommonRequestType value) {
|
||||||
|
return new JAXBElement<CreateOfferCommonRequestType>(_CreateOfferCommonRequest_QNAME, CreateOfferCommonRequestType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferCommonResponseType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CreateOfferCommonResponse")
|
||||||
|
public JAXBElement<CreateOfferCommonResponseType> createCreateOfferCommonResponse(CreateOfferCommonResponseType value) {
|
||||||
|
return new JAXBElement<CreateOfferCommonResponseType>(_CreateOfferCommonResponse_QNAME, CreateOfferCommonResponseType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationCommonRequestType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CreateApplicationCommonRequest")
|
||||||
|
public JAXBElement<CreateApplicationCommonRequestType> createCreateApplicationCommonRequest(CreateApplicationCommonRequestType value) {
|
||||||
|
return new JAXBElement<CreateApplicationCommonRequestType>(_CreateApplicationCommonRequest_QNAME, CreateApplicationCommonRequestType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationCommonResponseType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "CreateApplicationCommonResponse")
|
||||||
|
public JAXBElement<CreateApplicationCommonResponseType> createCreateApplicationCommonResponse(CreateApplicationCommonResponseType value) {
|
||||||
|
return new JAXBElement<CreateApplicationCommonResponseType>(_CreateApplicationCommonResponse_QNAME, CreateApplicationCommonResponseType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationCommonRequestType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "SubmitApplicationCommonRequest")
|
||||||
|
public JAXBElement<SubmitApplicationCommonRequestType> createSubmitApplicationCommonRequest(SubmitApplicationCommonRequestType value) {
|
||||||
|
return new JAXBElement<SubmitApplicationCommonRequestType>(_SubmitApplicationCommonRequest_QNAME, SubmitApplicationCommonRequestType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationCommonResponseType }{@code >}}
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", name = "SubmitApplicationCommonResponse")
|
||||||
|
public JAXBElement<SubmitApplicationCommonResponseType> createSubmitApplicationCommonResponse(SubmitApplicationCommonResponseType value) {
|
||||||
|
return new JAXBElement<SubmitApplicationCommonResponseType>(_SubmitApplicationCommonResponse_QNAME, SubmitApplicationCommonResponseType.class, null, value);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Daten Antrag die bei Request und Response gleich sind
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für SpezAntragCommon_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SpezAntragCommon_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntrag_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Verkaufsprodukt" type="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SpezAntragCommon_Type", propOrder = {
|
||||||
|
"verkaufsprodukt"
|
||||||
|
})
|
||||||
|
public class SpezAntragCommonType
|
||||||
|
extends SpezAntragType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||||
|
protected VerkaufsproduktType verkaufsprodukt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VerkaufsproduktType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerkaufsproduktType getVerkaufsprodukt() {
|
||||||
|
return verkaufsprodukt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VerkaufsproduktType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsprodukt(VerkaufsproduktType value) {
|
||||||
|
this.verkaufsprodukt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -74,6 +74,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SpezAntragUnfallType
|
|||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
SpezAntragKfzType.class,
|
SpezAntragKfzType.class,
|
||||||
|
SpezAntragCommonType.class,
|
||||||
SpezAntragRechtsschutzType.class,
|
SpezAntragRechtsschutzType.class,
|
||||||
AntragSachPrivatType.class,
|
AntragSachPrivatType.class,
|
||||||
SpezAntragUnfallType.class
|
SpezAntragUnfallType.class
|
||||||
|
|||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Daten Berechnung die bei Request und Response gleich sind
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für SpezBerechnungCommon_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SpezBerechnungCommon_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezBerechnung_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Verkaufsprodukt" type="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SpezBerechnungCommon_Type", propOrder = {
|
||||||
|
"verkaufsprodukt"
|
||||||
|
})
|
||||||
|
public class SpezBerechnungCommonType
|
||||||
|
extends SpezBerechnungType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||||
|
protected VerkaufsproduktType verkaufsprodukt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VerkaufsproduktType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerkaufsproduktType getVerkaufsprodukt() {
|
||||||
|
return verkaufsprodukt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VerkaufsproduktType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsprodukt(VerkaufsproduktType value) {
|
||||||
|
this.verkaufsprodukt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -33,6 +33,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SpezBerechnungUnfall
|
|||||||
@XmlType(name = "SpezBerechnung_Type")
|
@XmlType(name = "SpezBerechnung_Type")
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
SpezBerechnungKfzType.class,
|
SpezBerechnungKfzType.class,
|
||||||
|
SpezBerechnungCommonType.class,
|
||||||
SpezBerechnungRechtsschutzType.class,
|
SpezBerechnungRechtsschutzType.class,
|
||||||
BerechnungSachPrivatType.class,
|
BerechnungSachPrivatType.class,
|
||||||
SpezBerechnungUnfallType.class
|
SpezBerechnungUnfallType.class
|
||||||
|
|||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Daten Offerterstellung die bei Request und Response gleich sind
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für SpezOffertCommon_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SpezOffertCommon_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezOffert_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Verkaufsprodukt" type="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SpezOffertCommon_Type", propOrder = {
|
||||||
|
"verkaufsprodukt"
|
||||||
|
})
|
||||||
|
public class SpezOffertCommonType
|
||||||
|
extends SpezOffertType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Verkaufsprodukt", required = true)
|
||||||
|
protected VerkaufsproduktType verkaufsprodukt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der verkaufsprodukt-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link VerkaufsproduktType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public VerkaufsproduktType getVerkaufsprodukt() {
|
||||||
|
return verkaufsprodukt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der verkaufsprodukt-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link VerkaufsproduktType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setVerkaufsprodukt(VerkaufsproduktType value) {
|
||||||
|
this.verkaufsprodukt = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -48,6 +48,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SpezOffertUnfallType
|
|||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
SpezOffertKfzType.class,
|
SpezOffertKfzType.class,
|
||||||
|
SpezOffertCommonType.class,
|
||||||
SpezOffertRechtsschutzType.class,
|
SpezOffertRechtsschutzType.class,
|
||||||
OffertSachPrivatType.class,
|
OffertSachPrivatType.class,
|
||||||
SpezOffertUnfallType.class
|
SpezOffertUnfallType.class
|
||||||
|
|||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ um eine allgemeine Antragsüberleitung durchzuführen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für SubmitApplicationCommonRequest_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SubmitApplicationCommonRequest_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequest_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Antragsanfrage" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragCommon_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SubmitApplicationCommonRequest_Type", propOrder = {
|
||||||
|
"antragsanfrage"
|
||||||
|
})
|
||||||
|
public class SubmitApplicationCommonRequestType
|
||||||
|
extends SubmitApplicationRequestType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Antragsanfrage")
|
||||||
|
protected SpezAntragCommonType antragsanfrage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antragsanfrage-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezAntragCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezAntragCommonType getAntragsanfrage() {
|
||||||
|
return antragsanfrage;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antragsanfrage-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezAntragCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntragsanfrage(SpezAntragCommonType value) {
|
||||||
|
this.antragsanfrage = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typ für einen allgemeinen Antragsüberleitungs-Response
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für SubmitApplicationCommonResponse_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="SubmitApplicationCommonResponse_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponse_Type">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Antragsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SpezAntragCommon_Type" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </extension>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "SubmitApplicationCommonResponse_Type", propOrder = {
|
||||||
|
"antragsantwort"
|
||||||
|
})
|
||||||
|
public class SubmitApplicationCommonResponseType
|
||||||
|
extends SubmitApplicationResponseType
|
||||||
|
{
|
||||||
|
|
||||||
|
@XmlElement(name = "Antragsantwort")
|
||||||
|
protected SpezAntragCommonType antragsantwort;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft den Wert der antragsantwort-Eigenschaft ab.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* possible object is
|
||||||
|
* {@link SpezAntragCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public SpezAntragCommonType getAntragsantwort() {
|
||||||
|
return antragsantwort;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Legt den Wert der antragsantwort-Eigenschaft fest.
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* allowed object is
|
||||||
|
* {@link SpezAntragCommonType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public void setAntragsantwort(SpezAntragCommonType value) {
|
||||||
|
this.antragsantwort = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -46,6 +46,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnf
|
|||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
SubmitApplicationKfzRequestType.class,
|
SubmitApplicationKfzRequestType.class,
|
||||||
|
SubmitApplicationCommonRequestType.class,
|
||||||
SubmitApplicationRechtsschutzRequestType.class,
|
SubmitApplicationRechtsschutzRequestType.class,
|
||||||
SubmitApplicationSachPrivatRequestType.class,
|
SubmitApplicationSachPrivatRequestType.class,
|
||||||
SubmitApplicationUnfallRequestType.class
|
SubmitApplicationUnfallRequestType.class
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SubmitApplicationUnf
|
|||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
@XmlSeeAlso({
|
||||||
SubmitApplicationKfzResponseType.class,
|
SubmitApplicationKfzResponseType.class,
|
||||||
|
SubmitApplicationCommonResponseType.class,
|
||||||
SubmitApplicationRechtsschutzResponseType.class,
|
SubmitApplicationRechtsschutzResponseType.class,
|
||||||
SubmitApplicationSachPrivatResponseType.class,
|
SubmitApplicationSachPrivatResponseType.class,
|
||||||
SubmitApplicationUnfallResponseType.class
|
SubmitApplicationUnfallResponseType.class
|
||||||
|
|||||||
@@ -0,0 +1,72 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.VerkaufsproduktType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Response Upselling Alternativen
|
||||||
|
*
|
||||||
|
* <p>Java-Klasse für UpsellingResponseCommon_Type complex type.
|
||||||
|
*
|
||||||
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="UpsellingResponseCommon_Type">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="UpsellingVerkaufsprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}Verkaufsprodukt_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "UpsellingResponseCommon_Type", propOrder = {
|
||||||
|
"upsellingVerkaufsprodukte"
|
||||||
|
})
|
||||||
|
public abstract class UpsellingResponseCommonType {
|
||||||
|
|
||||||
|
@XmlElement(name = "UpsellingVerkaufsprodukte")
|
||||||
|
protected List<VerkaufsproduktType> upsellingVerkaufsprodukte;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the upsellingVerkaufsprodukte 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 upsellingVerkaufsprodukte property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getUpsellingVerkaufsprodukte().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link VerkaufsproduktType }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<VerkaufsproduktType> getUpsellingVerkaufsprodukte() {
|
||||||
|
if (upsellingVerkaufsprodukte == null) {
|
||||||
|
upsellingVerkaufsprodukte = new ArrayList<VerkaufsproduktType>();
|
||||||
|
}
|
||||||
|
return this.upsellingVerkaufsprodukte;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -20,7 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseTyp
|
|||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponse_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type"/>
|
* <element name="Berechnungsantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezBerechnungRechtsschutz_Type" minOccurs="0"/>
|
||||||
* <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}UpsellingRechtsschutzResponse_Type" minOccurs="0"/>
|
* <element name="ResponseUpselling" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}UpsellingRechtsschutzResponse_Type" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
@@ -39,7 +39,7 @@ public class CalculateRechtsschutzResponseType
|
|||||||
extends CalculateResponseType
|
extends CalculateResponseType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Berechnungsantwort", required = true)
|
@XmlElement(name = "Berechnungsantwort")
|
||||||
protected SpezBerechnungRechtsschutzType berechnungsantwort;
|
protected SpezBerechnungRechtsschutzType berechnungsantwort;
|
||||||
@XmlElement(name = "ResponseUpselling")
|
@XmlElement(name = "ResponseUpselling")
|
||||||
protected UpsellingRechtsschutzResponseType responseUpselling;
|
protected UpsellingRechtsschutzResponseType responseUpselling;
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseT
|
|||||||
* <complexContent>
|
* <complexContent>
|
||||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
|
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponse_Type">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type"/>
|
* <element name="Offertantwort" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs}SpezOffertRechtsschutz_Type" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
@@ -37,7 +37,7 @@ public class CreateOfferRechtsschutzResponseType
|
|||||||
extends CreateOfferResponseType
|
extends CreateOfferResponseType
|
||||||
{
|
{
|
||||||
|
|
||||||
@XmlElement(name = "Offertantwort", required = true)
|
@XmlElement(name = "Offertantwort")
|
||||||
protected SpezOffertRechtsschutzType offertantwort;
|
protected SpezOffertRechtsschutzType offertantwort;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -51,9 +51,9 @@ public class ElementarproduktUnfallType
|
|||||||
{
|
{
|
||||||
|
|
||||||
@XmlElementRefs({
|
@XmlElementRefs({
|
||||||
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
|
|
||||||
@XmlElementRef(name = "VersPersonRefLfNr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "VersPersonRefLfNr", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
|
@XmlElementRef(name = "Versicherungssumme", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
|
||||||
|
@XmlElementRef(name = "Selbstbehalt", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false),
|
||||||
@XmlElementRef(name = "AttributMetadaten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false)
|
@XmlElementRef(name = "AttributMetadaten", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall", type = JAXBElement.class, required = false)
|
||||||
})
|
})
|
||||||
protected List<JAXBElement<?>> rest;
|
protected List<JAXBElement<?>> rest;
|
||||||
@@ -86,10 +86,10 @@ public class ElementarproduktUnfallType
|
|||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link AttributMetadatenType }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link String }{@code >}
|
* {@link JAXBElement }{@code <}{@link String }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link Long }{@code >}
|
* {@link JAXBElement }{@code <}{@link Long }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link SelbstbehaltType }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link AttributMetadatenType }{@code >}
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -62,9 +62,9 @@ public class ChangeCommunicationObjectRequestType
|
|||||||
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
protected ObjektIdType objektId;
|
protected ObjektIdType objektId;
|
||||||
@XmlElementRefs({
|
@XmlElementRefs({
|
||||||
|
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
|
||||||
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class),
|
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class),
|
||||||
@XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
|
@XmlElementRef(name = "GeaenderteKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class)
|
||||||
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class)
|
|
||||||
})
|
})
|
||||||
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
|
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
|
||||||
@XmlElement(name = "WirksamtkeitAb", required = true)
|
@XmlElement(name = "WirksamtkeitAb", required = true)
|
||||||
@@ -115,8 +115,8 @@ public class ChangeCommunicationObjectRequestType
|
|||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Objects of the following type(s) are allowed in the list
|
* Objects of the following type(s) are allowed in the list
|
||||||
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
|
|
||||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||||
|
* {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}
|
||||||
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
* {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* This class was generated by Apache CXF 3.2.0
|
||||||
* 2019-08-21T14:03:44.466+02:00
|
* 2019-08-21T15:48:46.103+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ import javax.xml.ws.soap.MTOM;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* This class was generated by Apache CXF 3.2.0
|
||||||
* 2019-08-21T14:03:44.381+02:00
|
* 2019-08-21T15:48:46.008+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@@ -28,27 +28,12 @@ import javax.xml.ws.soap.MTOM;
|
|||||||
targetNamespace = "urn:omds3Services-1-4-0",
|
targetNamespace = "urn:omds3Services-1-4-0",
|
||||||
wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3Services.wsdl",
|
wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3Services.wsdl",
|
||||||
endpointInterface = "at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType")
|
endpointInterface = "at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType")
|
||||||
|
|
||||||
@MTOM(enabled = true, threshold = 1024)
|
@MTOM(enabled = true, threshold = 1024)
|
||||||
public class OmdsServicePortImpl implements OmdsServicePortType {
|
public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||||
|
|
||||||
private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName());
|
private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName());
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation getOMDSPackageList");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse _return = null;
|
|
||||||
return _return;
|
|
||||||
} catch (java.lang.Exception ex) {
|
|
||||||
ex.printStackTrace();
|
|
||||||
throw new RuntimeException(ex);
|
|
||||||
}
|
|
||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseRequestType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#addDocToBusinessCase(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
@@ -81,22 +66,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation calculateSachPrivat");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_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)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#addCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.AddCommunicationObjectRequestType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#addCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.AddCommunicationObjectRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
@@ -129,22 +98,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation createApplicationRechtsschutz");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _return = null;
|
|
||||||
return _return;
|
|
||||||
} catch (java.lang.Exception ex) {
|
|
||||||
ex.printStackTrace();
|
|
||||||
throw new RuntimeException(ex);
|
|
||||||
}
|
|
||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplicationKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
@@ -177,38 +130,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation deepLinkPartner");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_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_4_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation deepLinkPolicy");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
|
||||||
return _return;
|
|
||||||
} catch (java.lang.Exception ex) {
|
|
||||||
ex.printStackTrace();
|
|
||||||
throw new RuntimeException(ex);
|
|
||||||
}
|
|
||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateOfferRechtsschutzRequestType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createOfferRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateOfferRechtsschutzRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
@@ -257,22 +178,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation getUserData");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse _return = null;
|
|
||||||
return _return;
|
|
||||||
} catch (java.lang.Exception ex) {
|
|
||||||
ex.printStackTrace();
|
|
||||||
throw new RuntimeException(ex);
|
|
||||||
}
|
|
||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#changePersonData(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangePersonDataRequestType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#changePersonData(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangePersonDataRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
@@ -305,22 +210,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation deepLinkClaim");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
|
||||||
return _return;
|
|
||||||
} catch (java.lang.Exception ex) {
|
|
||||||
ex.printStackTrace();
|
|
||||||
throw new RuntimeException(ex);
|
|
||||||
}
|
|
||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createClaim(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.CreateClaimRequestType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createClaim(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.CreateClaimRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
@@ -353,6 +242,310 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation deepLinkOffer");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_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_4_0.service.OmdsServicePortType#submitApplication(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonResponseType submitApplication(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation submitApplication");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonResponseType _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_4_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation getDocumentsOfPeriod");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_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_4_0.service.OmdsServicePortType#getClaimLight(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType getClaimLight(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation getClaimLight");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType _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_4_0.service.OmdsServicePortType#getPoliciesOfPartner(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType getPoliciesOfPartner(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation getPoliciesOfPartner");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType _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_4_0.service.OmdsServicePortType#deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation deleteCommunicationObject");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType _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_4_0.service.OmdsServicePortType#getChangedClaimsList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType getChangedClaimsList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation getChangedClaimsList");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType _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_4_0.service.OmdsServicePortType#getPartner(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType getPartner(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation getPartner");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType _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_4_0.service.OmdsServicePortType#calculate(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonResponseType calculate(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation calculate");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonResponseType _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_4_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation getArcImageInfos");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_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_4_0.service.OmdsServicePortType#getLossEventList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType getLossEventList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation getLossEventList");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType _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_4_0.service.OmdsServicePortType#getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation getOMDSPackageList");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_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_4_0.service.OmdsServicePortType#createApplication(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonResponseType createApplication(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation createApplication");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonResponseType _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_4_0.service.OmdsServicePortType#calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation calculateSachPrivat");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_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_4_0.service.OmdsServicePortType#createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation createApplicationRechtsschutz");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _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_4_0.service.OmdsServicePortType#deepLinkPartner(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation deepLinkPartner");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_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_4_0.service.OmdsServicePortType#deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation deepLinkPolicy");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_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_4_0.service.OmdsServicePortType#getUserData(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse getUserData(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation getUserData");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse _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_4_0.service.OmdsServicePortType#deepLinkClaim(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters)*
|
||||||
|
*/
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation deepLinkClaim");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
||||||
|
return _return;
|
||||||
|
} catch (java.lang.Exception ex) {
|
||||||
|
ex.printStackTrace();
|
||||||
|
throw new RuntimeException(ex);
|
||||||
|
}
|
||||||
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#collectionChange(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.CollectionChangeRequestType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#collectionChange(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.CollectionChangeRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
@@ -402,29 +595,13 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deepLinkOffer(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createOffer(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters) throws ServiceFaultMsg {
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonResponseType createOffer(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonRequestType parameters) throws ServiceFaultMsg {
|
||||||
LOG.info("Executing operation deepLinkOffer");
|
LOG.info("Executing operation createOffer");
|
||||||
System.out.println(parameters);
|
System.out.println(parameters);
|
||||||
try {
|
try {
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _return = null;
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonResponseType _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_4_0.service.OmdsServicePortType#getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation getDocumentsOfPeriod");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType _return = null;
|
|
||||||
return _return;
|
return _return;
|
||||||
} catch (java.lang.Exception ex) {
|
} catch (java.lang.Exception ex) {
|
||||||
ex.printStackTrace();
|
ex.printStackTrace();
|
||||||
@@ -449,22 +626,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getClaimLight(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType getClaimLight(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation getClaimLight");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType _return = null;
|
|
||||||
return _return;
|
|
||||||
} catch (java.lang.Exception ex) {
|
|
||||||
ex.printStackTrace();
|
|
||||||
throw new RuntimeException(ex);
|
|
||||||
}
|
|
||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#calculateKfz(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
@@ -481,22 +642,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getPoliciesOfPartner(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType getPoliciesOfPartner(at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation getPoliciesOfPartner");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType _return = null;
|
|
||||||
return _return;
|
|
||||||
} catch (java.lang.Exception ex) {
|
|
||||||
ex.printStackTrace();
|
|
||||||
throw new RuntimeException(ex);
|
|
||||||
}
|
|
||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#changeCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangeCommunicationObjectRequestType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#changeCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangeCommunicationObjectRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
@@ -529,54 +674,6 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation deleteCommunicationObject");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType _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_4_0.service.OmdsServicePortType#getChangedClaimsList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType getChangedClaimsList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation getChangedClaimsList");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType _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_4_0.service.OmdsServicePortType#getPartner(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType getPartner(at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation getPartner");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType _return = null;
|
|
||||||
return _return;
|
|
||||||
} catch (java.lang.Exception ex) {
|
|
||||||
ex.printStackTrace();
|
|
||||||
throw new RuntimeException(ex);
|
|
||||||
}
|
|
||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters)*
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#createApplicationSachPrivat(at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType parameters)*
|
||||||
*/
|
*/
|
||||||
@@ -737,36 +834,4 @@ public class OmdsServicePortImpl implements OmdsServicePortType {
|
|||||||
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType#getArcImageInfos(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse getArcImageInfos(at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation getArcImageInfos");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_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_4_0.service.OmdsServicePortType#getLossEventList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters)*
|
|
||||||
*/
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType getLossEventList(at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters) throws ServiceFaultMsg {
|
|
||||||
LOG.info("Executing operation getLossEventList");
|
|
||||||
System.out.println(parameters);
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType _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.2.0
|
* This class was generated by Apache CXF 3.2.0
|
||||||
* 2019-08-21T14:03:44.437+02:00
|
* 2019-08-21T15:48:46.074+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@@ -18,13 +18,6 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
|||||||
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
|
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
|
||||||
public interface OmdsServicePortType {
|
public interface OmdsServicePortType {
|
||||||
|
|
||||||
@WebMethod(action = "urn:getOMDSPackageList")
|
|
||||||
@WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(
|
|
||||||
@WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:addDocToBusinessCase")
|
@WebMethod(action = "urn:addDocToBusinessCase")
|
||||||
@WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters")
|
@WebResult(name = "AddDocToBusinessCaseResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseResponseType addDocToBusinessCase(
|
||||||
@@ -39,13 +32,6 @@ public interface OmdsServicePortType {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.CheckAddressRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.CheckAddressRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:calculateSachPrivat")
|
|
||||||
@WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(
|
|
||||||
@WebParam(partName = "parameters", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:addCommunicationObject")
|
@WebMethod(action = "urn:addCommunicationObject")
|
||||||
@WebResult(name = "AddCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
|
@WebResult(name = "AddCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.AddCommunicationObjectResponseType addCommunicationObject(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.AddCommunicationObjectResponseType addCommunicationObject(
|
||||||
@@ -60,13 +46,6 @@ public interface OmdsServicePortType {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CalculateRechtsschutzRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CalculateRechtsschutzRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:createApplicationRechtsschutz")
|
|
||||||
@WebResult(name = "CreateApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(
|
|
||||||
@WebParam(partName = "parameters", name = "CreateApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:createApplicationKfz")
|
@WebMethod(action = "urn:createApplicationKfz")
|
||||||
@WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters")
|
@WebResult(name = "CreateApplicationKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateApplicationKfzResponseType createApplicationKfz(
|
||||||
@@ -81,20 +60,6 @@ public interface OmdsServicePortType {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:deepLinkPartner")
|
|
||||||
@WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(
|
|
||||||
@WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:deepLinkPolicy")
|
|
||||||
@WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(
|
|
||||||
@WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:createOfferRechtsschutz")
|
@WebMethod(action = "urn:createOfferRechtsschutz")
|
||||||
@WebResult(name = "CreateOfferRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
|
@WebResult(name = "CreateOfferRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateOfferRechtsschutzResponseType createOfferRechtsschutz(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateOfferRechtsschutzResponseType createOfferRechtsschutz(
|
||||||
@@ -116,13 +81,6 @@ public interface OmdsServicePortType {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:getUserData")
|
|
||||||
@WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse getUserData(
|
|
||||||
@WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:changePersonData")
|
@WebMethod(action = "urn:changePersonData")
|
||||||
@WebResult(name = "ChangePersonDataResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
|
@WebResult(name = "ChangePersonDataResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangePersonDataResponseType changePersonData(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangePersonDataResponseType changePersonData(
|
||||||
@@ -137,13 +95,6 @@ public interface OmdsServicePortType {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.InitiateClaimRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.InitiateClaimRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:deepLinkClaim")
|
|
||||||
@WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(
|
|
||||||
@WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:createClaim")
|
@WebMethod(action = "urn:createClaim")
|
||||||
@WebResult(name = "CreateClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
|
@WebResult(name = "CreateClaimResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.CreateClaimResponseType createClaim(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.CreateClaimResponseType createClaim(
|
||||||
@@ -158,6 +109,139 @@ public interface OmdsServicePortType {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SubmitClaimRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SubmitClaimRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:deepLinkOffer")
|
||||||
|
@WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(
|
||||||
|
@WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:submitApplication")
|
||||||
|
@WebResult(name = "SubmitApplicationCommonResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonResponseType submitApplication(
|
||||||
|
@WebParam(partName = "parameters", name = "SubmitApplicationCommonRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:getDocumentsOfPeriod")
|
||||||
|
@WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(
|
||||||
|
@WebParam(partName = "parameters", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:getClaimLight")
|
||||||
|
@WebResult(name = "GetClaimLightResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType getClaimLight(
|
||||||
|
@WebParam(partName = "parameters", name = "GetClaimLightRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:changePersonData")
|
||||||
|
@WebResult(name = "GetPoliciesOfPartnerResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType getPoliciesOfPartner(
|
||||||
|
@WebParam(partName = "parameters", name = "GetPoliciesOfPartnerRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:deleteCommunicationObject")
|
||||||
|
@WebResult(name = "DeleteCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(
|
||||||
|
@WebParam(partName = "parameters", name = "DeleteCommunicationObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:getChangedClaimsList")
|
||||||
|
@WebResult(name = "ChangedClaimsListResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType getChangedClaimsList(
|
||||||
|
@WebParam(partName = "parameters", name = "ChangedClaimsListRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:getPartner")
|
||||||
|
@WebResult(name = "GetPartnerResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType getPartner(
|
||||||
|
@WebParam(partName = "parameters", name = "GetPartnerRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:calculate")
|
||||||
|
@WebResult(name = "CalculateCommonResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonResponseType calculate(
|
||||||
|
@WebParam(partName = "parameters", name = "CalculateCommonRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:getArcImageInfos")
|
||||||
|
@WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse getArcImageInfos(
|
||||||
|
@WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:getLossEventList")
|
||||||
|
@WebResult(name = "LossEventListResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType getLossEventList(
|
||||||
|
@WebParam(partName = "parameters", name = "LossEventListRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:getOMDSPackageList")
|
||||||
|
@WebResult(name = "getOMDSPackageListResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse getOMDSPackageList(
|
||||||
|
@WebParam(partName = "parameters", name = "getOMDSPackageListRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:createApplication")
|
||||||
|
@WebResult(name = "CreateApplicationCommonResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonResponseType createApplication(
|
||||||
|
@WebParam(partName = "parameters", name = "CreateApplicationCommonRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:calculateSachPrivat")
|
||||||
|
@WebResult(name = "CalculateSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType calculateSachPrivat(
|
||||||
|
@WebParam(partName = "parameters", name = "CalculateSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:createApplicationRechtsschutz")
|
||||||
|
@WebResult(name = "CreateApplicationRechtsschutzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType createApplicationRechtsschutz(
|
||||||
|
@WebParam(partName = "parameters", name = "CreateApplicationRechtsschutzRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:deepLinkPartner")
|
||||||
|
@WebResult(name = "getDeepLinkPartnerResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPartner(
|
||||||
|
@WebParam(partName = "parameters", name = "getDeepLinkPartnerRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPartnerRequest parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:deepLinkPolicy")
|
||||||
|
@WebResult(name = "getDeepLinkPolicyResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkPolicy(
|
||||||
|
@WebParam(partName = "parameters", name = "getDeepLinkPolicyRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkPolicyRequest parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:getUserData")
|
||||||
|
@WebResult(name = "getUserDataResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse getUserData(
|
||||||
|
@WebParam(partName = "parameters", name = "getUserDataRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:deepLinkClaim")
|
||||||
|
@WebResult(name = "getDeepLinkClaimResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkClaim(
|
||||||
|
@WebParam(partName = "parameters", name = "getDeepLinkClaimRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:collectionChange")
|
@WebMethod(action = "urn:collectionChange")
|
||||||
@WebResult(name = "CollectionChangeResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
|
@WebResult(name = "CollectionChangeResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.CollectionChangeResponseType collectionChange(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.CollectionChangeResponseType collectionChange(
|
||||||
@@ -179,18 +263,11 @@ public interface OmdsServicePortType {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetNumberOfDocumentsRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:deepLinkOffer")
|
@WebMethod(action = "urn:createOffer")
|
||||||
@WebResult(name = "getDeepLinkOfferResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
@WebResult(name = "CreateOfferCommonResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse deepLinkOffer(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonResponseType createOffer(
|
||||||
@WebParam(partName = "parameters", name = "getDeepLinkOfferRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
@WebParam(partName = "parameters", name = "CreateOfferCommonRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common")
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:getDocumentsOfPeriod")
|
|
||||||
@WebResult(name = "GetDocumentsOfPeriodResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType getDocumentsOfPeriod(
|
|
||||||
@WebParam(partName = "parameters", name = "GetDocumentsOfPeriodRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodRequestType parameters
|
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:getDocumentsOfObject")
|
@WebMethod(action = "urn:getDocumentsOfObject")
|
||||||
@@ -200,13 +277,6 @@ public interface OmdsServicePortType {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:getClaimLight")
|
|
||||||
@WebResult(name = "GetClaimLightResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType getClaimLight(
|
|
||||||
@WebParam(partName = "parameters", name = "GetClaimLightRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:calculateKfz")
|
@WebMethod(action = "urn:calculateKfz")
|
||||||
@WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters")
|
@WebResult(name = "CalculateKfzResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType calculateKfz(
|
||||||
@@ -214,13 +284,6 @@ public interface OmdsServicePortType {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:changePersonData")
|
|
||||||
@WebResult(name = "GetPoliciesOfPartnerResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType getPoliciesOfPartner(
|
|
||||||
@WebParam(partName = "parameters", name = "GetPoliciesOfPartnerRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:changeCommunicationObject")
|
@WebMethod(action = "urn:changeCommunicationObject")
|
||||||
@WebResult(name = "ChangeCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
|
@WebResult(name = "ChangeCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangeCommunicationObjectResponse changeCommunicationObject(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangeCommunicationObjectResponse changeCommunicationObject(
|
||||||
@@ -235,27 +298,6 @@ public interface OmdsServicePortType {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:deleteCommunicationObject")
|
|
||||||
@WebResult(name = "DeleteCommunicationObjectResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType deleteCommunicationObject(
|
|
||||||
@WebParam(partName = "parameters", name = "DeleteCommunicationObjectRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:getChangedClaimsList")
|
|
||||||
@WebResult(name = "ChangedClaimsListResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType getChangedClaimsList(
|
|
||||||
@WebParam(partName = "parameters", name = "ChangedClaimsListRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:getPartner")
|
|
||||||
@WebResult(name = "GetPartnerResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType getPartner(
|
|
||||||
@WebParam(partName = "parameters", name = "GetPartnerRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:createApplicationSachPrivat")
|
@WebMethod(action = "urn:createApplicationSachPrivat")
|
||||||
@WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
|
@WebResult(name = "CreateApplicationSachPrivatResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat", partName = "parameters")
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(
|
public at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType createApplicationSachPrivat(
|
||||||
@@ -325,18 +367,4 @@ public interface OmdsServicePortType {
|
|||||||
@WebParam(partName = "parameters", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat")
|
@WebParam(partName = "parameters", name = "SubmitApplicationSachPrivatRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat")
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType parameters
|
||||||
) throws ServiceFaultMsg;
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
@WebMethod(action = "urn:getArcImageInfos")
|
|
||||||
@WebResult(name = "getArcImageInfosResponse", targetNamespace = "urn:omds3ServiceTypes-1-1-0", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse getArcImageInfos(
|
|
||||||
@WebParam(partName = "parameters", name = "getArcImageInfosRequest", targetNamespace = "urn:omds3ServiceTypes-1-1-0")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosRequest parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
|
|
||||||
@WebMethod(action = "urn:getLossEventList")
|
|
||||||
@WebResult(name = "LossEventListResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
|
|
||||||
public at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType getLossEventList(
|
|
||||||
@WebParam(partName = "parameters", name = "LossEventListRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType parameters
|
|
||||||
) throws ServiceFaultMsg;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ import javax.xml.ws.soap.MTOMFeature;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* This class was generated by Apache CXF 3.2.0
|
||||||
* 2019-08-21T14:03:44.285+02:00
|
* 2019-08-21T15:48:45.908+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@@ -45,25 +45,10 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
|
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
|
||||||
OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024));
|
OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024));
|
||||||
|
|
||||||
//OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
|
|
||||||
//OmdsServicePortType port = ss.getOmdsServicePort();
|
|
||||||
|
|
||||||
{
|
|
||||||
System.out.println("Invoking getOMDSPackageList...");
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters);
|
|
||||||
System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
|
||||||
System.out.println(e.toString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
System.out.println("Invoking addDocToBusinessCase...");
|
System.out.println("Invoking addDocToBusinessCase...");
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseRequestType _addDocToBusinessCase_parameters = null;
|
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.AddDocToBusinessCaseRequestType _addDocToBusinessCase_parameters = null;
|
||||||
@@ -83,18 +68,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.CheckAddressResponseType _checkAddress__return = port.checkAddress(_checkAddress_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.CheckAddressResponseType _checkAddress__return = port.checkAddress(_checkAddress_parameters);
|
||||||
System.out.println("checkAddress.result=" + _checkAddress__return);
|
System.out.println("checkAddress.result=" + _checkAddress__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_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_parameters);
|
|
||||||
System.out.println("calculateSachPrivat.result=" + _calculateSachPrivat__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
System.out.println(e.toString());
|
System.out.println(e.toString());
|
||||||
@@ -119,18 +92,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CalculateRechtsschutzResponseType _calculateRechtsschutz__return = port.calculateRechtsschutz(_calculateRechtsschutz_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CalculateRechtsschutzResponseType _calculateRechtsschutz__return = port.calculateRechtsschutz(_calculateRechtsschutz_parameters);
|
||||||
System.out.println("calculateRechtsschutz.result=" + _calculateRechtsschutz__return);
|
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_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType _createApplicationRechtsschutz_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _createApplicationRechtsschutz__return = port.createApplicationRechtsschutz(_createApplicationRechtsschutz_parameters);
|
|
||||||
System.out.println("createApplicationRechtsschutz.result=" + _createApplicationRechtsschutz__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
System.out.println(e.toString());
|
System.out.println(e.toString());
|
||||||
@@ -155,30 +116,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CreateOfferKfzResponseType _createOfferKfz__return = port.createOfferKfz(_createOfferKfz_parameters);
|
||||||
System.out.println("createOfferKfz.result=" + _createOfferKfz__return);
|
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_4_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters);
|
|
||||||
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_4_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters);
|
|
||||||
System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
System.out.println(e.toString());
|
System.out.println(e.toString());
|
||||||
@@ -215,18 +152,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType _getStateChanges__return = port.getStateChanges(_getStateChanges_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType _getStateChanges__return = port.getStateChanges(_getStateChanges_parameters);
|
||||||
System.out.println("getStateChanges.result=" + _getStateChanges__return);
|
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 getUserData...");
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest _getUserData_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters);
|
|
||||||
System.out.println("getUserData.result=" + _getUserData__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
System.out.println(e.toString());
|
System.out.println(e.toString());
|
||||||
@@ -251,18 +176,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.InitiateClaimResponseType _initiateClaim__return = port.initiateClaim(_initiateClaim_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.InitiateClaimResponseType _initiateClaim__return = port.initiateClaim(_initiateClaim_parameters);
|
||||||
System.out.println("initiateClaim.result=" + _initiateClaim__return);
|
System.out.println("initiateClaim.result=" + _initiateClaim__return);
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
|
||||||
System.out.println(e.toString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
System.out.println("Invoking deepLinkClaim...");
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters);
|
|
||||||
System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
System.out.println(e.toString());
|
System.out.println(e.toString());
|
||||||
@@ -287,6 +200,234 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SubmitClaimResponseType _submitClaim__return = port.submitClaim(_submitClaim_parameters);
|
||||||
System.out.println("submitClaim.result=" + _submitClaim__return);
|
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_4_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters);
|
||||||
|
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 submitApplication...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonRequestType _submitApplication_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationCommonResponseType _submitApplication__return = port.submitApplication(_submitApplication_parameters);
|
||||||
|
System.out.println("submitApplication.result=" + _submitApplication__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_4_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_parameters);
|
||||||
|
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 getClaimLight...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType _getClaimLight_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType _getClaimLight__return = port.getClaimLight(_getClaimLight_parameters);
|
||||||
|
System.out.println("getClaimLight.result=" + _getClaimLight__return);
|
||||||
|
|
||||||
|
} catch (ServiceFaultMsg e) {
|
||||||
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
|
System.out.println(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
System.out.println("Invoking getPoliciesOfPartner...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType _getPoliciesOfPartner_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType _getPoliciesOfPartner__return = port.getPoliciesOfPartner(_getPoliciesOfPartner_parameters);
|
||||||
|
System.out.println("getPoliciesOfPartner.result=" + _getPoliciesOfPartner__return);
|
||||||
|
|
||||||
|
} catch (ServiceFaultMsg e) {
|
||||||
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
|
System.out.println(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
System.out.println("Invoking deleteCommunicationObject...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType _deleteCommunicationObject_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType _deleteCommunicationObject__return = port.deleteCommunicationObject(_deleteCommunicationObject_parameters);
|
||||||
|
System.out.println("deleteCommunicationObject.result=" + _deleteCommunicationObject__return);
|
||||||
|
|
||||||
|
} catch (ServiceFaultMsg e) {
|
||||||
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
|
System.out.println(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
System.out.println("Invoking getChangedClaimsList...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType _getChangedClaimsList_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType _getChangedClaimsList__return = port.getChangedClaimsList(_getChangedClaimsList_parameters);
|
||||||
|
System.out.println("getChangedClaimsList.result=" + _getChangedClaimsList__return);
|
||||||
|
|
||||||
|
} catch (ServiceFaultMsg e) {
|
||||||
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
|
System.out.println(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
System.out.println("Invoking getPartner...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType _getPartner_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType _getPartner__return = port.getPartner(_getPartner_parameters);
|
||||||
|
System.out.println("getPartner.result=" + _getPartner__return);
|
||||||
|
|
||||||
|
} catch (ServiceFaultMsg e) {
|
||||||
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
|
System.out.println(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
System.out.println("Invoking calculate...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonRequestType _calculate_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateCommonResponseType _calculate__return = port.calculate(_calculate_parameters);
|
||||||
|
System.out.println("calculate.result=" + _calculate__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_4_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters);
|
||||||
|
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 getLossEventList...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType _getLossEventList_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType _getLossEventList__return = port.getLossEventList(_getLossEventList_parameters);
|
||||||
|
System.out.println("getLossEventList.result=" + _getLossEventList__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_4_0.servicetypes.OMDSPackageListRequest _getOMDSPackageList_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.OMDSPackageListResponse _getOMDSPackageList__return = port.getOMDSPackageList(_getOMDSPackageList_parameters);
|
||||||
|
System.out.println("getOMDSPackageList.result=" + _getOMDSPackageList__return);
|
||||||
|
|
||||||
|
} catch (ServiceFaultMsg e) {
|
||||||
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
|
System.out.println(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
System.out.println("Invoking createApplication...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonRequestType _createApplication_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationCommonResponseType _createApplication__return = port.createApplication(_createApplication_parameters);
|
||||||
|
System.out.println("createApplication.result=" + _createApplication__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_4_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType _calculateSachPrivat_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType _calculateSachPrivat__return = port.calculateSachPrivat(_calculateSachPrivat_parameters);
|
||||||
|
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_4_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType _createApplicationRechtsschutz_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType _createApplicationRechtsschutz__return = port.createApplicationRechtsschutz(_createApplicationRechtsschutz_parameters);
|
||||||
|
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_4_0.servicetypes.DeepLinkPartnerRequest _deepLinkPartner_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPartner__return = port.deepLinkPartner(_deepLinkPartner_parameters);
|
||||||
|
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_4_0.servicetypes.DeepLinkPolicyRequest _deepLinkPolicy_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkPolicy__return = port.deepLinkPolicy(_deepLinkPolicy_parameters);
|
||||||
|
System.out.println("deepLinkPolicy.result=" + _deepLinkPolicy__return);
|
||||||
|
|
||||||
|
} catch (ServiceFaultMsg e) {
|
||||||
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
|
System.out.println(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
System.out.println("Invoking getUserData...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataRequest _getUserData_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.UserDataResponse _getUserData__return = port.getUserData(_getUserData_parameters);
|
||||||
|
System.out.println("getUserData.result=" + _getUserData__return);
|
||||||
|
|
||||||
|
} catch (ServiceFaultMsg e) {
|
||||||
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
|
System.out.println(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
System.out.println("Invoking deepLinkClaim...");
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkClaimRequest _deepLinkClaim_parameters = null;
|
||||||
|
try {
|
||||||
|
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkClaim__return = port.deepLinkClaim(_deepLinkClaim_parameters);
|
||||||
|
System.out.println("deepLinkClaim.result=" + _deepLinkClaim__return);
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
System.out.println(e.toString());
|
System.out.println(e.toString());
|
||||||
@@ -329,23 +470,11 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
System.out.println("Invoking deepLinkOffer...");
|
System.out.println("Invoking createOffer...");
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkOfferRequest _deepLinkOffer_parameters = null;
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonRequestType _createOffer_parameters = null;
|
||||||
try {
|
try {
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.DeepLinkBusinessObjectResponse _deepLinkOffer__return = port.deepLinkOffer(_deepLinkOffer_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferCommonResponseType _createOffer__return = port.createOffer(_createOffer_parameters);
|
||||||
System.out.println("deepLinkOffer.result=" + _deepLinkOffer__return);
|
System.out.println("createOffer.result=" + _createOffer__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_4_0.on1basis.GetDocumentsOfPeriodRequestType _getDocumentsOfPeriod_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfPeriodResponseType _getDocumentsOfPeriod__return = port.getDocumentsOfPeriod(_getDocumentsOfPeriod_parameters);
|
|
||||||
System.out.println("getDocumentsOfPeriod.result=" + _getDocumentsOfPeriod__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
@@ -359,18 +488,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectResponseType _getDocumentsOfObject__return = port.getDocumentsOfObject(_getDocumentsOfObject_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetDocumentsOfObjectResponseType _getDocumentsOfObject__return = port.getDocumentsOfObject(_getDocumentsOfObject_parameters);
|
||||||
System.out.println("getDocumentsOfObject.result=" + _getDocumentsOfObject__return);
|
System.out.println("getDocumentsOfObject.result=" + _getDocumentsOfObject__return);
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
|
||||||
System.out.println(e.toString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
System.out.println("Invoking getClaimLight...");
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType _getClaimLight_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType _getClaimLight__return = port.getClaimLight(_getClaimLight_parameters);
|
|
||||||
System.out.println("getClaimLight.result=" + _getClaimLight__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
System.out.println(e.toString());
|
System.out.println(e.toString());
|
||||||
@@ -383,18 +500,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.CalculateKfzResponseType _calculateKfz__return = port.calculateKfz(_calculateKfz_parameters);
|
||||||
System.out.println("calculateKfz.result=" + _calculateKfz__return);
|
System.out.println("calculateKfz.result=" + _calculateKfz__return);
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
|
||||||
System.out.println(e.toString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
System.out.println("Invoking getPoliciesOfPartner...");
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType _getPoliciesOfPartner_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType _getPoliciesOfPartner__return = port.getPoliciesOfPartner(_getPoliciesOfPartner_parameters);
|
|
||||||
System.out.println("getPoliciesOfPartner.result=" + _getPoliciesOfPartner__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
System.out.println(e.toString());
|
System.out.println(e.toString());
|
||||||
@@ -419,42 +524,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType _createOfferSachPrivat__return = port.createOfferSachPrivat(_createOfferSachPrivat_parameters);
|
||||||
System.out.println("createOfferSachPrivat.result=" + _createOfferSachPrivat__return);
|
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 deleteCommunicationObject...");
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType _deleteCommunicationObject_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType _deleteCommunicationObject__return = port.deleteCommunicationObject(_deleteCommunicationObject_parameters);
|
|
||||||
System.out.println("deleteCommunicationObject.result=" + _deleteCommunicationObject__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
|
||||||
System.out.println(e.toString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
System.out.println("Invoking getChangedClaimsList...");
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListRequestType _getChangedClaimsList_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.ChangedClaimsListResponseType _getChangedClaimsList__return = port.getChangedClaimsList(_getChangedClaimsList_parameters);
|
|
||||||
System.out.println("getChangedClaimsList.result=" + _getChangedClaimsList__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
|
||||||
System.out.println(e.toString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
System.out.println("Invoking getPartner...");
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType _getPartner_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType _getPartner__return = port.getPartner(_getPartner_parameters);
|
|
||||||
System.out.println("getPartner.result=" + _getPartner__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
System.out.println(e.toString());
|
System.out.println(e.toString());
|
||||||
@@ -575,30 +644,6 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
|||||||
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _submitApplicationSachPrivat__return = port.submitApplicationSachPrivat(_submitApplicationSachPrivat_parameters);
|
at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType _submitApplicationSachPrivat__return = port.submitApplicationSachPrivat(_submitApplicationSachPrivat_parameters);
|
||||||
System.out.println("submitApplicationSachPrivat.result=" + _submitApplicationSachPrivat__return);
|
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_4_0.servicetypes.ArcImageInfosRequest _getArcImageInfos_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ArcImageInfosResponse _getArcImageInfos__return = port.getArcImageInfos(_getArcImageInfos_parameters);
|
|
||||||
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 getLossEventList...");
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListRequestType _getLossEventList_parameters = null;
|
|
||||||
try {
|
|
||||||
at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.LossEventListResponseType _getLossEventList__return = port.getLossEventList(_getLossEventList_parameters);
|
|
||||||
System.out.println("getLossEventList.result=" + _getLossEventList__return);
|
|
||||||
|
|
||||||
} catch (ServiceFaultMsg e) {
|
} catch (ServiceFaultMsg e) {
|
||||||
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
System.out.println(e.toString());
|
System.out.println(e.toString());
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This class was generated by Apache CXF 3.2.0
|
* This class was generated by Apache CXF 3.2.0
|
||||||
* 2019-08-21T14:03:44.368+02:00
|
* 2019-08-21T15:48:45.994+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ xmlns:os="urn:omds3Services-1-4-0"
|
|||||||
xmlns:ost="urn:omds3ServiceTypes-1-1-0"
|
xmlns:ost="urn:omds3ServiceTypes-1-1-0"
|
||||||
xmlns:cst="urn:omds3CommonServiceTypes-1-1-0"
|
xmlns:cst="urn:omds3CommonServiceTypes-1-1-0"
|
||||||
xmlns:b="urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen"
|
xmlns:b="urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen"
|
||||||
|
xmlns:boa="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common"
|
||||||
xmlns:boak="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz"
|
xmlns:boak="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.kfz"
|
||||||
xmlns:boaSp="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat"
|
xmlns:boaSp="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat"
|
||||||
xmlns:boaRs="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs"
|
xmlns:boaRs="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs"
|
||||||
@@ -32,6 +33,7 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|||||||
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat" schemaLocation="omds3_ON2_Antrag_SachPrivat.xsd"/>
|
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat" schemaLocation="omds3_ON2_Antrag_SachPrivat.xsd"/>
|
||||||
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs" schemaLocation="omds3_ON2_Antrag_Rechtsschutz.xsd"/>
|
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs" schemaLocation="omds3_ON2_Antrag_Rechtsschutz.xsd"/>
|
||||||
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall" schemaLocation="omds3_ON2_Antrag_Unfall.xsd"/>
|
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.unfall" schemaLocation="omds3_ON2_Antrag_Unfall.xsd"/>
|
||||||
|
<import namespace="urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common" schemaLocation="omds3_ON2_Antrag_Common.xsd"/>
|
||||||
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag" schemaLocation="omds3_ON3_Vertrag.xsd"/>
|
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on3vertrag" schemaLocation="omds3_ON3_Vertrag.xsd"/>
|
||||||
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner" schemaLocation="omds3_ON4_Partner.xsd"/>
|
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner" schemaLocation="omds3_ON4_Partner.xsd"/>
|
||||||
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" schemaLocation="omds3_ON7_Schaden.xsd"/>
|
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" schemaLocation="omds3_ON7_Schaden.xsd"/>
|
||||||
@@ -274,6 +276,32 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|||||||
<part name="parameters" element="boaRs:SubmitApplicationRechtsschutzResponse"/>
|
<part name="parameters" element="boaRs:SubmitApplicationRechtsschutzResponse"/>
|
||||||
</message>
|
</message>
|
||||||
|
|
||||||
|
<!-- alle Sparten -->
|
||||||
|
<message name="CalculateRequestMsg">
|
||||||
|
<part name="parameters" element="boa:CalculateCommonRequest"/>
|
||||||
|
</message>
|
||||||
|
<message name="CalculateResponseMsg">
|
||||||
|
<part name="parameters" element="boa:CalculateCommonResponse"/>
|
||||||
|
</message>
|
||||||
|
<message name="CreateOfferRequestMsg">
|
||||||
|
<part name="parameters" element="boa:CreateOfferCommonRequest"/>
|
||||||
|
</message>
|
||||||
|
<message name="CreateOfferResponseMsg">
|
||||||
|
<part name="parameters" element="boa:CreateOfferCommonResponse"/>
|
||||||
|
</message>
|
||||||
|
<message name="CreateApplicationRequestMsg">
|
||||||
|
<part name="parameters" element="boa:CreateApplicationCommonRequest"/>
|
||||||
|
</message>
|
||||||
|
<message name="CreateApplicationResponseMsg">
|
||||||
|
<part name="parameters" element="boa:CreateApplicationCommonResponse"/>
|
||||||
|
</message>
|
||||||
|
<message name="SubmitApplicationRequestMsg">
|
||||||
|
<part name="parameters" element="boa:SubmitApplicationCommonRequest"/>
|
||||||
|
</message>
|
||||||
|
<message name="SubmitApplicationResponseMsg">
|
||||||
|
<part name="parameters" element="boa:SubmitApplicationCommonResponse"/>
|
||||||
|
</message>
|
||||||
|
|
||||||
<!-- State-Changes z.B. Polizzierung -->
|
<!-- State-Changes z.B. Polizzierung -->
|
||||||
<message name="GetStateChangesRequestMsg">
|
<message name="GetStateChangesRequestMsg">
|
||||||
<part name="parameters" element="b:GetStateChangesRequest"/>
|
<part name="parameters" element="b:GetStateChangesRequest"/>
|
||||||
@@ -534,6 +562,28 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|||||||
<output name="SubmitApplicationRechtsschutzResponsePort" message="os:SubmitApplicationRechtsschutzResponseMsg"/>
|
<output name="SubmitApplicationRechtsschutzResponsePort" message="os:SubmitApplicationRechtsschutzResponseMsg"/>
|
||||||
<fault name="SubmitApplicationRechtsschutzFault" message="os:ServiceFaultMsg"/>
|
<fault name="SubmitApplicationRechtsschutzFault" message="os:ServiceFaultMsg"/>
|
||||||
</operation>
|
</operation>
|
||||||
|
|
||||||
|
<operation name="calculate">
|
||||||
|
<input name="CalculateRequestPort" message="os:CalculateRequestMsg"/>
|
||||||
|
<output name="CalculateResponsePort" message="os:CalculateResponseMsg"/>
|
||||||
|
<fault name="CalculateFault" message="os:ServiceFaultMsg"/>
|
||||||
|
</operation>
|
||||||
|
<operation name="createOffer">
|
||||||
|
<input name="CreateOfferRequestPort" message="os:CreateOfferRequestMsg"/>
|
||||||
|
<output name="CreateOfferResponsePort" message="os:CreateOfferResponseMsg"/>
|
||||||
|
<fault name="CreateOfferFault" message="os:ServiceFaultMsg"/>
|
||||||
|
</operation>
|
||||||
|
<operation name="createApplication">
|
||||||
|
<input name="CreateApplicationRequestPort" message="os:CreateApplicationRequestMsg"/>
|
||||||
|
<output name="CreateApplicationResponsePort" message="os:CreateApplicationResponseMsg"/>
|
||||||
|
<fault name="CreateApplicationFault" message="os:ServiceFaultMsg"/>
|
||||||
|
</operation>
|
||||||
|
<operation name="submitApplication">
|
||||||
|
<input name="SubmitApplicationRequestPort" message="os:SubmitApplicationRequestMsg"/>
|
||||||
|
<output name="SubmitApplicationResponsePort" message="os:SubmitApplicationResponseMsg"/>
|
||||||
|
<fault name="SubmitApplicationFault" message="os:ServiceFaultMsg"/>
|
||||||
|
</operation>
|
||||||
|
|
||||||
|
|
||||||
<operation name="getStateChanges">
|
<operation name="getStateChanges">
|
||||||
<input name="GetStateChangesRequestPort" message="os:GetStateChangesRequestMsg"/>
|
<input name="GetStateChangesRequestPort" message="os:GetStateChangesRequestMsg"/>
|
||||||
@@ -1078,6 +1128,58 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|||||||
<soap:fault name="GetStateChangesFault" use="literal"/>
|
<soap:fault name="GetStateChangesFault" use="literal"/>
|
||||||
</fault>
|
</fault>
|
||||||
</operation>
|
</operation>
|
||||||
|
|
||||||
|
<!-- Berechnung, Offert, Antrag allgemein für alle Arten von Verkaufsprodukten -->
|
||||||
|
<operation name="calculate">
|
||||||
|
<soap:operation soapAction="urn:calculate" style="document"/>
|
||||||
|
<input name="CalculateRequestPort">
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</input>
|
||||||
|
<output name="CalculateResponsePort">
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</output>
|
||||||
|
<fault name="CalculateFault">
|
||||||
|
<soap:fault name="CalculateFault" use="literal"/>
|
||||||
|
</fault>
|
||||||
|
</operation>
|
||||||
|
<operation name="createOffer">
|
||||||
|
<soap:operation soapAction="urn:createOffer" style="document"/>
|
||||||
|
<input name="CreateOfferRequestPort">
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</input>
|
||||||
|
<output name="CreateOfferResponsePort">
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</output>
|
||||||
|
<fault name="CreateOfferFault">
|
||||||
|
<soap:fault name="CreateOfferFault" use="literal"/>
|
||||||
|
</fault>
|
||||||
|
</operation>
|
||||||
|
<operation name="createApplication">
|
||||||
|
<soap:operation soapAction="urn:createApplication" style="document"/>
|
||||||
|
<input name="CreateApplicationRequestPort">
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</input>
|
||||||
|
<output name="CreateApplicationResponsePort">
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</output>
|
||||||
|
<fault name="CreateApplicationFault">
|
||||||
|
<soap:fault name="CreateApplicationFault" use="literal"/>
|
||||||
|
</fault>
|
||||||
|
</operation>
|
||||||
|
<operation name="submitApplication">
|
||||||
|
<soap:operation soapAction="urn:submitApplication" style="document"/>
|
||||||
|
<input name="SubmitApplicationRequestPort">
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</input>
|
||||||
|
<output name="SubmitApplicationResponsePort">
|
||||||
|
<soap:body use="literal"/>
|
||||||
|
</output>
|
||||||
|
<fault name="SubmitApplicationFault">
|
||||||
|
<soap:fault name="SubmitApplicationFault" use="literal"/>
|
||||||
|
</fault>
|
||||||
|
</operation>
|
||||||
|
|
||||||
|
|
||||||
<!-- Personen Bestandsdaten Änderung -->
|
<!-- Personen Bestandsdaten Änderung -->
|
||||||
<operation name="getPoliciesOfPartner">
|
<operation name="getPoliciesOfPartner">
|
||||||
<soap:operation soapAction="urn:changePersonData" style="document"/>
|
<soap:operation soapAction="urn:changePersonData" style="document"/>
|
||||||
|
|||||||
@@ -272,4 +272,186 @@
|
|||||||
<xsd:documentation>Element um Offert- und Antragsdokumente zurückzugeben</xsd:documentation>
|
<xsd:documentation>Element um Offert- und Antragsdokumente zurückzugeben</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
|
<!-- Allgemeine Services, die unterschiedliche Verkaufsprodukte entgegennehmen -->
|
||||||
|
<xsd:complexType name="SpezBerechnungCommon_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Daten Berechnung die bei Request und Response gleich sind</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="SpezBerechnung_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Verkaufsprodukt" type="cst:Verkaufsprodukt_Type"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="SpezOffertCommon_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Daten Offerterstellung die bei Request und Response gleich sind</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="SpezOffert_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Verkaufsprodukt" type="cst:Verkaufsprodukt_Type"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="SpezAntragCommon_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Daten Antrag die bei Request und Response gleich sind</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="SpezAntrag_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Verkaufsprodukt" type="cst:Verkaufsprodukt_Type"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="UpsellingResponseCommon_Type" abstract="true">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Response Upselling Alternativen</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="UpsellingVerkaufsprodukte" type="cst:Verkaufsprodukt_Type" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="CalculateCommonRequest_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Typ um einen allgemeinen Berechungsrequest durchzuführen</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="CalculateRequest_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Berechnungsanfrage" type="SpezBerechnungCommon_Type"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="CalculateCommonResponse_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Typ für einen allgemeinen Berechnungs-Response</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="CalculateResponse_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Berechnungsantwort" type="SpezBerechnungCommon_Type" minOccurs="0"/>
|
||||||
|
<xsd:element name="ResponseUpselling" type="UpsellingResponseCommon_Type" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="CreateOfferCommonRequest_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Typ um einen allgemeinen Offerterzeugungs-Request durchzuführen</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="CreateOfferRequest_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Offertanfrage" type="SpezOffertCommon_Type"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="CreateOfferCommonResponse_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Typ für einen allgemeinen Offerterzeugungs-Response</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="CreateOfferResponse_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Offertantwort" type="SpezOffertCommon_Type" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="CreateApplicationCommonRequest_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Typ um einen allgemeinen Antragserzeugungs-Request durchzuführen</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="CreateApplicationRequest_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Antragsanfrage" type="SpezAntragCommon_Type"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="CreateApplicationCommonResponse_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Typ für einen allgemeinen Antragserzeugungs-Response</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="CreateApplicationResponse_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Antragsantwort" type="SpezAntragCommon_Type" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="SubmitApplicationCommonRequest_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Typ um eine allgemeine Antragsüberleitung durchzuführen</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="SubmitApplicationRequest_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Antragsanfrage" type="SpezAntragCommon_Type" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="SubmitApplicationCommonResponse_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Typ für einen allgemeinen Antragsüberleitungs-Response</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexContent>
|
||||||
|
<xsd:extension base="SubmitApplicationResponse_Type">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Antragsantwort" type="SpezAntragCommon_Type" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:extension>
|
||||||
|
</xsd:complexContent>
|
||||||
|
</xsd:complexType>
|
||||||
|
<xsd:element name="CalculateCommonRequest" type="CalculateCommonRequest_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Element für Berechnungsrequest für alle Sparten</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="CalculateCommonResponse" type="CalculateCommonResponse_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Element für Berechnungsresponse für alle Sparten</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="CreateOfferCommonRequest" type="CreateOfferCommonRequest_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Element für Offerterzeugungs-Request für alle Sparten</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="CreateOfferCommonResponse" type="CreateOfferCommonResponse_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Element für Offerterzeugungs-Response für alle Sparten</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="CreateApplicationCommonRequest" type="CreateApplicationCommonRequest_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Element für Antragserzeugungs-Request für alle Sparten</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="CreateApplicationCommonResponse" type="CreateApplicationCommonResponse_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Element für Antragserzeugungs-Response für alle Sparten</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="SubmitApplicationCommonRequest" type="SubmitApplicationCommonRequest_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Element für Antragsüberleitungs-Request für alle Sparten</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="SubmitApplicationCommonResponse" type="SubmitApplicationCommonResponse_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Element für Antragsüberleitungs-Response für alle Sparten</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
</xsd:schema>
|
</xsd:schema>
|
||||||
|
|||||||
@@ -148,7 +148,7 @@
|
|||||||
<xsd:complexContent>
|
<xsd:complexContent>
|
||||||
<xsd:extension base="ac:CalculateResponse_Type">
|
<xsd:extension base="ac:CalculateResponse_Type">
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="Berechnungsantwort" type="SpezBerechnungRechtsschutz_Type"/>
|
<xsd:element name="Berechnungsantwort" type="SpezBerechnungRechtsschutz_Type" minOccurs="0"/>
|
||||||
<xsd:element name="ResponseUpselling" type="UpsellingRechtsschutzResponse_Type" minOccurs="0">
|
<xsd:element name="ResponseUpselling" type="UpsellingRechtsschutzResponse_Type" minOccurs="0">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Response für das Upselling, wenn solche Ergebnisse angefordert wurden.</xsd:documentation>
|
<xsd:documentation>Response für das Upselling, wenn solche Ergebnisse angefordert wurden.</xsd:documentation>
|
||||||
@@ -177,7 +177,7 @@
|
|||||||
<xsd:complexContent>
|
<xsd:complexContent>
|
||||||
<xsd:extension base="ac:CreateOfferResponse_Type">
|
<xsd:extension base="ac:CreateOfferResponse_Type">
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="Offertantwort" type="SpezOffertRechtsschutz_Type"/>
|
<xsd:element name="Offertantwort" type="SpezOffertRechtsschutz_Type" minOccurs="0"/>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
</xsd:complexContent>
|
</xsd:complexContent>
|
||||||
|
|||||||
Reference in New Issue
Block a user