Korrektur: PolicyPartnerRole zu omdsServiceTypes zurück geschoben, da Teil von Quickwins und damit fixiert in omdsServiceTypes
commonServiceTypes muss omdsServiceTypes referenzieren, da PolicyPartnerRole in RollePartner referenziert wird und PolicyPartnerRole in omdsServiceTypes fixiert BeteiligtePersonVertrag_Type nach commonServiceTypes verschoben, da es zu BOA gehört kann es noch verschoben werden. Fehlerkorrektur in broker.wsdl: Schadentypes sind im Namespace Schaden
This commit is contained in:
@@ -5,9 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
import javax.xml.bind.annotation.XmlAttribute;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.RisikoAdresseType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -29,9 +27,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.RisikoAdresseTyp
|
|||||||
*/
|
*/
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
@XmlType(name = "ADRESSE_Type")
|
@XmlType(name = "ADRESSE_Type")
|
||||||
@XmlSeeAlso({
|
|
||||||
RisikoAdresseType.class
|
|
||||||
})
|
|
||||||
public class ADRESSEType {
|
public class ADRESSEType {
|
||||||
|
|
||||||
@XmlAttribute(name = "Pac")
|
@XmlAttribute(name = "Pac")
|
||||||
|
|||||||
@@ -0,0 +1,87 @@
|
|||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.brokerservice;
|
||||||
|
|
||||||
|
import java.net.MalformedURLException;
|
||||||
|
import java.net.URL;
|
||||||
|
import javax.xml.namespace.QName;
|
||||||
|
import javax.xml.ws.WebEndpoint;
|
||||||
|
import javax.xml.ws.WebServiceClient;
|
||||||
|
import javax.xml.ws.WebServiceFeature;
|
||||||
|
import javax.xml.ws.Service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class was generated by Apache CXF 3.2.0
|
||||||
|
* 2019-07-12T15:21:51.726+02:00
|
||||||
|
* Generated source version: 3.2.0
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@WebServiceClient(name = "omdsService",
|
||||||
|
wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3ServicesBroker.wsdl",
|
||||||
|
targetNamespace = "http://omds.vvo.at/brokerservice/v1_4_0")
|
||||||
|
public class OmdsService extends Service {
|
||||||
|
|
||||||
|
public final static URL WSDL_LOCATION;
|
||||||
|
|
||||||
|
public final static QName SERVICE = new QName("http://omds.vvo.at/brokerservice/v1_4_0", "omdsService");
|
||||||
|
public final static QName OmdsServicePort = new QName("http://omds.vvo.at/brokerservice/v1_4_0", "omdsServicePort");
|
||||||
|
static {
|
||||||
|
URL url = null;
|
||||||
|
try {
|
||||||
|
url = new URL("file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3ServicesBroker.wsdl");
|
||||||
|
} catch (MalformedURLException e) {
|
||||||
|
java.util.logging.Logger.getLogger(OmdsService.class.getName())
|
||||||
|
.log(java.util.logging.Level.INFO,
|
||||||
|
"Can not initialize the default wsdl from {0}", "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3ServicesBroker.wsdl");
|
||||||
|
}
|
||||||
|
WSDL_LOCATION = url;
|
||||||
|
}
|
||||||
|
|
||||||
|
public OmdsService(URL wsdlLocation) {
|
||||||
|
super(wsdlLocation, SERVICE);
|
||||||
|
}
|
||||||
|
|
||||||
|
public OmdsService(URL wsdlLocation, QName serviceName) {
|
||||||
|
super(wsdlLocation, serviceName);
|
||||||
|
}
|
||||||
|
|
||||||
|
public OmdsService() {
|
||||||
|
super(WSDL_LOCATION, SERVICE);
|
||||||
|
}
|
||||||
|
|
||||||
|
public OmdsService(WebServiceFeature ... features) {
|
||||||
|
super(WSDL_LOCATION, SERVICE, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
public OmdsService(URL wsdlLocation, WebServiceFeature ... features) {
|
||||||
|
super(wsdlLocation, SERVICE, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
public OmdsService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
|
||||||
|
super(wsdlLocation, serviceName, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* returns OmdsServicePortType
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "omdsServicePort")
|
||||||
|
public OmdsServicePortType getOmdsServicePort() {
|
||||||
|
return super.getPort(OmdsServicePort, OmdsServicePortType.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param features
|
||||||
|
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
|
||||||
|
* @return
|
||||||
|
* returns OmdsServicePortType
|
||||||
|
*/
|
||||||
|
@WebEndpoint(name = "omdsServicePort")
|
||||||
|
public OmdsServicePortType getOmdsServicePort(WebServiceFeature... features) {
|
||||||
|
return super.getPort(OmdsServicePort, OmdsServicePortType.class, features);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
/**
|
||||||
|
* Please modify this class to meet your needs
|
||||||
|
* This class is not complete
|
||||||
|
*/
|
||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.brokerservice;
|
||||||
|
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
import javax.jws.WebMethod;
|
||||||
|
import javax.jws.WebParam;
|
||||||
|
import javax.jws.WebResult;
|
||||||
|
import javax.jws.WebService;
|
||||||
|
import javax.jws.soap.SOAPBinding;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class was generated by Apache CXF 3.2.0
|
||||||
|
* 2019-07-12T15:21:51.673+02:00
|
||||||
|
* Generated source version: 3.2.0
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
@javax.jws.WebService(
|
||||||
|
serviceName = "omdsService",
|
||||||
|
portName = "omdsServicePort",
|
||||||
|
targetNamespace = "http://omds.vvo.at/brokerservice/v1_4_0",
|
||||||
|
wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3ServicesBroker.wsdl",
|
||||||
|
endpointInterface = "at.vvo.omds.types.omds3Types.r1_4_0.brokerservice.OmdsServicePortType")
|
||||||
|
|
||||||
|
public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||||
|
|
||||||
|
private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName());
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see at.vvo.omds.types.omds3Types.r1_4_0.brokerservice.OmdsServicePortType#lossEventRegistered(on7schaden._0._4.v1.omds3types.types.omds.vvo.at.LossEventType parameters)*
|
||||||
|
*/
|
||||||
|
public on7schaden._0._4.v1.omds3types.types.omds.vvo.at.LossEventRegisteredResponseType lossEventRegistered(on7schaden._0._4.v1.omds3types.types.omds.vvo.at.LossEventType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation lossEventRegistered");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
on7schaden._0._4.v1.omds3types.types.omds.vvo.at.LossEventRegisteredResponseType _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.brokerservice.OmdsServicePortType#declareNewClaimStatus(on7schaden._0._4.v1.omds3types.types.omds.vvo.at.DeclareNewClaimStatusRequestType parameters)*
|
||||||
|
*/
|
||||||
|
public on7schaden._0._4.v1.omds3types.types.omds.vvo.at.DeclareNewClaimStatusResponseType declareNewClaimStatus(on7schaden._0._4.v1.omds3types.types.omds.vvo.at.DeclareNewClaimStatusRequestType parameters) throws ServiceFaultMsg {
|
||||||
|
LOG.info("Executing operation declareNewClaimStatus");
|
||||||
|
System.out.println(parameters);
|
||||||
|
try {
|
||||||
|
on7schaden._0._4.v1.omds3types.types.omds.vvo.at.DeclareNewClaimStatusResponseType _return = null;
|
||||||
|
return _return;
|
||||||
|
} catch (java.lang.Exception ex) {
|
||||||
|
ex.printStackTrace();
|
||||||
|
throw new RuntimeException(ex);
|
||||||
|
}
|
||||||
|
//throw new ServiceFaultMsg("ServiceFaultMsg...");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.brokerservice;
|
||||||
|
|
||||||
|
import javax.jws.WebMethod;
|
||||||
|
import javax.jws.WebParam;
|
||||||
|
import javax.jws.WebResult;
|
||||||
|
import javax.jws.WebService;
|
||||||
|
import javax.jws.soap.SOAPBinding;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class was generated by Apache CXF 3.2.0
|
||||||
|
* 2019-07-12T15:21:51.715+02:00
|
||||||
|
* Generated source version: 3.2.0
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@WebService(targetNamespace = "http://omds.vvo.at/brokerservice/v1_4_0", name = "omdsServicePortType")
|
||||||
|
@XmlSeeAlso({at.vvo.omds.types.omds2Types.v2_11.ObjectFactory.class, on7schaden._0._4.v1.omds3types.types.omds.vvo.at.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.ObjectFactory.class, at.vvo.omds.types.omds3Types.r1_4_0.common.ObjectFactory.class})
|
||||||
|
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
|
||||||
|
public interface OmdsServicePortType {
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:lossEventRegistered")
|
||||||
|
@WebResult(name = "LossEventRegisteredResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
|
||||||
|
public on7schaden._0._4.v1.omds3types.types.omds.vvo.at.LossEventRegisteredResponseType lossEventRegistered(
|
||||||
|
@WebParam(partName = "parameters", name = "LossEventRegisteredRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
|
||||||
|
on7schaden._0._4.v1.omds3types.types.omds.vvo.at.LossEventType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
|
||||||
|
@WebMethod(action = "urn:declareNewClaimStatus")
|
||||||
|
@WebResult(name = "DeclareNewClaimStatusResponse", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden", partName = "parameters")
|
||||||
|
public on7schaden._0._4.v1.omds3types.types.omds.vvo.at.DeclareNewClaimStatusResponseType declareNewClaimStatus(
|
||||||
|
@WebParam(partName = "parameters", name = "DeclareNewClaimStatusRequest", targetNamespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden")
|
||||||
|
on7schaden._0._4.v1.omds3types.types.omds.vvo.at.DeclareNewClaimStatusRequestType parameters
|
||||||
|
) throws ServiceFaultMsg;
|
||||||
|
}
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.brokerservice;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Please modify this class to meet your needs
|
||||||
|
* This class is not complete
|
||||||
|
*/
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.net.MalformedURLException;
|
||||||
|
import java.net.URL;
|
||||||
|
import javax.xml.namespace.QName;
|
||||||
|
import javax.jws.WebMethod;
|
||||||
|
import javax.jws.WebParam;
|
||||||
|
import javax.jws.WebResult;
|
||||||
|
import javax.jws.WebService;
|
||||||
|
import javax.jws.soap.SOAPBinding;
|
||||||
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class was generated by Apache CXF 3.2.0
|
||||||
|
* 2019-07-12T15:21:51.592+02:00
|
||||||
|
* Generated source version: 3.2.0
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||||
|
|
||||||
|
private static final QName SERVICE_NAME = new QName("http://omds.vvo.at/brokerservice/v1_4_0", "omdsService");
|
||||||
|
|
||||||
|
private OmdsServicePortType_OmdsServicePort_Client() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String args[]) throws java.lang.Exception {
|
||||||
|
URL wsdlURL = OmdsService.WSDL_LOCATION;
|
||||||
|
if (args.length > 0 && args[0] != null && !"".equals(args[0])) {
|
||||||
|
File wsdlFile = new File(args[0]);
|
||||||
|
try {
|
||||||
|
if (wsdlFile.exists()) {
|
||||||
|
wsdlURL = wsdlFile.toURI().toURL();
|
||||||
|
} else {
|
||||||
|
wsdlURL = new URL(args[0]);
|
||||||
|
}
|
||||||
|
} catch (MalformedURLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
|
||||||
|
OmdsServicePortType port = ss.getOmdsServicePort();
|
||||||
|
|
||||||
|
{
|
||||||
|
System.out.println("Invoking lossEventRegistered...");
|
||||||
|
on7schaden._0._4.v1.omds3types.types.omds.vvo.at.LossEventType _lossEventRegistered_parameters = null;
|
||||||
|
try {
|
||||||
|
on7schaden._0._4.v1.omds3types.types.omds.vvo.at.LossEventRegisteredResponseType _lossEventRegistered__return = port.lossEventRegistered(_lossEventRegistered_parameters);
|
||||||
|
System.out.println("lossEventRegistered.result=" + _lossEventRegistered__return);
|
||||||
|
|
||||||
|
} catch (ServiceFaultMsg e) {
|
||||||
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
|
System.out.println(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
System.out.println("Invoking declareNewClaimStatus...");
|
||||||
|
on7schaden._0._4.v1.omds3types.types.omds.vvo.at.DeclareNewClaimStatusRequestType _declareNewClaimStatus_parameters = null;
|
||||||
|
try {
|
||||||
|
on7schaden._0._4.v1.omds3types.types.omds.vvo.at.DeclareNewClaimStatusResponseType _declareNewClaimStatus__return = port.declareNewClaimStatus(_declareNewClaimStatus_parameters);
|
||||||
|
System.out.println("declareNewClaimStatus.result=" + _declareNewClaimStatus__return);
|
||||||
|
|
||||||
|
} catch (ServiceFaultMsg e) {
|
||||||
|
System.out.println("Expected exception: ServiceFaultMsg has occurred.");
|
||||||
|
System.out.println(e.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
|
||||||
|
package at.vvo.omds.types.omds3Types.r1_4_0.brokerservice;
|
||||||
|
|
||||||
|
import javax.xml.ws.WebFault;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class was generated by Apache CXF 3.2.0
|
||||||
|
* 2019-07-12T15:21:51.660+02:00
|
||||||
|
* Generated source version: 3.2.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
@WebFault(name = "serviceFault", targetNamespace = "urn:omds3CommonServiceTypes-1-1-0")
|
||||||
|
public class ServiceFaultMsg extends Exception {
|
||||||
|
|
||||||
|
private at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault serviceFault;
|
||||||
|
|
||||||
|
public ServiceFaultMsg() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ServiceFaultMsg(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public ServiceFaultMsg(String message, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault serviceFault) {
|
||||||
|
super(message);
|
||||||
|
this.serviceFault = serviceFault;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ServiceFaultMsg(String message, at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault serviceFault, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
this.serviceFault = serviceFault;
|
||||||
|
}
|
||||||
|
|
||||||
|
public at.vvo.omds.types.omds3Types.r1_4_0.common.ServiceFault getFaultInfo() {
|
||||||
|
return this.serviceFault;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SchadenStatusType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.SchadenStatusType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes;
|
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.PersonType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -41,7 +40,7 @@ public class BeteiligtePersonVertragType {
|
|||||||
@XmlElement(name = "Lfnr")
|
@XmlElement(name = "Lfnr")
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
@XmlSchemaType(name = "unsignedShort")
|
||||||
protected int lfnr;
|
protected int lfnr;
|
||||||
@XmlElement(name = "Person", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
@XmlElement(name = "Person", required = true)
|
||||||
protected PersonType person;
|
protected PersonType person;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -4,12 +4,7 @@ package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
|||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRequestType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -37,12 +32,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationReq
|
|||||||
@XmlType(name = "CommonProcessRequest_Type", propOrder = {
|
@XmlType(name = "CommonProcessRequest_Type", propOrder = {
|
||||||
"geschaeftsfallnummer"
|
"geschaeftsfallnummer"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
|
||||||
CalculateRequestType.class,
|
|
||||||
CreateOfferRequestType.class,
|
|
||||||
CreateApplicationRequestType.class,
|
|
||||||
SubmitApplicationRequestType.class
|
|
||||||
})
|
|
||||||
public abstract class CommonProcessRequestType
|
public abstract class CommonProcessRequestType
|
||||||
extends CommonRequestType
|
extends CommonRequestType
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -4,12 +4,7 @@ package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
|||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationResponseType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -37,12 +32,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
|
|||||||
@XmlType(name = "CommonProcessResponse_Type", propOrder = {
|
@XmlType(name = "CommonProcessResponse_Type", propOrder = {
|
||||||
"geschaeftsfallnummer"
|
"geschaeftsfallnummer"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
|
||||||
CalculateResponseType.class,
|
|
||||||
CreateOfferResponseType.class,
|
|
||||||
CreateApplicationResponseType.class,
|
|
||||||
SubmitApplicationResponseType.class
|
|
||||||
})
|
|
||||||
public abstract class CommonProcessResponseType
|
public abstract class CommonProcessResponseType
|
||||||
extends CommonResponseType
|
extends CommonResponseType
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -8,21 +8,10 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.GetApplicationDocumentRequestType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.CreateClaimRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.CollectionChangeRequestType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.InitiateClaimRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerRequestType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.SpezifikationSchadenType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.SetMailingAddressRequestType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.SubmitClaimRequestType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.AddCommunicationObjectRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangeCommunicationObjectRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangePartnerMainAddressRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangePersonDataRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.CheckAddressRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.CreateClaimRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.InitiateClaimRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SpezifikationSchadenType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SubmitClaimRequestType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -61,19 +50,8 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SubmitClaimRequestType;
|
|||||||
SubmitClaimRequestType.class,
|
SubmitClaimRequestType.class,
|
||||||
InitiateClaimRequestType.class,
|
InitiateClaimRequestType.class,
|
||||||
SpezifikationSchadenType.class,
|
SpezifikationSchadenType.class,
|
||||||
GetPoliciesOfPartnerRequestType.class,
|
|
||||||
SetMailingAddressRequestType.class,
|
|
||||||
CollectionChangeRequestType.class,
|
|
||||||
GetApplicationDocumentRequestType.class,
|
|
||||||
CommonProcessRequestType.class,
|
CommonProcessRequestType.class,
|
||||||
CommonSearchRequestType.class,
|
CommonSearchRequestType.class
|
||||||
GetPartnerRequestType.class,
|
|
||||||
CheckAddressRequestType.class,
|
|
||||||
ChangePartnerMainAddressRequestType.class,
|
|
||||||
ChangePersonDataRequestType.class,
|
|
||||||
ChangeCommunicationObjectRequestType.class,
|
|
||||||
AddCommunicationObjectRequestType.class,
|
|
||||||
DeleteCommunicationObjectRequestType.class
|
|
||||||
})
|
})
|
||||||
public abstract class CommonRequestType {
|
public abstract class CommonRequestType {
|
||||||
|
|
||||||
|
|||||||
@@ -6,25 +6,11 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.GetApplicationDocumentResponseType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.CreateClaimResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.GetClaimResponseLightType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.GetClaimResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.InitiateClaimResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.CollectionChangeResponseType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.SubmitClaimResponseType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.GetPoliciesOfPartnerResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on3vertrag.SetMailingAddressResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.AddCommunicationObjectResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangeCommunicationObjectResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangePartnerMainAddressResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.ChangePersonDataResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.CheckAddressResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.DeleteCommunicationObjectResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on4partner.GetPartnerResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.CreateClaimResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseLightType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.GetClaimResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.InitiateClaimResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SubmitClaimResponseType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -58,22 +44,8 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SubmitClaimResponseType;
|
|||||||
InitiateClaimResponseType.class,
|
InitiateClaimResponseType.class,
|
||||||
GetClaimResponseType.class,
|
GetClaimResponseType.class,
|
||||||
GetClaimResponseLightType.class,
|
GetClaimResponseLightType.class,
|
||||||
GetPoliciesOfPartnerResponseType.class,
|
|
||||||
SetMailingAddressResponseType.class,
|
|
||||||
CollectionChangeResponseType.class,
|
|
||||||
GetApplicationDocumentResponseType.class,
|
|
||||||
CalculateSachPrivatResponseType.class,
|
|
||||||
CreateOfferSachPrivatResponseType.class,
|
|
||||||
CreateApplicationSachPrivatResponseType.class,
|
|
||||||
CommonProcessResponseType.class,
|
CommonProcessResponseType.class,
|
||||||
CommonSearchResponseType.class,
|
CommonSearchResponseType.class
|
||||||
GetPartnerResponseType.class,
|
|
||||||
CheckAddressResponseType.class,
|
|
||||||
ChangePartnerMainAddressResponseType.class,
|
|
||||||
ChangePersonDataResponseType.class,
|
|
||||||
AddCommunicationObjectResponseType.class,
|
|
||||||
DeleteCommunicationObjectResponseType.class,
|
|
||||||
ChangeCommunicationObjectResponseType.class
|
|
||||||
})
|
})
|
||||||
public abstract class CommonResponseType {
|
public abstract class CommonResponseType {
|
||||||
|
|
||||||
|
|||||||
@@ -5,10 +5,8 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELZeitraumType;
|
import at.vvo.omds.types.omds2Types.v2_11.ELZeitraumType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -52,9 +50,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesRequestType;
|
|||||||
"offset",
|
"offset",
|
||||||
"orderBy"
|
"orderBy"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
|
||||||
GetStateChangesRequestType.class
|
|
||||||
})
|
|
||||||
public abstract class CommonSearchRequestType
|
public abstract class CommonSearchRequestType
|
||||||
extends CommonRequestType
|
extends CommonRequestType
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,9 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -39,9 +37,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on1basis.GetStateChangesResponseType;
|
|||||||
"actualMaxResults",
|
"actualMaxResults",
|
||||||
"totalResults"
|
"totalResults"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
|
||||||
GetStateChangesResponseType.class
|
|
||||||
})
|
|
||||||
public abstract class CommonSearchResponseType
|
public abstract class CommonSearchResponseType
|
||||||
extends CommonResponseType
|
extends CommonResponseType
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,13 +6,7 @@ import java.util.List;
|
|||||||
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ElementarproduktKfzType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.ElementarproduktRechtsschutzType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.ElementarproduktUnfallType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -40,13 +34,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.ElementarproduktUnfa
|
|||||||
@XmlType(name = "Elementarprodukt_Type", propOrder = {
|
@XmlType(name = "Elementarprodukt_Type", propOrder = {
|
||||||
"zusaetzlicheElementarproduktdaten"
|
"zusaetzlicheElementarproduktdaten"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
|
||||||
ElementarproduktKfzType.class,
|
|
||||||
VerkehrsrechtsschutzKfzType.class,
|
|
||||||
ElementarproduktRechtsschutzType.class,
|
|
||||||
ElementarproduktSachPrivatType.class,
|
|
||||||
ElementarproduktUnfallType.class
|
|
||||||
})
|
|
||||||
public abstract class ElementarproduktType
|
public abstract class ElementarproduktType
|
||||||
extends ProduktbausteinAntragsprozessType
|
extends ProduktbausteinAntragsprozessType
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -118,6 +118,14 @@ public class ObjectFactory {
|
|||||||
return new KontierungType();
|
return new KontierungType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link BeteiligtePersonVertragType }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public BeteiligtePersonVertragType createBeteiligtePersonVertragType() {
|
||||||
|
return new BeteiligtePersonVertragType();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link PraemieType }
|
* Create an instance of {@link PraemieType }
|
||||||
*
|
*
|
||||||
@@ -390,14 +398,6 @@ public class ObjectFactory {
|
|||||||
return new SchadenObjektSpezifikationType();
|
return new SchadenObjektSpezifikationType();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create an instance of {@link PolicyPartnerRole }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public PolicyPartnerRole createPolicyPartnerRole() {
|
|
||||||
return new PolicyPartnerRole();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link ZahlwegType.Kundenkonto }
|
* Create an instance of {@link ZahlwegType.Kundenkonto }
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on7schaden.SchadenmelderVermittlerType;
|
import on7schaden._0._4.v1.omds3types.types.omds.vvo.at.SchadenmelderVermittlerType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.PolicyPartnerRole;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -23,7 +24,7 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
|
* <element name="Polizzennr" type="{urn:omds20}Polizzennr"/>
|
||||||
* <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
|
* <element name="VtgProdCd" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
|
||||||
* <element name="RollePartner" type="{urn:omds3CommonServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="RollePartner" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </extension>
|
* </extension>
|
||||||
* </complexContent>
|
* </complexContent>
|
||||||
|
|||||||
@@ -7,14 +7,8 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ProduktKfzType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.ZusatzproduktKfzType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.ProduktRechtsschutzType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.ProduktSachPrivatType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.ProduktUnfallType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -50,13 +44,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.ProduktUnfallType;
|
|||||||
"hauptfaelligkeit",
|
"hauptfaelligkeit",
|
||||||
"zusaetzlicheProduktdaten"
|
"zusaetzlicheProduktdaten"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
|
||||||
ProduktKfzType.class,
|
|
||||||
ZusatzproduktKfzType.class,
|
|
||||||
ProduktRechtsschutzType.class,
|
|
||||||
ProduktSachPrivatType.class,
|
|
||||||
ProduktUnfallType.class
|
|
||||||
})
|
|
||||||
public abstract class ProduktType
|
public abstract class ProduktType
|
||||||
extends ProduktbausteinAntragsprozessType
|
extends ProduktbausteinAntragsprozessType
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -7,13 +7,8 @@ import javax.xml.bind.annotation.XmlAccessType;
|
|||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds2Types.v2_11.ELRahmenvereinbarungType;
|
import at.vvo.omds.types.omds2Types.v2_11.ELRahmenvereinbarungType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.VerkaufsproduktKfzType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.VerkaufsproduktRechtsschutzType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.VerkaufsproduktSachPrivatType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.VerkaufsproduktUnfallType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -47,12 +42,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.VerkaufsproduktUnfal
|
|||||||
"elRahmenvereinbarung",
|
"elRahmenvereinbarung",
|
||||||
"zusaetzlicheVerkaufproduktdaten"
|
"zusaetzlicheVerkaufproduktdaten"
|
||||||
})
|
})
|
||||||
@XmlSeeAlso({
|
|
||||||
VerkaufsproduktKfzType.class,
|
|
||||||
VerkaufsproduktRechtsschutzType.class,
|
|
||||||
VerkaufsproduktSachPrivatType.class,
|
|
||||||
VerkaufsproduktUnfallType.class
|
|
||||||
})
|
|
||||||
public abstract class VerkaufsproduktType
|
public abstract class VerkaufsproduktType
|
||||||
extends ProduktbausteinAntragsprozessType
|
extends ProduktbausteinAntragsprozessType
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -7,9 +7,6 @@ import javax.xml.bind.annotation.XmlAttribute;
|
|||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.RisikoGebaeudeType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.RisikoHaushaltType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.VersichertesObjektSachPrivatType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -38,10 +35,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.VersichertesObje
|
|||||||
VersicherteVeranstaltungType.class,
|
VersicherteVeranstaltungType.class,
|
||||||
FahrzeugType.class,
|
FahrzeugType.class,
|
||||||
VersicherterBetriebType.class,
|
VersicherterBetriebType.class,
|
||||||
VersicherteLiegenschaftType.class,
|
VersicherteLiegenschaftType.class
|
||||||
VersichertesObjektSachPrivatType.class,
|
|
||||||
RisikoHaushaltType.class,
|
|
||||||
RisikoGebaeudeType.class
|
|
||||||
})
|
})
|
||||||
public abstract class VersichertesInteresseType {
|
public abstract class VersichertesInteresseType {
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.ZeitraumType;
|
|||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="VUNr" type="{urn:omds20}VUNr"/>
|
* <element name="VUNr" type="{urn:omds20}VUNr"/>
|
||||||
* <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
|
* <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
|
||||||
* <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
|
* <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type"/>
|
||||||
* <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
|
* <element name="Zeitraum" type="{urn:omds3CommonServiceTypes-1-1-0}Zeitraum_Type" minOccurs="0"/>
|
||||||
* <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
|
* <element name="DokumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" minOccurs="0"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
@@ -49,7 +49,7 @@ public class GetNumberOfDocumentsRequestType {
|
|||||||
protected String vuNr;
|
protected String vuNr;
|
||||||
@XmlElement(name = "AuthFilter")
|
@XmlElement(name = "AuthFilter")
|
||||||
protected AuthorizationFilter authFilter;
|
protected AuthorizationFilter authFilter;
|
||||||
@XmlElement(name = "ObjektSpezifikation")
|
@XmlElement(name = "ObjektSpezifikation", required = true)
|
||||||
protected ObjektSpezifikationType objektSpezifikation;
|
protected ObjektSpezifikationType objektSpezifikation;
|
||||||
@XmlElement(name = "Zeitraum")
|
@XmlElement(name = "Zeitraum")
|
||||||
protected ZeitraumType zeitraum;
|
protected ZeitraumType zeitraum;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import javax.xml.bind.annotation.XmlSchemaType;
|
|||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.AntragsartType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.AntragsartType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.BeteiligtePersonVertragType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DatenverwendungType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.DatenverwendungType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.KontierungType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.KontierungType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.PolizzenversandType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.PolizzenversandType;
|
||||||
@@ -20,7 +21,6 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SpezAntragKfzType;
|
|||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.SpezAntragRechtsschutzType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.SpezAntragRechtsschutzType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.AntragSachPrivatType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.AntragSachPrivatType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SpezAntragUnfallType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SpezAntragUnfallType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.BeteiligtePersonVertragType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -36,7 +36,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.BeteiligtePersonVertragT
|
|||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
|
* <element name="Antragsart" type="{urn:omds3CommonServiceTypes-1-1-0}Antragsart_Type" minOccurs="0"/>
|
||||||
* <element name="Personen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
|
* <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
|
||||||
* <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
* <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||||
* <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
* <element name="AbweichenderPraemienzahler" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||||
* <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="WeitereVersicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
|
|||||||
@@ -9,12 +9,12 @@ import javax.xml.bind.annotation.XmlElement;
|
|||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.BeteiligtePersonVertragType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SpezOffertKfzType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.kfz.SpezOffertKfzType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.SpezOffertRechtsschutzType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.rs.SpezOffertRechtsschutzType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.OffertSachPrivatType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.sachPrivat.OffertSachPrivatType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SpezOffertUnfallType;
|
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.unfall.SpezOffertUnfallType;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.BeteiligtePersonVertragType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -30,7 +30,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.servicetypes.BeteiligtePersonVertragT
|
|||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
* <sequence>
|
* <sequence>
|
||||||
* <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
* <element name="Offertnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||||
* <element name="Personen" type="{urn:omds3ServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
|
* <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}BeteiligtePersonVertrag_Type" maxOccurs="unbounded"/>
|
||||||
* <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
* <element name="Versicherungsnehmer" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
||||||
* </sequence>
|
* </sequence>
|
||||||
* </restriction>
|
* </restriction>
|
||||||
|
|||||||
@@ -62,8 +62,8 @@ public class ChangeCommunicationObjectRequestType
|
|||||||
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
@XmlElement(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||||
protected ObjektIdType objektId;
|
protected ObjektIdType objektId;
|
||||||
@XmlElementRefs({
|
@XmlElementRefs({
|
||||||
@XmlElementRef(name = "ObjektId", namespace = "urn:omds3CommonServiceTypes-1-1-0", type = JAXBElement.class),
|
|
||||||
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
|
@XmlElementRef(name = "BisherigeKommunikationsVerbindung", namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on4partner", type = JAXBElement.class),
|
||||||
|
@XmlElementRef(name = "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)
|
||||||
})
|
})
|
||||||
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
|
protected List<JAXBElement<?>> objektIdOrBisherigeKommunikationsVerbindungAndGeaenderteKommunikationsVerbindung;
|
||||||
|
|||||||
@@ -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-07-02T18:14:24.981+02:00
|
* 2019-07-12T15:19:45.936+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -16,7 +16,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-07-02T18:14:24.764+02:00
|
* 2019-07-12T15:19:45.805+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -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-07-02T18:14:24.942+02:00
|
* 2019-07-12T15:19:45.905+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -19,7 +19,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-07-02T18:14:24.416+02:00
|
* 2019-07-12T15:19:45.668+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -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-07-02T18:14:24.631+02:00
|
* 2019-07-12T15:19:45.777+02:00
|
||||||
* Generated source version: 3.2.0
|
* Generated source version: 3.2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import javax.xml.bind.annotation.XmlSchemaType;
|
|||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
import javax.xml.datatype.XMLGregorianCalendar;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter;
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.AuthorizationFilter;
|
||||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.PolicyPartnerRole;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -29,7 +28,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.common.PolicyPartnerRole;
|
|||||||
* <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
|
* <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
|
||||||
* <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
|
* <element name="policyNumber" type="{urn:omds20}Polizzennr"/>
|
||||||
* <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
|
* <element name="policyType" type="{urn:omds20}VtgProdCd_Type" minOccurs="0"/>
|
||||||
* <element name="policyPartnerRole" type="{urn:omds3CommonServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="policyPartnerRole" type="{urn:omds3ServiceTypes-1-1-0}PolicyPartnerRole" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
|
* <element name="documentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType" maxOccurs="unbounded" minOccurs="0"/>
|
||||||
* <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
* <element name="dateFrom" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||||
* <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
* <element name="dateUntil" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||||
|
|||||||
@@ -207,6 +207,14 @@ public class ObjectFactory {
|
|||||||
return new OMDSPackageInfoType();
|
return new OMDSPackageInfoType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of {@link PolicyPartnerRole }
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public PolicyPartnerRole createPolicyPartnerRole() {
|
||||||
|
return new PolicyPartnerRole();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link ArcImageInfo }
|
* Create an instance of {@link ArcImageInfo }
|
||||||
*
|
*
|
||||||
@@ -223,14 +231,6 @@ public class ObjectFactory {
|
|||||||
return new ArcContent();
|
return new ArcContent();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create an instance of {@link BeteiligtePersonVertragType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BeteiligtePersonVertragType createBeteiligtePersonVertragType() {
|
|
||||||
return new BeteiligtePersonVertragType();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link RequestedOMDSPackage.OmdsPackage }
|
* Create an instance of {@link RequestedOMDSPackage.OmdsPackage }
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@@ -8,6 +8,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
|||||||
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
import javax.xml.bind.annotation.XmlSchemaType;
|
||||||
import javax.xml.bind.annotation.XmlType;
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
import at.vvo.omds.types.omds3Types.r1_4_0.common.PartnerRoleType;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1,6 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<xsd:schema xmlns="urn:omds3CommonServiceTypes-1-1-0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:omds="urn:omds20" targetNamespace="urn:omds3CommonServiceTypes-1-1-0" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.4.0">
|
<xsd:schema xmlns="urn:omds3CommonServiceTypes-1-1-0" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||||
|
xmlns:omds="urn:omds20" xmlns:ost="urn:omds3ServiceTypes-1-1-0"
|
||||||
|
targetNamespace="urn:omds3CommonServiceTypes-1-1-0"
|
||||||
|
elementFormDefault="qualified" attributeFormDefault="qualified" version="1.4.0">
|
||||||
<xsd:import namespace="urn:omds20" schemaLocation="omds211-00.xsd"/>
|
<xsd:import namespace="urn:omds20" schemaLocation="omds211-00.xsd"/>
|
||||||
|
<xsd:import namespace="urn:omds3ServiceTypes-1-1-0" schemaLocation="omds3ServiceTypes.xsd"/>
|
||||||
<!-- Elemente, die von allen Services gemeinsam verwendet werden -->
|
<!-- Elemente, die von allen Services gemeinsam verwendet werden -->
|
||||||
<xsd:element name="serviceFault" type="ServiceFault">
|
<xsd:element name="serviceFault" type="ServiceFault">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
@@ -316,7 +320,7 @@
|
|||||||
<xsd:documentation>Abstraktes ResponseObjekt</xsd:documentation>
|
<xsd:documentation>Abstraktes ResponseObjekt</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="Status" type="ResponseStatus_Type"/>
|
<xsd:element name="Status" type="ResponseStatus_Type" />
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="ResponseStatus_Type">
|
<xsd:complexType name="ResponseStatus_Type">
|
||||||
@@ -671,6 +675,26 @@
|
|||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<!-- Produktmodell -->
|
<!-- Produktmodell -->
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Produktmodell</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:complexType name="BeteiligtePersonVertrag_Type">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="Lfnr" type="xsd:unsignedShort">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Vergabe einer laufenden Nummer ist Pflicht. Über die laufende Nummer kann die beteiligte Person innerhalb eines Requests (z.B. innerhalb einer Berechnungsanforderung) referenziert werden.</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element ref="Person">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Objekt zur Übermittlung von Personendaten ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld. Kann Adressdaten enthalten.</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
<xsd:complexType name="Produktbaustein_Type" abstract="true">
|
<xsd:complexType name="Produktbaustein_Type" abstract="true">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Abstrakter Typ für alle Gemeinsamkeiten von Produktbausteinen</xsd:documentation>
|
<xsd:documentation>Abstrakter Typ für alle Gemeinsamkeiten von Produktbausteinen</xsd:documentation>
|
||||||
@@ -1789,7 +1813,7 @@
|
|||||||
<xsd:documentation>Einschränkung der Anfrage auf Dokumente für Polizzen eines bestimmten Typs. Das Attribut ist vom Typ VtgProdCd_Type des OMDS-Datensatz</xsd:documentation>
|
<xsd:documentation>Einschränkung der Anfrage auf Dokumente für Polizzen eines bestimmten Typs. Das Attribut ist vom Typ VtgProdCd_Type des OMDS-Datensatz</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="RollePartner" type="PolicyPartnerRole" minOccurs="0" maxOccurs="unbounded">
|
<xsd:element name="RollePartner" type="ost:PolicyPartnerRole" minOccurs="0" maxOccurs="unbounded">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Einschränkung der Anfrage auf Dokumente für bestimmte Partner in einer bestimmten Rolle</xsd:documentation>
|
<xsd:documentation>Einschränkung der Anfrage auf Dokumente für bestimmte Partner in einer bestimmten Rolle</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
@@ -1819,21 +1843,5 @@
|
|||||||
</xsd:extension>
|
</xsd:extension>
|
||||||
</xsd:complexContent>
|
</xsd:complexContent>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
<xsd:complexType name="PolicyPartnerRole">
|
|
||||||
<xsd:annotation>
|
|
||||||
<xsd:documentation>Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person</xsd:documentation>
|
|
||||||
</xsd:annotation>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="partnerNumber" type="omds:Personennr">
|
|
||||||
<xsd:annotation>
|
|
||||||
<xsd:documentation>Die Partnernummer als OMDS-Personennr (String mit 1-26 Zeichen) </xsd:documentation>
|
|
||||||
</xsd:annotation>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="partnerRole" type="PartnerRoleType" minOccurs="0" maxOccurs="unbounded">
|
|
||||||
<xsd:annotation>
|
|
||||||
<xsd:documentation>Partnerrollen im Vertrag als PartnerRoleType: String mit 2 Zeichen: VN, VP</xsd:documentation>
|
|
||||||
</xsd:annotation>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:sequence>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:schema>
|
</xsd:schema>
|
||||||
|
|||||||
@@ -274,7 +274,7 @@
|
|||||||
<xsd:documentation>Einschränkung der Anfrage auf Dokumente für Polizzen eines bestimmten Typs. Das Attribut ist vom Typ VtgProdCd_Type des OMDS-Datensatz</xsd:documentation>
|
<xsd:documentation>Einschränkung der Anfrage auf Dokumente für Polizzen eines bestimmten Typs. Das Attribut ist vom Typ VtgProdCd_Type des OMDS-Datensatz</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="policyPartnerRole" type="cst:PolicyPartnerRole" minOccurs="0" maxOccurs="unbounded">
|
<xsd:element name="policyPartnerRole" type="PolicyPartnerRole" minOccurs="0" maxOccurs="unbounded">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Einschränkung der Anfrage auf Dokumente für bestimmte Partner in einer bestimmten Rolle</xsd:documentation>
|
<xsd:documentation>Einschränkung der Anfrage auf Dokumente für bestimmte Partner in einer bestimmten Rolle</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
@@ -353,6 +353,23 @@
|
|||||||
<xsd:element name="ServiceFault" type="cst:ServiceFault" minOccurs="0"/>
|
<xsd:element name="ServiceFault" type="cst:ServiceFault" minOccurs="0"/>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
|
<xsd:complexType name="PolicyPartnerRole">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Partnerrollen in einer Polizze: Versicherungsnehmer, Versicherte Person</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="partnerNumber" type="omds:Personennr">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Die Partnernummer als OMDS-Personennr (String mit 1-26 Zeichen) </xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="partnerRole" type="cst:PartnerRoleType" minOccurs="0" maxOccurs="unbounded">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Partnerrollen im Vertrag als PartnerRoleType: String mit 2 Zeichen: VN, VP</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
<xsd:complexType name="ArcImageInfo">
|
<xsd:complexType name="ArcImageInfo">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Information zu einem einzelnen Dokument</xsd:documentation>
|
<xsd:documentation>Information zu einem einzelnen Dokument</xsd:documentation>
|
||||||
@@ -661,28 +678,8 @@
|
|||||||
<xsd:element name="ServiceFault" type="cst:ServiceFault" minOccurs="0" maxOccurs="unbounded"/>
|
<xsd:element name="ServiceFault" type="cst:ServiceFault" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
</xsd:sequence>
|
</xsd:sequence>
|
||||||
</xsd:complexType>
|
</xsd:complexType>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<xsd:annotation>
|
|
||||||
<xsd:documentation>Produktmodell</xsd:documentation>
|
|
||||||
</xsd:annotation>
|
|
||||||
<xsd:complexType name="BeteiligtePersonVertrag_Type">
|
|
||||||
<xsd:annotation>
|
|
||||||
<xsd:documentation>Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind</xsd:documentation>
|
|
||||||
</xsd:annotation>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="Lfnr" type="xsd:unsignedShort">
|
|
||||||
<xsd:annotation>
|
|
||||||
<xsd:documentation>Vergabe einer laufenden Nummer ist Pflicht. Über die laufende Nummer kann die beteiligte Person innerhalb eines Requests (z.B. innerhalb einer Berechnungsanforderung) referenziert werden.</xsd:documentation>
|
|
||||||
</xsd:annotation>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element ref="cst:Person">
|
|
||||||
<xsd:annotation>
|
|
||||||
<xsd:documentation>Objekt zur Übermittlung von Personendaten ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld. Kann Adressdaten enthalten.</xsd:documentation>
|
|
||||||
</xsd:annotation>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:sequence>
|
|
||||||
</xsd:complexType>
|
|
||||||
|
|
||||||
</xsd:schema>
|
</xsd:schema>
|
||||||
|
|||||||
@@ -6,10 +6,15 @@
|
|||||||
xmlns:os="http://omds.vvo.at/brokerservice/v1_4_0"
|
xmlns:os="http://omds.vvo.at/brokerservice/v1_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:sch="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden"
|
||||||
xmlns="http://schemas.xmlsoap.org/wsdl/"
|
xmlns="http://schemas.xmlsoap.org/wsdl/"
|
||||||
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:ns="http://www.w3.org/2001/XMLSchema"
|
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
|
||||||
xmlns:ns1="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
xmlns:ns="http://www.w3.org/2001/XMLSchema"
|
||||||
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
xmlns:ns1="http://schemas.xmlsoap.org/soap/encoding/"
|
||||||
|
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
||||||
|
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
||||||
|
|
||||||
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
hier wird exampleVuServiceTypes.xsd referenziert, welches stellvertretend fuer eine individuelle
|
hier wird exampleVuServiceTypes.xsd referenziert, welches stellvertretend fuer eine individuelle
|
||||||
@@ -20,6 +25,7 @@
|
|||||||
<types>
|
<types>
|
||||||
<schema xmlns="http://www.w3.org/2001/XMLSchema">
|
<schema xmlns="http://www.w3.org/2001/XMLSchema">
|
||||||
<import namespace="urn:omds3ServiceTypes-1-1-0" schemaLocation="omds3ServiceTypes.xsd" />
|
<import namespace="urn:omds3ServiceTypes-1-1-0" schemaLocation="omds3ServiceTypes.xsd" />
|
||||||
|
<import namespace="urn:at.vvo.omds.types.omds3types.v1-4-0.on7schaden" schemaLocation="omds3_ON7_Schaden.xsd"/>
|
||||||
</schema>
|
</schema>
|
||||||
</types>
|
</types>
|
||||||
|
|
||||||
@@ -27,17 +33,17 @@
|
|||||||
|
|
||||||
|
|
||||||
<message name="DeclareNewClaimStatusRequestMsg">
|
<message name="DeclareNewClaimStatusRequestMsg">
|
||||||
<part name="parameters" element="ost:DeclareNewClaimStatusRequest"/>
|
<part name="parameters" element="sch:DeclareNewClaimStatusRequest"/>
|
||||||
</message>
|
</message>
|
||||||
<message name="DeclareNewClaimStatusResponseMsg">
|
<message name="DeclareNewClaimStatusResponseMsg">
|
||||||
<part name="parameters" element="ost:DeclareNewClaimStatusResponse"/>
|
<part name="parameters" element="sch:DeclareNewClaimStatusResponse"/>
|
||||||
</message>
|
</message>
|
||||||
|
|
||||||
<message name="LossEventRegisteredRequestMsg">
|
<message name="LossEventRegisteredRequestMsg">
|
||||||
<part name="parameters" element="ost:LossEventRegisteredRequest"/>
|
<part name="parameters" element="sch:LossEventRegisteredRequest"/>
|
||||||
</message>
|
</message>
|
||||||
<message name="LossEventRegisteredResponseMsg">
|
<message name="LossEventRegisteredResponseMsg">
|
||||||
<part name="parameters" element="ost:LossEventRegisteredResponse"/>
|
<part name="parameters" element="sch:LossEventRegisteredResponse"/>
|
||||||
</message>
|
</message>
|
||||||
|
|
||||||
<!-- Vergabe eines Security Context Token
|
<!-- Vergabe eines Security Context Token
|
||||||
|
|||||||
@@ -43,7 +43,7 @@
|
|||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="VUNr" type="omds:VUNr"/>
|
<xsd:element name="VUNr" type="omds:VUNr"/>
|
||||||
<xsd:element name="AuthFilter" type="cst:AuthorizationFilter" minOccurs="0"/>
|
<xsd:element name="AuthFilter" type="cst:AuthorizationFilter" minOccurs="0"/>
|
||||||
<xsd:element name="ObjektSpezifikation" type="cst:ObjektSpezifikation_Type" minOccurs="0">
|
<xsd:element name="ObjektSpezifikation" type="cst:ObjektSpezifikation_Type">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>ObjektSpezifikation kann ab Version 1.3 entfallen, es kann aber sein, dass das Versicherungsunternehmen einen Fehler meldet, weil es Anfragen nur mit Objektspezifikation unterstützt oder weil die Ergebnismenge zu groß wäre.</xsd:documentation>
|
<xsd:documentation>ObjektSpezifikation kann ab Version 1.3 entfallen, es kann aber sein, dass das Versicherungsunternehmen einen Fehler meldet, weil es Anfragen nur mit Objektspezifikation unterstützt oder weil die Ergebnismenge zu groß wäre.</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
<xsd:sequence>
|
<xsd:sequence>
|
||||||
<xsd:element name="Offertnummer" type="cst:ObjektId_Type" minOccurs="0"/>
|
<xsd:element name="Offertnummer" type="cst:ObjektId_Type" minOccurs="0"/>
|
||||||
<xsd:element name="Personen" type="ost:BeteiligtePersonVertrag_Type" maxOccurs="unbounded">
|
<xsd:element name="Personen" type="cst:BeteiligtePersonVertrag_Type" maxOccurs="unbounded">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Liste aller benötigten Personen, welche dann über ihre Rolle direkt referenziert werden. Im Offert ist dies insb. der Versicherungsnehmer.</xsd:documentation>
|
<xsd:documentation>Liste aller benötigten Personen, welche dann über ihre Rolle direkt referenziert werden. Im Offert ist dies insb. der Versicherungsnehmer.</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
<xsd:documentation>Die Antragsart kann auch vom ServiceProvider automatisch bestimmt werden, dann bleibt sie im Request leer.</xsd:documentation>
|
<xsd:documentation>Die Antragsart kann auch vom ServiceProvider automatisch bestimmt werden, dann bleibt sie im Request leer.</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:element>
|
</xsd:element>
|
||||||
<xsd:element name="Personen" type="ost:BeteiligtePersonVertrag_Type" maxOccurs="unbounded">
|
<xsd:element name="Personen" type="cst:BeteiligtePersonVertrag_Type" maxOccurs="unbounded">
|
||||||
<xsd:annotation>
|
<xsd:annotation>
|
||||||
<xsd:documentation>Liste aller benötigten Vertragspersonen (nicht versicherte Personen), welche dann über ihre Rolle referenziert werden. Die Personen können eine Adresse enthalten.</xsd:documentation>
|
<xsd:documentation>Liste aller benötigten Vertragspersonen (nicht versicherte Personen), welche dann über ihre Rolle referenziert werden. Die Personen können eine Adresse enthalten.</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
|
|||||||
Reference in New Issue
Block a user