Vorbereitung Release 1.7: Entfernen der Teile, die nicht veroeffentlicht werden sollen, Sourcen neu generiert.
This commit is contained in:
@@ -1,32 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<classpath>
|
|
||||||
<classpathentry kind="src" output="target/classes" path="src/main/java">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="optional" value="true"/>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="optional" value="true"/>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
<attribute name="test" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry kind="output" path="target/classes"/>
|
|
||||||
</classpath>
|
|
||||||
@@ -1,4 +1,9 @@
|
|||||||
|
Build mit Maven
|
||||||
|
===============
|
||||||
|
Build mit Maven 3.8 auf Java 1.8
|
||||||
|
|
||||||
Maven Goals
|
Maven Goals
|
||||||
|
===========
|
||||||
|
|
||||||
Mit Maven Goal "clean package" kann ein Release als ZIP-File mit XSDs und WSDLs sowie der Dokumentation gebaut werden.
|
Mit Maven Goal "clean package" kann ein Release als ZIP-File mit XSDs und WSDLs sowie der Dokumentation gebaut werden.
|
||||||
Mit Maven Goal "clean deploy" wird der Release in das Kap Dion- Maven - OMDS Repository hochgeladen.
|
Mit Maven Goal "clean deploy" wird der Release in das Kap Dion- Maven - OMDS Repository hochgeladen.
|
||||||
|
|||||||
@@ -17,20 +17,25 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
|||||||
|
|
||||||
<wsdl.name>omds3Services.wsdl</wsdl.name>
|
<wsdl.name>omds3Services.wsdl</wsdl.name>
|
||||||
<bindings.location.rel>/src/main/resources/bind/${currentReleaseDir}</bindings.location.rel>
|
<bindings.location.rel>/src/main/resources/bind/${currentReleaseDir}</bindings.location.rel>
|
||||||
<target.generation.path>${basedir}/src/main/java</target.generation.path>
|
<target.generation.path>${basedir}/src/main/java</target.generation.path>
|
||||||
<bindings.location>${basedir}${bindings.location.rel}</bindings.location>
|
<bindings.location>${basedir}${bindings.location.rel}</bindings.location>
|
||||||
<wsdl.location>src/main/resources/def/${currentReleaseDir}/${wsdl.name}</wsdl.location>
|
<wsdl.location>src/main/resources/def/${currentReleaseDir}/${wsdl.name}</wsdl.location>
|
||||||
|
|
||||||
<jdk.version>1.7</jdk.version>
|
<jdk.version>1.8</jdk.version>
|
||||||
<maven.compiler.source>${jdk.version}</maven.compiler.source>
|
<maven.compiler.source>${jdk.version}</maven.compiler.source>
|
||||||
<maven.compiler.target>${jdk.version}</maven.compiler.target>
|
<maven.compiler.target>${jdk.version}</maven.compiler.target>
|
||||||
|
|
||||||
<cxf.version>3.2.0</cxf.version>
|
<cxf.version>3.5.0</cxf.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.cxf</groupId>
|
||||||
|
<artifactId>cxf-codegen-plugin</artifactId>
|
||||||
|
<version>${cxf.version}</version>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-help-plugin</artifactId>
|
<artifactId>maven-help-plugin</artifactId>
|
||||||
@@ -152,64 +157,113 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
|||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<!-- CFX Start -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.cxf</groupId>
|
||||||
|
<artifactId>cxf-rt-frontend-simple</artifactId>
|
||||||
|
<version>${cxf.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.cxf</groupId>
|
||||||
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
||||||
|
<version>${cxf.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.cxf</groupId>
|
||||||
|
<artifactId>cxf-rt-bindings-soap</artifactId>
|
||||||
|
<version>${cxf.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.cxf</groupId>
|
||||||
|
<artifactId>cxf-rt-transports-http</artifactId>
|
||||||
|
<version>${cxf.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Jetty is needed if you're are not using the CXFServlet -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.cxf</groupId>
|
||||||
|
<artifactId>cxf-rt-transports-http-jetty</artifactId>
|
||||||
|
<version>${cxf.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.cxf</groupId>
|
||||||
|
<artifactId>cxf-rt-ws-security</artifactId>
|
||||||
|
<version>${cxf.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.cxf</groupId>
|
||||||
|
<artifactId>cxf-rt-features-logging</artifactId>
|
||||||
|
<version>${cxf.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- CFX Ende -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>3.8.2</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
<!-- CFX Start -->
|
<!-- CFX Start -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.cxf</groupId>
|
<groupId>org.apache.cxf</groupId>
|
||||||
<artifactId>cxf-rt-frontend-simple</artifactId>
|
<artifactId>cxf-rt-frontend-simple</artifactId>
|
||||||
<version>${cxf.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.cxf</groupId>
|
<groupId>org.apache.cxf</groupId>
|
||||||
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
||||||
<version>${cxf.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.cxf</groupId>
|
<groupId>org.apache.cxf</groupId>
|
||||||
<artifactId>cxf-rt-bindings-soap</artifactId>
|
<artifactId>cxf-rt-bindings-soap</artifactId>
|
||||||
<version>${cxf.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.cxf</groupId>
|
<groupId>org.apache.cxf</groupId>
|
||||||
<artifactId>cxf-rt-transports-http</artifactId>
|
<artifactId>cxf-rt-transports-http</artifactId>
|
||||||
<version>${cxf.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Jetty is needed if you're are not using the CXFServlet -->
|
<!-- Jetty is needed if you're are not using the CXFServlet -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.cxf</groupId>
|
<groupId>org.apache.cxf</groupId>
|
||||||
<artifactId>cxf-rt-transports-http-jetty</artifactId>
|
<artifactId>cxf-rt-transports-http-jetty</artifactId>
|
||||||
<version>${cxf.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.cxf</groupId>
|
<groupId>org.apache.cxf</groupId>
|
||||||
<artifactId>cxf-rt-ws-security</artifactId>
|
<artifactId>cxf-rt-ws-security</artifactId>
|
||||||
<version>${cxf.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.cxf</groupId>
|
<groupId>org.apache.cxf</groupId>
|
||||||
<artifactId>cxf-rt-features-logging</artifactId>
|
<artifactId>cxf-rt-features-logging</artifactId>
|
||||||
<version>${cxf.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- CFX Ende -->
|
<!-- CFX Ende -->
|
||||||
|
|
||||||
<dependency>
|
<!-- <dependency>-->
|
||||||
<groupId>log4j</groupId>
|
<!-- <groupId>log4j</groupId>-->
|
||||||
<artifactId>log4j</artifactId>
|
<!-- <artifactId>log4j</artifactId>-->
|
||||||
<version>1.2.12</version>
|
<!-- <version>1.2.12</version>-->
|
||||||
</dependency>
|
<!-- <scope>test</scope>-->
|
||||||
|
<!-- </dependency>-->
|
||||||
|
|
||||||
<dependency>
|
<!-- <dependency>-->
|
||||||
<groupId>junit</groupId>
|
<!-- <groupId>junit</groupId>-->
|
||||||
<artifactId>junit</artifactId>
|
<!-- <artifactId>junit</artifactId>-->
|
||||||
<version>3.8.2</version>
|
<!-- <scope>test</scope>-->
|
||||||
<scope>test</scope>
|
<!-- </dependency>-->
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<!-- Zielordner fuer Deploy unter OMDS-Entwicklung -->
|
<!-- Zielordner fuer Deploy unter OMDS-Entwicklung -->
|
||||||
@@ -245,12 +299,9 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
|||||||
</properties>
|
</properties>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.cxf</groupId>
|
<groupId>org.apache.cxf</groupId>
|
||||||
<artifactId>cxf-codegen-plugin</artifactId>
|
<artifactId>cxf-codegen-plugin</artifactId>
|
||||||
<version>${cxf.version}</version>
|
|
||||||
<configuration>
|
<configuration>
|
||||||
<additionalJvmArgs>-Djavax.xml.accessExternalSchema=all</additionalJvmArgs>
|
<additionalJvmArgs>-Djavax.xml.accessExternalSchema=all</additionalJvmArgs>
|
||||||
</configuration>
|
</configuration>
|
||||||
@@ -266,7 +317,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
|||||||
<extendedSoapHeaders>true</extendedSoapHeaders>
|
<extendedSoapHeaders>true</extendedSoapHeaders>
|
||||||
|
|
||||||
<!-- wsdl/jaxb Binding wie der Code generiert werden soll -->
|
<!-- wsdl/jaxb Binding wie der Code generiert werden soll -->
|
||||||
<bindingFiles>
|
<bindingFiles>
|
||||||
<bindingFile>${bindings.location}/omds20Types_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omds20Types_binding.xml</bindingFile>
|
||||||
<bindingFile>${bindings.location}/omdsServiceTypes_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omdsServiceTypes_binding.xml</bindingFile>
|
||||||
<bindingFile>${bindings.location}/omdsCommonServiceTypes_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omdsCommonServiceTypes_binding.xml</bindingFile>
|
||||||
@@ -274,16 +325,10 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
|||||||
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Common_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Common_binding.xml</bindingFile>
|
||||||
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Kfz_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Kfz_binding.xml</bindingFile>
|
||||||
<bindingFile>${bindings.location}/omds3_ON2_Antrag_SachPrivat_binding.xml</bindingFile>
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_SachPrivat_binding.xml</bindingFile>
|
||||||
<!-- <bindingFile>${bindings.location}/omds3_ON2_Antrag_RS_binding.xml</bindingFile>-->
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Unfall_binding.xml</bindingFile>
|
||||||
<!-- <bindingFile>${bindings.location}/omds3_ON2_Antrag_Unfall_binding.xml</bindingFile>-->
|
<bindingFile>${bindings.location}/omds3_ON2_Antrag_Leben_binding.xml</bindingFile>
|
||||||
<!-- <bindingFile>${bindings.location}/omds3_ON2_Antrag_Kranken_binding.xml</bindingFile>-->
|
<bindingFile>${bindings.location}/omds3_ON7_Schaden_binding.xml</bindingFile>
|
||||||
<!-- <bindingFile>${bindings.location}/omds3_ON2_Antrag_Leben_binding.xml</bindingFile>-->
|
|
||||||
<!-- <bindingFile>${bindings.location}/omds3_ON2_Antrag_Produktfinder_binding.xml</bindingFile>-->
|
|
||||||
<!-- <bindingFile>${bindings.location}/omds3_ON3_Vertrag_binding.xml</bindingFile>-->
|
|
||||||
<!-- <bindingFile>${bindings.location}/omds3_ON4_Partner_binding.xml</bindingFile>-->
|
|
||||||
<bindingFile>${bindings.location}/omds3_ON7_Schaden_binding.xml</bindingFile>
|
|
||||||
<bindingFile>${bindings.location}/${wsdl.binding.xml}</bindingFile>
|
<bindingFile>${bindings.location}/${wsdl.binding.xml}</bindingFile>
|
||||||
<!-- <bindingFile>${bindings.location}/omdsExampleVuExtension_binding.xml</bindingFile> -->
|
|
||||||
</bindingFiles>
|
</bindingFiles>
|
||||||
|
|
||||||
<!-- you can set the options of wsdl2java command by using the <extraargs> -->
|
<!-- you can set the options of wsdl2java command by using the <extraargs> -->
|
||||||
@@ -324,7 +369,6 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.cxf</groupId>
|
<groupId>org.apache.cxf</groupId>
|
||||||
<artifactId>cxf-codegen-plugin</artifactId>
|
<artifactId>cxf-codegen-plugin</artifactId>
|
||||||
<version>${cxf.version}</version>
|
|
||||||
<configuration>
|
<configuration>
|
||||||
<additionalJvmArgs>-Djavax.xml.accessExternalSchema=all</additionalJvmArgs>
|
<additionalJvmArgs>-Djavax.xml.accessExternalSchema=all</additionalJvmArgs>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für BBArtCd_Type.
|
* <p>Java-Klasse für BBArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="BBArtCd_Type">
|
* <simpleType name="BBArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für Entsch2_Type.
|
* <p>Java-Klasse für Entsch2_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="Entsch2_Type">
|
* <simpleType name="Entsch2_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für EstArtCd_Type.
|
* <p>Java-Klasse für EstArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="EstArtCd_Type">
|
* <simpleType name="EstArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für FlaechenAttributCd_Type.
|
* <p>Java-Klasse für FlaechenAttributCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="FlaechenAttributCd_Type">
|
* <simpleType name="FlaechenAttributCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für GesFormCd_Type.
|
* <p>Java-Klasse für GesFormCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="GesFormCd_Type">
|
* <simpleType name="GesFormCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für GrwArtCd_Type.
|
* <p>Java-Klasse für GrwArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="GrwArtCd_Type">
|
* <simpleType name="GrwArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für IdfArtCd_Type.
|
* <p>Java-Klasse für IdfArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="IdfArtCd_Type">
|
* <simpleType name="IdfArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für LoeschCd_Type.
|
* <p>Java-Klasse für LoeschCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="LoeschCd_Type">
|
* <simpleType name="LoeschCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -559,8 +559,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELKommunikationType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Kommunikation")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Kommunikation")
|
||||||
public JAXBElement<ELKommunikationType> createELKommunikation(ELKommunikationType value) {
|
public JAXBElement<ELKommunikationType> createELKommunikation(ELKommunikationType value) {
|
||||||
@@ -568,8 +572,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link KLAUSELType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link KLAUSELType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link KLAUSELType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "KLAUSEL")
|
@XmlElementDecl(namespace = "urn:omds20", name = "KLAUSEL")
|
||||||
public JAXBElement<KLAUSELType> createKLAUSEL(KLAUSELType value) {
|
public JAXBElement<KLAUSELType> createKLAUSEL(KLAUSELType value) {
|
||||||
@@ -577,8 +585,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link LOESCHANSTOSSType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link LOESCHANSTOSSType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link LOESCHANSTOSSType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "LOESCHANSTOSS")
|
@XmlElementDecl(namespace = "urn:omds20", name = "LOESCHANSTOSS")
|
||||||
public JAXBElement<LOESCHANSTOSSType> createLOESCHANSTOSS(LOESCHANSTOSSType value) {
|
public JAXBElement<LOESCHANSTOSSType> createLOESCHANSTOSS(LOESCHANSTOSSType value) {
|
||||||
@@ -586,8 +598,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link PERSONType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link PERSONType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link PERSONType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "PERSON")
|
@XmlElementDecl(namespace = "urn:omds20", name = "PERSON")
|
||||||
public JAXBElement<PERSONType> createPERSON(PERSONType value) {
|
public JAXBElement<PERSONType> createPERSON(PERSONType value) {
|
||||||
@@ -595,8 +611,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELAntragType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELAntragType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELAntragType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Antrag")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Antrag")
|
||||||
public JAXBElement<ELAntragType> createELAntrag(ELAntragType value) {
|
public JAXBElement<ELAntragType> createELAntrag(ELAntragType value) {
|
||||||
@@ -604,8 +624,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELAnzahlType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELAnzahlType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELAnzahlType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Anzahl")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Anzahl")
|
||||||
public JAXBElement<ELAnzahlType> createELAnzahl(ELAnzahlType value) {
|
public JAXBElement<ELAnzahlType> createELAnzahl(ELAnzahlType value) {
|
||||||
@@ -613,8 +637,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELBetragType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELBetragType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELBetragType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Betrag")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Betrag")
|
||||||
public JAXBElement<ELBetragType> createELBetrag(ELBetragType value) {
|
public JAXBElement<ELBetragType> createELBetrag(ELBetragType value) {
|
||||||
@@ -622,8 +650,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELBezugsberechtigungType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELBezugsberechtigungType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELBezugsberechtigungType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Bezugsberechtigung")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Bezugsberechtigung")
|
||||||
public JAXBElement<ELBezugsberechtigungType> createELBezugsberechtigung(ELBezugsberechtigungType value) {
|
public JAXBElement<ELBezugsberechtigungType> createELBezugsberechtigung(ELBezugsberechtigungType value) {
|
||||||
@@ -631,8 +663,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELEinstufungType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELEinstufungType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELEinstufungType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Einstufung")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Einstufung")
|
||||||
public JAXBElement<ELEinstufungType> createELEinstufung(ELEinstufungType value) {
|
public JAXBElement<ELEinstufungType> createELEinstufung(ELEinstufungType value) {
|
||||||
@@ -640,8 +676,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELEntscheidungsfrageType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELEntscheidungsfrageType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELEntscheidungsfrageType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Entscheidungsfrage")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Entscheidungsfrage")
|
||||||
public JAXBElement<ELEntscheidungsfrageType> createELEntscheidungsfrage(ELEntscheidungsfrageType value) {
|
public JAXBElement<ELEntscheidungsfrageType> createELEntscheidungsfrage(ELEntscheidungsfrageType value) {
|
||||||
@@ -649,8 +689,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELIdentifizierungType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELIdentifizierungType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELIdentifizierungType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Identifizierung")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Identifizierung")
|
||||||
public JAXBElement<ELIdentifizierungType> createELIdentifizierung(ELIdentifizierungType value) {
|
public JAXBElement<ELIdentifizierungType> createELIdentifizierung(ELIdentifizierungType value) {
|
||||||
@@ -658,8 +702,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELKlauselType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELKlauselType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELKlauselType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Klausel")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Klausel")
|
||||||
public JAXBElement<ELKlauselType> createELKlausel(ELKlauselType value) {
|
public JAXBElement<ELKlauselType> createELKlausel(ELKlauselType value) {
|
||||||
@@ -667,8 +715,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELPolizzennummerType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELPolizzennummerType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELPolizzennummerType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Polizzennummer")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Polizzennummer")
|
||||||
public JAXBElement<ELPolizzennummerType> createELPolizzennummer(ELPolizzennummerType value) {
|
public JAXBElement<ELPolizzennummerType> createELPolizzennummer(ELPolizzennummerType value) {
|
||||||
@@ -676,8 +728,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELPraemienfreistellungType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELPraemienfreistellungType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELPraemienfreistellungType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Praemienfreistellung")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Praemienfreistellung")
|
||||||
public JAXBElement<ELPraemienfreistellungType> createELPraemienfreistellung(ELPraemienfreistellungType value) {
|
public JAXBElement<ELPraemienfreistellungType> createELPraemienfreistellung(ELPraemienfreistellungType value) {
|
||||||
@@ -685,8 +741,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELPraemienkorrekturType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELPraemienkorrekturType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELPraemienkorrekturType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Praemienkorrektur")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Praemienkorrektur")
|
||||||
public JAXBElement<ELPraemienkorrekturType> createELPraemienkorrektur(ELPraemienkorrekturType value) {
|
public JAXBElement<ELPraemienkorrekturType> createELPraemienkorrektur(ELPraemienkorrekturType value) {
|
||||||
@@ -694,8 +754,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELRahmenvereinbarungType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELRahmenvereinbarungType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELRahmenvereinbarungType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Rahmenvereinbarung")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Rahmenvereinbarung")
|
||||||
public JAXBElement<ELRahmenvereinbarungType> createELRahmenvereinbarung(ELRahmenvereinbarungType value) {
|
public JAXBElement<ELRahmenvereinbarungType> createELRahmenvereinbarung(ELRahmenvereinbarungType value) {
|
||||||
@@ -703,8 +767,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELRahmenvertragType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELRahmenvertragType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELRahmenvertragType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Rahmenvertrag")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Rahmenvertrag")
|
||||||
public JAXBElement<ELRahmenvertragType> createELRahmenvertrag(ELRahmenvertragType value) {
|
public JAXBElement<ELRahmenvertragType> createELRahmenvertrag(ELRahmenvertragType value) {
|
||||||
@@ -712,8 +780,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELTextType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELTextType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELTextType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Text")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Text")
|
||||||
public JAXBElement<ELTextType> createELText(ELTextType value) {
|
public JAXBElement<ELTextType> createELText(ELTextType value) {
|
||||||
@@ -721,8 +793,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link VERTRAGSPERSONType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link VERTRAGSPERSONType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link VERTRAGSPERSONType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "VERTRAGSPERSON")
|
@XmlElementDecl(namespace = "urn:omds20", name = "VERTRAGSPERSON")
|
||||||
public JAXBElement<VERTRAGSPERSONType> createVERTRAGSPERSON(VERTRAGSPERSONType value) {
|
public JAXBElement<VERTRAGSPERSONType> createVERTRAGSPERSON(VERTRAGSPERSONType value) {
|
||||||
@@ -730,8 +806,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link VERSOBJEKTType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link VERSOBJEKTType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link VERSOBJEKTType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "VERS_OBJEKT")
|
@XmlElementDecl(namespace = "urn:omds20", name = "VERS_OBJEKT")
|
||||||
public JAXBElement<VERSOBJEKTType> createVERSOBJEKT(VERSOBJEKTType value) {
|
public JAXBElement<VERSOBJEKTType> createVERSOBJEKT(VERSOBJEKTType value) {
|
||||||
@@ -739,8 +819,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link SPARTEType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link SPARTEType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link SPARTEType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "SPARTE")
|
@XmlElementDecl(namespace = "urn:omds20", name = "SPARTE")
|
||||||
public JAXBElement<SPARTEType> createSPARTE(SPARTEType value) {
|
public JAXBElement<SPARTEType> createSPARTE(SPARTEType value) {
|
||||||
@@ -748,8 +832,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link SCHADENType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link SCHADENType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link SCHADENType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "SCHADEN")
|
@XmlElementDecl(namespace = "urn:omds20", name = "SCHADEN")
|
||||||
public JAXBElement<SCHADENType> createSCHADEN(SCHADENType value) {
|
public JAXBElement<SCHADENType> createSCHADEN(SCHADENType value) {
|
||||||
@@ -757,8 +845,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link PROVISIONType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link PROVISIONType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link PROVISIONType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "PROVISION")
|
@XmlElementDecl(namespace = "urn:omds20", name = "PROVISION")
|
||||||
public JAXBElement<PROVISIONType> createPROVISION(PROVISIONType value) {
|
public JAXBElement<PROVISIONType> createPROVISION(PROVISIONType value) {
|
||||||
@@ -766,8 +858,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link MAHNUNGType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link MAHNUNGType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link MAHNUNGType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "MAHNUNG")
|
@XmlElementDecl(namespace = "urn:omds20", name = "MAHNUNG")
|
||||||
public JAXBElement<MAHNUNGType> createMAHNUNG(MAHNUNGType value) {
|
public JAXBElement<MAHNUNGType> createMAHNUNG(MAHNUNGType value) {
|
||||||
@@ -775,8 +871,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link VERTRAGSFONDSType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link VERTRAGSFONDSType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link VERTRAGSFONDSType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "VERTRAGSFONDS")
|
@XmlElementDecl(namespace = "urn:omds20", name = "VERTRAGSFONDS")
|
||||||
public JAXBElement<VERTRAGSFONDSType> createVERTRAGSFONDS(VERTRAGSFONDSType value) {
|
public JAXBElement<VERTRAGSFONDSType> createVERTRAGSFONDS(VERTRAGSFONDSType value) {
|
||||||
@@ -784,8 +884,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link NATUERLICHEPERSONType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link NATUERLICHEPERSONType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link NATUERLICHEPERSONType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "NATUERLICHE_PERSON")
|
@XmlElementDecl(namespace = "urn:omds20", name = "NATUERLICHE_PERSON")
|
||||||
public JAXBElement<NATUERLICHEPERSONType> createNATUERLICHEPERSON(NATUERLICHEPERSONType value) {
|
public JAXBElement<NATUERLICHEPERSONType> createNATUERLICHEPERSON(NATUERLICHEPERSONType value) {
|
||||||
@@ -793,8 +897,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link SONSTIGEPERSONType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link SONSTIGEPERSONType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link SONSTIGEPERSONType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "SONSTIGE_PERSON")
|
@XmlElementDecl(namespace = "urn:omds20", name = "SONSTIGE_PERSON")
|
||||||
public JAXBElement<SONSTIGEPERSONType> createSONSTIGEPERSON(SONSTIGEPERSONType value) {
|
public JAXBElement<SONSTIGEPERSONType> createSONSTIGEPERSON(SONSTIGEPERSONType value) {
|
||||||
@@ -802,8 +910,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link VERSPERSONType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link VERSPERSONType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link VERSPERSONType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "VERS_PERSON")
|
@XmlElementDecl(namespace = "urn:omds20", name = "VERS_PERSON")
|
||||||
public JAXBElement<VERSPERSONType> createVERSPERSON(VERSPERSONType value) {
|
public JAXBElement<VERSPERSONType> createVERSPERSON(VERSPERSONType value) {
|
||||||
@@ -811,8 +923,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link VERSSACHEType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link VERSSACHEType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link VERSSACHEType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "VERS_SACHE")
|
@XmlElementDecl(namespace = "urn:omds20", name = "VERS_SACHE")
|
||||||
public JAXBElement<VERSSACHEType> createVERSSACHE(VERSSACHEType value) {
|
public JAXBElement<VERSSACHEType> createVERSSACHE(VERSSACHEType value) {
|
||||||
@@ -820,8 +936,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link RISIKOType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link RISIKOType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link RISIKOType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "RISIKO")
|
@XmlElementDecl(namespace = "urn:omds20", name = "RISIKO")
|
||||||
public JAXBElement<RISIKOType> createRISIKO(RISIKOType value) {
|
public JAXBElement<RISIKOType> createRISIKO(RISIKOType value) {
|
||||||
@@ -829,8 +949,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link FONDSType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link FONDSType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link FONDSType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "FONDS")
|
@XmlElementDecl(namespace = "urn:omds20", name = "FONDS")
|
||||||
public JAXBElement<FONDSType> createFONDS(FONDSType value) {
|
public JAXBElement<FONDSType> createFONDS(FONDSType value) {
|
||||||
@@ -838,8 +962,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link SCHADENBETEILIGTERType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link SCHADENBETEILIGTERType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link SCHADENBETEILIGTERType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "SCHADEN_BETEILIGTER")
|
@XmlElementDecl(namespace = "urn:omds20", name = "SCHADEN_BETEILIGTER")
|
||||||
public JAXBElement<SCHADENBETEILIGTERType> createSCHADENBETEILIGTER(SCHADENBETEILIGTERType value) {
|
public JAXBElement<SCHADENBETEILIGTERType> createSCHADENBETEILIGTER(SCHADENBETEILIGTERType value) {
|
||||||
@@ -847,8 +975,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link GESCHAEDIGTESOBJEKTType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link GESCHAEDIGTESOBJEKTType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link GESCHAEDIGTESOBJEKTType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "GESCHAEDIGTES_OBJEKT")
|
@XmlElementDecl(namespace = "urn:omds20", name = "GESCHAEDIGTES_OBJEKT")
|
||||||
public JAXBElement<GESCHAEDIGTESOBJEKTType> createGESCHAEDIGTESOBJEKT(GESCHAEDIGTESOBJEKTType value) {
|
public JAXBElement<GESCHAEDIGTESOBJEKTType> createGESCHAEDIGTESOBJEKT(GESCHAEDIGTESOBJEKTType value) {
|
||||||
@@ -856,8 +988,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ZAHLUNGType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ZAHLUNGType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ZAHLUNGType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "ZAHLUNG")
|
@XmlElementDecl(namespace = "urn:omds20", name = "ZAHLUNG")
|
||||||
public JAXBElement<ZAHLUNGType> createZAHLUNG(ZAHLUNGType value) {
|
public JAXBElement<ZAHLUNGType> createZAHLUNG(ZAHLUNGType value) {
|
||||||
@@ -865,8 +1001,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELGewinnbeteiligungType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELGewinnbeteiligungType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELGewinnbeteiligungType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Gewinnbeteiligung")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Gewinnbeteiligung")
|
||||||
public JAXBElement<ELGewinnbeteiligungType> createELGewinnbeteiligung(ELGewinnbeteiligungType value) {
|
public JAXBElement<ELGewinnbeteiligungType> createELGewinnbeteiligung(ELGewinnbeteiligungType value) {
|
||||||
@@ -874,8 +1014,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELGrenzwertType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELGrenzwertType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELGrenzwertType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Grenzwert")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Grenzwert")
|
||||||
public JAXBElement<ELGrenzwertType> createELGrenzwert(ELGrenzwertType value) {
|
public JAXBElement<ELGrenzwertType> createELGrenzwert(ELGrenzwertType value) {
|
||||||
@@ -883,8 +1027,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELIndexType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELIndexType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELIndexType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Index")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Index")
|
||||||
public JAXBElement<ELIndexType> createELIndex(ELIndexType value) {
|
public JAXBElement<ELIndexType> createELIndex(ELIndexType value) {
|
||||||
@@ -892,8 +1040,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELLegitimationType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELLegitimationType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELLegitimationType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Legitimation")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Legitimation")
|
||||||
public JAXBElement<ELLegitimationType> createELLegitimation(ELLegitimationType value) {
|
public JAXBElement<ELLegitimationType> createELLegitimation(ELLegitimationType value) {
|
||||||
@@ -901,8 +1053,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELObjektType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELObjektType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELObjektType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Objekt")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Objekt")
|
||||||
public JAXBElement<ELObjektType> createELObjekt(ELObjektType value) {
|
public JAXBElement<ELObjektType> createELObjekt(ELObjektType value) {
|
||||||
@@ -910,8 +1066,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELObjektdatenType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELObjektdatenType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELObjektdatenType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Objektdaten")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Objektdaten")
|
||||||
public JAXBElement<ELObjektdatenType> createELObjektdaten(ELObjektdatenType value) {
|
public JAXBElement<ELObjektdatenType> createELObjektdaten(ELObjektdatenType value) {
|
||||||
@@ -919,8 +1079,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELFlaecheType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELFlaecheType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELFlaecheType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Flaeche")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Flaeche")
|
||||||
public JAXBElement<ELFlaecheType> createELFlaeche(ELFlaecheType value) {
|
public JAXBElement<ELFlaecheType> createELFlaeche(ELFlaecheType value) {
|
||||||
@@ -928,8 +1092,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELRenteType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELRenteType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELRenteType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Rente")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Rente")
|
||||||
public JAXBElement<ELRenteType> createELRente(ELRenteType value) {
|
public JAXBElement<ELRenteType> createELRente(ELRenteType value) {
|
||||||
@@ -937,8 +1105,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELSteuerType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELSteuerType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELSteuerType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Steuer")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Steuer")
|
||||||
public JAXBElement<ELSteuerType> createELSteuer(ELSteuerType value) {
|
public JAXBElement<ELSteuerType> createELSteuer(ELSteuerType value) {
|
||||||
@@ -946,8 +1118,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELVersicherungssummeType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELVersicherungssummeType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELVersicherungssummeType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Versicherungssumme")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Versicherungssumme")
|
||||||
public JAXBElement<ELVersicherungssummeType> createELVersicherungssumme(ELVersicherungssummeType value) {
|
public JAXBElement<ELVersicherungssummeType> createELVersicherungssumme(ELVersicherungssummeType value) {
|
||||||
@@ -955,8 +1131,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELZeitraumType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELZeitraumType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELZeitraumType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Zeitraum")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-Zeitraum")
|
||||||
public JAXBElement<ELZeitraumType> createELZeitraum(ELZeitraumType value) {
|
public JAXBElement<ELZeitraumType> createELZeitraum(ELZeitraumType value) {
|
||||||
@@ -964,8 +1144,12 @@ public class ObjectFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance of {@link JAXBElement }{@code <}{@link ELKFZKennzeichenType }{@code >}}
|
* Create an instance of {@link JAXBElement }{@code <}{@link ELKFZKennzeichenType }{@code >}
|
||||||
*
|
*
|
||||||
|
* @param value
|
||||||
|
* Java instance representing xml element's value.
|
||||||
|
* @return
|
||||||
|
* the new instance of {@link JAXBElement }{@code <}{@link ELKFZKennzeichenType }{@code >}
|
||||||
*/
|
*/
|
||||||
@XmlElementDecl(namespace = "urn:omds20", name = "EL-KFZ-Kennzeichen")
|
@XmlElementDecl(namespace = "urn:omds20", name = "EL-KFZ-Kennzeichen")
|
||||||
public JAXBElement<ELKFZKennzeichenType> createELKFZKennzeichen(ELKFZKennzeichenType value) {
|
public JAXBElement<ELKFZKennzeichenType> createELKFZKennzeichen(ELKFZKennzeichenType value) {
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für PaketInhCd_Type.
|
* <p>Java-Klasse für PaketInhCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="PaketInhCd_Type">
|
* <simpleType name="PaketInhCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für PaketUmfCd_Type.
|
* <p>Java-Klasse für PaketUmfCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="PaketUmfCd_Type">
|
* <simpleType name="PaketUmfCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für PersArtCd_Type.
|
* <p>Java-Klasse für PersArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="PersArtCd_Type">
|
* <simpleType name="PersArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für PolArtCd_Type.
|
* <p>Java-Klasse für PolArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="PolArtCd_Type">
|
* <simpleType name="PolArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für PraemFristCd_Type.
|
* <p>Java-Klasse für PraemFristCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="PraemFristCd_Type">
|
* <simpleType name="PraemFristCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -127,8 +127,8 @@ public class RISIKOType {
|
|||||||
* {@link ELEntscheidungsfrageType }
|
* {@link ELEntscheidungsfrageType }
|
||||||
* {@link ELGewinnbeteiligungType }
|
* {@link ELGewinnbeteiligungType }
|
||||||
* {@link ELGrenzwertType }
|
* {@link ELGrenzwertType }
|
||||||
* {@link ELIndexType }
|
|
||||||
* {@link ELIdentifizierungType }
|
* {@link ELIdentifizierungType }
|
||||||
|
* {@link ELIndexType }
|
||||||
* {@link ELKlauselType }
|
* {@link ELKlauselType }
|
||||||
* {@link ELObjektType }
|
* {@link ELObjektType }
|
||||||
* {@link ELPraemienkorrekturType }
|
* {@link ELPraemienkorrekturType }
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für RisikoArtCd_Type.
|
* <p>Java-Klasse für RisikoArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="RisikoArtCd_Type">
|
* <simpleType name="RisikoArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für SbhArtCd_Type.
|
* <p>Java-Klasse für SbhArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="SbhArtCd_Type">
|
* <simpleType name="SbhArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für SchlArtCd_Type.
|
* <p>Java-Klasse für SchlArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="SchlArtCd_Type">
|
* <simpleType name="SchlArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für SprachCd_Type.
|
* <p>Java-Klasse für SprachCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="SprachCd_Type">
|
* <simpleType name="SprachCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für TxtArtCd_Type.
|
* <p>Java-Klasse für TxtArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="TxtArtCd_Type">
|
* <simpleType name="TxtArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -177,8 +177,8 @@ public class VERSOBJEKTType {
|
|||||||
* {@link ELBetragType }
|
* {@link ELBetragType }
|
||||||
* {@link ELEinstufungType }
|
* {@link ELEinstufungType }
|
||||||
* {@link ELEntscheidungsfrageType }
|
* {@link ELEntscheidungsfrageType }
|
||||||
* {@link ELIdentifizierungType }
|
|
||||||
* {@link ELGrenzwertType }
|
* {@link ELGrenzwertType }
|
||||||
|
* {@link ELIdentifizierungType }
|
||||||
* {@link ELTextType }
|
* {@link ELTextType }
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für VSArtCd_Type.
|
* <p>Java-Klasse für VSArtCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="VSArtCd_Type">
|
* <simpleType name="VSArtCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für VtgRolleCd_Type.
|
* <p>Java-Klasse für VtgRolleCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="VtgRolleCd_Type">
|
* <simpleType name="VtgRolleCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||||||
* <p>Java-Klasse für WaehrungsCd_Type.
|
* <p>Java-Klasse für WaehrungsCd_Type.
|
||||||
*
|
*
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||||
* <p>
|
|
||||||
* <pre>
|
* <pre>
|
||||||
* <simpleType name="WaehrungsCd_Type">
|
* <simpleType name="WaehrungsCd_Type">
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
|||||||
@@ -1,108 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakte Ebene fuer Listen mit einem oder mehreren wählbaren Werten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AListenAttribut_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AListenAttribut_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="MinAnz" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AListenAttribut_Type", propOrder = {
|
|
||||||
"values",
|
|
||||||
"minAnz"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
AttributEnumType.class,
|
|
||||||
AttributMultiEnumType.class
|
|
||||||
})
|
|
||||||
public abstract class AListenAttributType
|
|
||||||
extends AttributType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Values")
|
|
||||||
protected List<EintragSchluessellisteType> values;
|
|
||||||
@XmlElement(name = "MinAnz")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected Integer minAnz;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link EintragSchluessellisteType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<EintragSchluessellisteType> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<EintragSchluessellisteType>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der minAnz-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getMinAnz() {
|
|
||||||
return minAnz;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der minAnz-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMinAnz(Integer value) {
|
|
||||||
this.minAnz = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,74 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Basistyp für Attribute mit einem Wert
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für ASingleAttribut_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="ASingleAttribut_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Attribut_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Pflichtfeld" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "ASingleAttribut_Type", propOrder = {
|
|
||||||
"pflichtfeld"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
AttributStringType.class,
|
|
||||||
AttributIntType.class,
|
|
||||||
AttributDezimalType.class,
|
|
||||||
AttributDoubleType.class,
|
|
||||||
AttributDatumType.class
|
|
||||||
})
|
|
||||||
public abstract class ASingleAttributType
|
|
||||||
extends AttributType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Pflichtfeld")
|
|
||||||
protected Boolean pflichtfeld;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der pflichtfeld-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Boolean }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Boolean isPflichtfeld() {
|
|
||||||
return pflichtfeld;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der pflichtfeld-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Boolean }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPflichtfeld(Boolean value) {
|
|
||||||
this.pflichtfeld = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Typ zur Beschreibung abgelehnter Risiken
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AbgelehnteRisiken_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AbgelehnteRisiken_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AbgelehnteRisiken_Type")
|
|
||||||
public abstract class AbgelehnteRisikenType {
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstraktes Ereignis einer Statusänderung
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AbstraktesEreignisStatusAenderung_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AbstraktesEreignisStatusAenderung_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AbstraktesEreignisStatusAenderung_Type")
|
|
||||||
public abstract class AbstraktesEreignisStatusAenderungType {
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,66 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sicherstellung vom Typ Abtretung / Zession
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Abtretung_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Abtretung_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Sicherstellung_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Zessionar" type="{urn:omds3CommonServiceTypes-1-1-0}GlaeubigerSicherstellung_Type"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Abtretung_Type", propOrder = {
|
|
||||||
"zessionar"
|
|
||||||
})
|
|
||||||
public class AbtretungType
|
|
||||||
extends SicherstellungType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Zessionar", required = true)
|
|
||||||
protected GlaeubigerSicherstellungType zessionar;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der zessionar-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link GlaeubigerSicherstellungType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public GlaeubigerSicherstellungType getZessionar() {
|
|
||||||
return zessionar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der zessionar-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link GlaeubigerSicherstellungType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setZessionar(GlaeubigerSicherstellungType value) {
|
|
||||||
this.zessionar = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlEnum;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>Java-Klasse für AdresseArtCd_Type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
* <p>
|
|
||||||
* <pre>
|
|
||||||
* <simpleType name="AdresseArtCd_Type">
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
||||||
* <enumeration value="HA"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlType(name = "AdresseArtCd_Type")
|
|
||||||
@XmlEnum
|
|
||||||
public enum AdresseArtCdType {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Hauptadresse
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
HA;
|
|
||||||
|
|
||||||
public String value() {
|
|
||||||
return name();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static AdresseArtCdType fromValue(String v) {
|
|
||||||
return valueOf(v);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,302 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlAttribute;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ für eine Adresse mit ObjektId
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Adresse_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Adresse_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
|
||||||
* </sequence>
|
|
||||||
* <attGroup ref="{urn:omds20}Adresse_Attribute"/>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Adresse_Type", propOrder = {
|
|
||||||
"objektId"
|
|
||||||
})
|
|
||||||
public class AdresseType {
|
|
||||||
|
|
||||||
@XmlElement(name = "ObjektId", required = true)
|
|
||||||
protected ObjektIdType objektId;
|
|
||||||
@XmlAttribute(name = "Pac")
|
|
||||||
@XmlSchemaType(name = "unsignedInt")
|
|
||||||
protected Long pac;
|
|
||||||
@XmlAttribute(name = "LandesCd")
|
|
||||||
protected String landesCd;
|
|
||||||
@XmlAttribute(name = "PLZ")
|
|
||||||
protected String plz;
|
|
||||||
@XmlAttribute(name = "Ort")
|
|
||||||
protected String ort;
|
|
||||||
@XmlAttribute(name = "Strasse")
|
|
||||||
protected String strasse;
|
|
||||||
@XmlAttribute(name = "Hausnr")
|
|
||||||
protected String hausnr;
|
|
||||||
@XmlAttribute(name = "Zusatz")
|
|
||||||
protected String zusatz;
|
|
||||||
@XmlAttribute(name = "AdressID_VU")
|
|
||||||
protected String adressIDVU;
|
|
||||||
@XmlAttribute(name = "AdressID_Makler")
|
|
||||||
protected String adressIDMakler;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der objektId-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link ObjektIdType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ObjektIdType getObjektId() {
|
|
||||||
return objektId;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der objektId-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link ObjektIdType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setObjektId(ObjektIdType value) {
|
|
||||||
this.objektId = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der pac-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Long }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Long getPac() {
|
|
||||||
return pac;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der pac-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Long }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPac(Long value) {
|
|
||||||
this.pac = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der landesCd-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getLandesCd() {
|
|
||||||
return landesCd;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der landesCd-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setLandesCd(String value) {
|
|
||||||
this.landesCd = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der plz-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getPLZ() {
|
|
||||||
return plz;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der plz-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPLZ(String value) {
|
|
||||||
this.plz = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der ort-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getOrt() {
|
|
||||||
return ort;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der ort-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setOrt(String value) {
|
|
||||||
this.ort = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der strasse-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getStrasse() {
|
|
||||||
return strasse;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der strasse-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setStrasse(String value) {
|
|
||||||
this.strasse = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der hausnr-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getHausnr() {
|
|
||||||
return hausnr;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der hausnr-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setHausnr(String value) {
|
|
||||||
this.hausnr = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der zusatz-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getZusatz() {
|
|
||||||
return zusatz;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der zusatz-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setZusatz(String value) {
|
|
||||||
this.zusatz = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der adressIDVU-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getAdressIDVU() {
|
|
||||||
return adressIDVU;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der adressIDVU-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAdressIDVU(String value) {
|
|
||||||
this.adressIDVU = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der adressIDMakler-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getAdressIDMakler() {
|
|
||||||
return adressIDMakler;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der adressIDMakler-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAdressIDMakler(String value) {
|
|
||||||
this.adressIDMakler = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,101 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ein spezieller AuthorizationFilterType, der eine Anfrage dahingehend einschränkt, dass nur Ergebnisse für eine bestimmte MaklerID oder Vermnr (Vermittlernummer) zurück gegeben werden
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AgentFilter_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AgentFilter_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter">
|
|
||||||
* <choice>
|
|
||||||
* <element name="MaklerID" type="{urn:omds3CommonServiceTypes-1-1-0}MaklerID_Type"/>
|
|
||||||
* <element name="Vermnr" type="{urn:omds20}Vermnr" maxOccurs="unbounded"/>
|
|
||||||
* </choice>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AgentFilter_Type", propOrder = {
|
|
||||||
"maklerID",
|
|
||||||
"vermnr"
|
|
||||||
})
|
|
||||||
public class AgentFilterType
|
|
||||||
extends AuthorizationFilter
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "MaklerID")
|
|
||||||
protected String maklerID;
|
|
||||||
@XmlElement(name = "Vermnr")
|
|
||||||
protected List<String> vermnr;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der maklerID-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getMaklerID() {
|
|
||||||
return maklerID;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der maklerID-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMaklerID(String value) {
|
|
||||||
this.maklerID = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the vermnr 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 vermnr property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getVermnr().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<String> getVermnr() {
|
|
||||||
if (vermnr == null) {
|
|
||||||
vermnr = new ArrayList<String>();
|
|
||||||
}
|
|
||||||
return this.vermnr;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlEnum;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>Java-Klasse für Antragsart_Type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
* <p>
|
|
||||||
* <pre>
|
|
||||||
* <simpleType name="Antragsart_Type">
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
||||||
* <enumeration value="NA"/>
|
|
||||||
* <enumeration value="FW"/>
|
|
||||||
* <enumeration value="VW"/>
|
|
||||||
* <enumeration value="WK"/>
|
|
||||||
* <enumeration value="TU"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlType(name = "Antragsart_Type")
|
|
||||||
@XmlEnum
|
|
||||||
public enum AntragsartType {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Neuantrag
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
NA,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fahrzeugwechsel
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
FW,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Versicherungswechsel
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
VW,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Wechselkennzeichen
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
WK,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tarifumstellung
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
TU;
|
|
||||||
|
|
||||||
public String value() {
|
|
||||||
return name();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static AntragsartType fromValue(String v) {
|
|
||||||
return valueOf(v);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,192 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auf xsd:date basierendes Attribut mit Metadaten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributDatum_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributDatum_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
|
||||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
|
||||||
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}date" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
|
||||||
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributDatum_Type", propOrder = {
|
|
||||||
"value",
|
|
||||||
"_default",
|
|
||||||
"values",
|
|
||||||
"min",
|
|
||||||
"max"
|
|
||||||
})
|
|
||||||
public class AttributDatumType
|
|
||||||
extends ASingleAttributType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Value")
|
|
||||||
@XmlSchemaType(name = "date")
|
|
||||||
protected XMLGregorianCalendar value;
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
@XmlSchemaType(name = "date")
|
|
||||||
protected XMLGregorianCalendar _default;
|
|
||||||
@XmlElement(name = "Values")
|
|
||||||
@XmlSchemaType(name = "date")
|
|
||||||
protected List<XMLGregorianCalendar> values;
|
|
||||||
@XmlElement(name = "Min")
|
|
||||||
@XmlSchemaType(name = "date")
|
|
||||||
protected XMLGregorianCalendar min;
|
|
||||||
@XmlElement(name = "Max")
|
|
||||||
@XmlSchemaType(name = "date")
|
|
||||||
protected XMLGregorianCalendar max;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der value-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getValue() {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der value-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setValue(XMLGregorianCalendar value) {
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(XMLGregorianCalendar value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<XMLGregorianCalendar> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<XMLGregorianCalendar>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der min-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getMin() {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der min-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMin(XMLGregorianCalendar value) {
|
|
||||||
this.min = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der max-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getMax() {
|
|
||||||
return max;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der max-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMax(XMLGregorianCalendar value) {
|
|
||||||
this.max = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,186 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
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;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auf omds:decimal basierendes Attribut mit Metadaten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributDezimal_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributDezimal_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Value" type="{urn:omds20}decimal" minOccurs="0"/>
|
|
||||||
* <element name="Default" type="{urn:omds20}decimal" minOccurs="0"/>
|
|
||||||
* <element name="Values" type="{urn:omds20}decimal" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Min" type="{urn:omds20}decimal" minOccurs="0"/>
|
|
||||||
* <element name="Max" type="{urn:omds20}decimal" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributDezimal_Type", propOrder = {
|
|
||||||
"value",
|
|
||||||
"_default",
|
|
||||||
"values",
|
|
||||||
"min",
|
|
||||||
"max"
|
|
||||||
})
|
|
||||||
public class AttributDezimalType
|
|
||||||
extends ASingleAttributType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Value")
|
|
||||||
protected BigDecimal value;
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
protected BigDecimal _default;
|
|
||||||
@XmlElement(name = "Values")
|
|
||||||
protected List<BigDecimal> values;
|
|
||||||
@XmlElement(name = "Min")
|
|
||||||
protected BigDecimal min;
|
|
||||||
@XmlElement(name = "Max")
|
|
||||||
protected BigDecimal max;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der value-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BigDecimal getValue() {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der value-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setValue(BigDecimal value) {
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BigDecimal getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(BigDecimal value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<BigDecimal> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<BigDecimal>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der min-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BigDecimal getMin() {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der min-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMin(BigDecimal value) {
|
|
||||||
this.min = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der max-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BigDecimal getMax() {
|
|
||||||
return max;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der max-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMax(BigDecimal value) {
|
|
||||||
this.max = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,185 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auf xsd:double basierendes Attribut mit Metadaten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributDouble_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributDouble_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
|
||||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
|
||||||
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
|
||||||
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributDouble_Type", propOrder = {
|
|
||||||
"value",
|
|
||||||
"_default",
|
|
||||||
"values",
|
|
||||||
"min",
|
|
||||||
"max"
|
|
||||||
})
|
|
||||||
public class AttributDoubleType
|
|
||||||
extends ASingleAttributType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Value")
|
|
||||||
protected Double value;
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
protected Double _default;
|
|
||||||
@XmlElement(name = "Values", type = Double.class)
|
|
||||||
protected List<Double> values;
|
|
||||||
@XmlElement(name = "Min")
|
|
||||||
protected Double min;
|
|
||||||
@XmlElement(name = "Max")
|
|
||||||
protected Double max;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der value-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Double }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Double getValue() {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der value-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Double }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setValue(Double value) {
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Double }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Double getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Double }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(Double value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link Double }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<Double> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<Double>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der min-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Double }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Double getMin() {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der min-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Double }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMin(Double value) {
|
|
||||||
this.min = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der max-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Double }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Double getMax() {
|
|
||||||
return max;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der max-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Double }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMax(Double value) {
|
|
||||||
this.max = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,94 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Attribut mit Metadaten für Schlüssellisten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributEnum_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributEnum_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AListenAttribut_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributEnum_Type", propOrder = {
|
|
||||||
"value",
|
|
||||||
"_default"
|
|
||||||
})
|
|
||||||
public class AttributEnumType
|
|
||||||
extends AListenAttributType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Value")
|
|
||||||
protected String value;
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
protected String _default;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der value-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getValue() {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der value-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setValue(String value) {
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(String value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,185 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auf xsd:int basierendes Attribut mit Metadaten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributInt_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributInt_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
|
||||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
|
||||||
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
|
||||||
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributInt_Type", propOrder = {
|
|
||||||
"value",
|
|
||||||
"_default",
|
|
||||||
"values",
|
|
||||||
"min",
|
|
||||||
"max"
|
|
||||||
})
|
|
||||||
public class AttributIntType
|
|
||||||
extends ASingleAttributType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Value")
|
|
||||||
protected Integer value;
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
protected Integer _default;
|
|
||||||
@XmlElement(name = "Values", type = Integer.class)
|
|
||||||
protected List<Integer> values;
|
|
||||||
@XmlElement(name = "Min")
|
|
||||||
protected Integer min;
|
|
||||||
@XmlElement(name = "Max")
|
|
||||||
protected Integer max;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der value-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getValue() {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der value-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setValue(Integer value) {
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(Integer value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<Integer> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<Integer>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der min-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getMin() {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der min-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMin(Integer value) {
|
|
||||||
this.min = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der max-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getMax() {
|
|
||||||
return max;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der max-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMax(Integer value) {
|
|
||||||
this.max = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,163 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ mit Metadaten für xsd:date-Attribute
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributMetadatenDatum_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributMetadatenDatum_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
|
||||||
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}date" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
|
||||||
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributMetadatenDatum_Type", propOrder = {
|
|
||||||
"_default",
|
|
||||||
"values",
|
|
||||||
"min",
|
|
||||||
"max"
|
|
||||||
})
|
|
||||||
public class AttributMetadatenDatumType
|
|
||||||
extends AttributMetadatenType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
@XmlSchemaType(name = "date")
|
|
||||||
protected XMLGregorianCalendar _default;
|
|
||||||
@XmlElement(name = "Values")
|
|
||||||
@XmlSchemaType(name = "date")
|
|
||||||
protected List<XMLGregorianCalendar> values;
|
|
||||||
@XmlElement(name = "Min")
|
|
||||||
@XmlSchemaType(name = "date")
|
|
||||||
protected XMLGregorianCalendar min;
|
|
||||||
@XmlElement(name = "Max")
|
|
||||||
@XmlSchemaType(name = "date")
|
|
||||||
protected XMLGregorianCalendar max;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(XMLGregorianCalendar value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<XMLGregorianCalendar> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<XMLGregorianCalendar>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der min-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getMin() {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der min-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMin(XMLGregorianCalendar value) {
|
|
||||||
this.min = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der max-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getMax() {
|
|
||||||
return max;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der max-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMax(XMLGregorianCalendar value) {
|
|
||||||
this.max = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,158 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
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 mit Metadaten für omds:decimal-Attribute
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributMetadatenDezimal_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributMetadatenDezimal_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Default" type="{urn:omds20}decimal" minOccurs="0"/>
|
|
||||||
* <element name="Values" type="{urn:omds20}decimal" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Min" type="{urn:omds20}decimal" minOccurs="0"/>
|
|
||||||
* <element name="Max" type="{urn:omds20}decimal" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributMetadatenDezimal_Type", propOrder = {
|
|
||||||
"_default",
|
|
||||||
"values",
|
|
||||||
"min",
|
|
||||||
"max"
|
|
||||||
})
|
|
||||||
public class AttributMetadatenDezimalType
|
|
||||||
extends AttributMetadatenType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
protected BigDecimal _default;
|
|
||||||
@XmlElement(name = "Values")
|
|
||||||
protected List<BigDecimal> values;
|
|
||||||
@XmlElement(name = "Min")
|
|
||||||
protected BigDecimal min;
|
|
||||||
@XmlElement(name = "Max")
|
|
||||||
protected BigDecimal max;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BigDecimal getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(BigDecimal value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<BigDecimal> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<BigDecimal>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der min-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BigDecimal getMin() {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der min-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMin(BigDecimal value) {
|
|
||||||
this.min = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der max-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BigDecimal getMax() {
|
|
||||||
return max;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der max-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMax(BigDecimal value) {
|
|
||||||
this.max = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,101 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ mit Metadaten für Schlüssellisten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributMetadatenEnum_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributMetadatenEnum_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributMetadatenEnum_Type", propOrder = {
|
|
||||||
"_default",
|
|
||||||
"values"
|
|
||||||
})
|
|
||||||
public class AttributMetadatenEnumType
|
|
||||||
extends AttributMetadatenType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
protected String _default;
|
|
||||||
@XmlElement(name = "Values")
|
|
||||||
protected List<EintragSchluessellisteType> values;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(String value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link EintragSchluessellisteType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<EintragSchluessellisteType> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<EintragSchluessellisteType>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,157 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ mit Metadaten für xsd:int-Attribute
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributMetadatenInt_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributMetadatenInt_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
|
||||||
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
|
||||||
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributMetadatenInt_Type", propOrder = {
|
|
||||||
"_default",
|
|
||||||
"values",
|
|
||||||
"min",
|
|
||||||
"max"
|
|
||||||
})
|
|
||||||
public class AttributMetadatenIntType
|
|
||||||
extends AttributMetadatenType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
protected Integer _default;
|
|
||||||
@XmlElement(name = "Values", type = Integer.class)
|
|
||||||
protected List<Integer> values;
|
|
||||||
@XmlElement(name = "Min")
|
|
||||||
protected Integer min;
|
|
||||||
@XmlElement(name = "Max")
|
|
||||||
protected Integer max;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(Integer value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<Integer> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<Integer>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der min-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getMin() {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der min-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMin(Integer value) {
|
|
||||||
this.min = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der max-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getMax() {
|
|
||||||
return max;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der max-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMax(Integer value) {
|
|
||||||
this.max = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,188 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ mit Metadaten für xsd:string-Attribute
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributMetadatenString_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributMetadatenString_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
||||||
* <element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
||||||
* <element name="Regex" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributMetadatenString_Type", propOrder = {
|
|
||||||
"_default",
|
|
||||||
"values",
|
|
||||||
"minLaenge",
|
|
||||||
"maxLaenge",
|
|
||||||
"regex"
|
|
||||||
})
|
|
||||||
public class AttributMetadatenStringType
|
|
||||||
extends AttributMetadatenType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
protected String _default;
|
|
||||||
@XmlElement(name = "Values")
|
|
||||||
protected List<String> values;
|
|
||||||
@XmlElement(name = "MinLaenge")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected Integer minLaenge;
|
|
||||||
@XmlElement(name = "MaxLaenge")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected Integer maxLaenge;
|
|
||||||
@XmlElement(name = "Regex")
|
|
||||||
protected String regex;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(String value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<String> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<String>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der minLaenge-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getMinLaenge() {
|
|
||||||
return minLaenge;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der minLaenge-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMinLaenge(Integer value) {
|
|
||||||
this.minLaenge = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der maxLaenge-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getMaxLaenge() {
|
|
||||||
return maxLaenge;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der maxLaenge-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMaxLaenge(Integer value) {
|
|
||||||
this.maxLaenge = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der regex-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getRegex() {
|
|
||||||
return regex;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der regex-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setRegex(String value) {
|
|
||||||
this.regex = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,148 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Basistyp für Metadaten von Attributen
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributMetadaten_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributMetadaten_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Attribut" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
|
||||||
* <element name="Aenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
|
||||||
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributMetadaten_Type", propOrder = {
|
|
||||||
"attribut",
|
|
||||||
"aenderbar",
|
|
||||||
"bezeichnung",
|
|
||||||
"beschreibungTxt"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
AttributMetadatenStringType.class,
|
|
||||||
AttributMetadatenIntType.class,
|
|
||||||
AttributMetadatenDezimalType.class,
|
|
||||||
AttributMetadatenDatumType.class,
|
|
||||||
AttributMetadatenEnumType.class
|
|
||||||
})
|
|
||||||
public abstract class AttributMetadatenType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Attribut", required = true)
|
|
||||||
protected Object attribut;
|
|
||||||
@XmlElement(name = "Aenderbar")
|
|
||||||
protected boolean aenderbar;
|
|
||||||
@XmlElement(name = "Bezeichnung")
|
|
||||||
protected String bezeichnung;
|
|
||||||
@XmlElement(name = "BeschreibungTxt")
|
|
||||||
protected String beschreibungTxt;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der attribut-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Object }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Object getAttribut() {
|
|
||||||
return attribut;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der attribut-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Object }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAttribut(Object value) {
|
|
||||||
this.attribut = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der aenderbar-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public boolean isAenderbar() {
|
|
||||||
return aenderbar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der aenderbar-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAenderbar(boolean value) {
|
|
||||||
this.aenderbar = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getBezeichnung() {
|
|
||||||
return bezeichnung;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBezeichnung(String value) {
|
|
||||||
this.bezeichnung = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getBeschreibungTxt() {
|
|
||||||
return beschreibungTxt;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBeschreibungTxt(String value) {
|
|
||||||
this.beschreibungTxt = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.math.BigInteger;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Message an einem Attribut
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributMsg_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributMsg_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="ErrorType">
|
|
||||||
* <simpleType>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
|
|
||||||
* <pattern value="1"/>
|
|
||||||
* <pattern value="2"/>
|
|
||||||
* <pattern value="3"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </element>
|
|
||||||
* <element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
|
|
||||||
* <element name="ErrorMsg" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributMsg_Type", propOrder = {
|
|
||||||
"errorType",
|
|
||||||
"errorCode",
|
|
||||||
"errorMsg"
|
|
||||||
})
|
|
||||||
public class AttributMsgType {
|
|
||||||
|
|
||||||
@XmlElement(name = "ErrorType", required = true)
|
|
||||||
protected BigInteger errorType;
|
|
||||||
@XmlElement(name = "ErrorCode")
|
|
||||||
protected BigInteger errorCode;
|
|
||||||
@XmlElement(name = "ErrorMsg", required = true)
|
|
||||||
protected String errorMsg;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der errorType-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BigInteger }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BigInteger getErrorType() {
|
|
||||||
return errorType;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der errorType-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BigInteger }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setErrorType(BigInteger value) {
|
|
||||||
this.errorType = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der errorCode-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BigInteger }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BigInteger getErrorCode() {
|
|
||||||
return errorCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der errorCode-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BigInteger }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setErrorCode(BigInteger value) {
|
|
||||||
this.errorCode = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der errorMsg-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getErrorMsg() {
|
|
||||||
return errorMsg;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der errorMsg-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setErrorMsg(String value) {
|
|
||||||
this.errorMsg = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,134 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Attribut mit Metadaten für Schlüssellisten, bei dem mehrere Einträge auswählbar sind.
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributMultiEnum_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributMultiEnum_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AListenAttribut_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="MaxAnz" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributMultiEnum_Type", propOrder = {
|
|
||||||
"value",
|
|
||||||
"_default",
|
|
||||||
"maxAnz"
|
|
||||||
})
|
|
||||||
public class AttributMultiEnumType
|
|
||||||
extends AListenAttributType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Value")
|
|
||||||
protected List<String> value;
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
protected List<String> _default;
|
|
||||||
@XmlElement(name = "MaxAnz")
|
|
||||||
protected Object maxAnz;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the value 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 value property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValue().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<String> getValue() {
|
|
||||||
if (value == null) {
|
|
||||||
value = new ArrayList<String>();
|
|
||||||
}
|
|
||||||
return this.value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the default 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 default property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getDefault().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<String> getDefault() {
|
|
||||||
if (_default == null) {
|
|
||||||
_default = new ArrayList<String>();
|
|
||||||
}
|
|
||||||
return this._default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der maxAnz-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Object }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Object getMaxAnz() {
|
|
||||||
return maxAnz;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der maxAnz-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Object }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMaxAnz(Object value) {
|
|
||||||
this.maxAnz = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,216 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Auf xsd:string basierendes Attribut mit Metadaten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AttributString_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AttributString_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ASingleAttribut_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Regex" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
||||||
* <element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
||||||
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AttributString_Type", propOrder = {
|
|
||||||
"value",
|
|
||||||
"_default",
|
|
||||||
"regex",
|
|
||||||
"maxLaenge",
|
|
||||||
"minLaenge",
|
|
||||||
"values"
|
|
||||||
})
|
|
||||||
public class AttributStringType
|
|
||||||
extends ASingleAttributType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Value")
|
|
||||||
protected String value;
|
|
||||||
@XmlElement(name = "Default")
|
|
||||||
protected String _default;
|
|
||||||
@XmlElement(name = "Regex")
|
|
||||||
protected String regex;
|
|
||||||
@XmlElement(name = "MaxLaenge")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected Integer maxLaenge;
|
|
||||||
@XmlElement(name = "MinLaenge")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected Integer minLaenge;
|
|
||||||
@XmlElement(name = "Values")
|
|
||||||
protected List<String> values;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der value-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getValue() {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der value-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setValue(String value) {
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der default-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getDefault() {
|
|
||||||
return _default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der default-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDefault(String value) {
|
|
||||||
this._default = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der regex-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getRegex() {
|
|
||||||
return regex;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der regex-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setRegex(String value) {
|
|
||||||
this.regex = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der maxLaenge-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getMaxLaenge() {
|
|
||||||
return maxLaenge;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der maxLaenge-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMaxLaenge(Integer value) {
|
|
||||||
this.maxLaenge = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der minLaenge-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getMinLaenge() {
|
|
||||||
return minLaenge;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der minLaenge-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMinLaenge(Integer value) {
|
|
||||||
this.minLaenge = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the values 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 values property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getValues().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<String> getValues() {
|
|
||||||
if (values == null) {
|
|
||||||
values = new ArrayList<String>();
|
|
||||||
}
|
|
||||||
return this.values;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,154 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Basistyp für Attribute die Metadaten enthalten können (feiner Unterschied zu AttributMetadaten_Type)
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Attribut_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Attribut_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Aenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
|
||||||
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Msg" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMsg_Type" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Attribut_Type", propOrder = {
|
|
||||||
"aenderbar",
|
|
||||||
"bezeichnung",
|
|
||||||
"beschreibungTxt",
|
|
||||||
"msg"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
ASingleAttributType.class,
|
|
||||||
AListenAttributType.class,
|
|
||||||
RaucherType.class
|
|
||||||
})
|
|
||||||
public abstract class AttributType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Aenderbar")
|
|
||||||
protected Boolean aenderbar;
|
|
||||||
@XmlElement(name = "Bezeichnung")
|
|
||||||
protected String bezeichnung;
|
|
||||||
@XmlElement(name = "BeschreibungTxt")
|
|
||||||
protected String beschreibungTxt;
|
|
||||||
@XmlElement(name = "Msg")
|
|
||||||
protected AttributMsgType msg;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der aenderbar-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Boolean }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Boolean isAenderbar() {
|
|
||||||
return aenderbar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der aenderbar-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Boolean }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAenderbar(Boolean value) {
|
|
||||||
this.aenderbar = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getBezeichnung() {
|
|
||||||
return bezeichnung;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBezeichnung(String value) {
|
|
||||||
this.bezeichnung = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getBeschreibungTxt() {
|
|
||||||
return beschreibungTxt;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBeschreibungTxt(String value) {
|
|
||||||
this.beschreibungTxt = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der msg-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link AttributMsgType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public AttributMsgType getMsg() {
|
|
||||||
return msg;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der msg-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link AttributMsgType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMsg(AttributMsgType value) {
|
|
||||||
this.msg = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Definiert einen abstrakten Filter um bestimmte spezifische Elemente herauszufiltern
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AuthorizationFilter complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AuthorizationFilter">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AuthorizationFilter")
|
|
||||||
@XmlSeeAlso({
|
|
||||||
AgentFilterType.class
|
|
||||||
})
|
|
||||||
public abstract class AuthorizationFilter {
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Metadaten einer Autorisierung, die asynchron geleistet wird.
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AutorisierungAsync_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AutorisierungAsync_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierung_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Geleistet" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AutorisierungAsync_Type", propOrder = {
|
|
||||||
"geleistet"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
at.vvo.omds.types.omds3Types.r1_7_0.on1basis.ProzessDokumentStatusType.Autorisierungen.class
|
|
||||||
})
|
|
||||||
public class AutorisierungAsyncType
|
|
||||||
extends AutorisierungType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Geleistet")
|
|
||||||
@XmlSchemaType(name = "dateTime")
|
|
||||||
protected XMLGregorianCalendar geleistet;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der geleistet-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getGeleistet() {
|
|
||||||
return geleistet;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der geleistet-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setGeleistet(XMLGregorianCalendar value) {
|
|
||||||
this.geleistet = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,153 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ zur Übermittlung von Metadaten einer Autorisierung (z.B. einer elektronischen Unterschrift)
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Autorisierung_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Autorisierung_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="AutorisierungsId" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
|
||||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
|
|
||||||
* <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Autorisierung_Type", propOrder = {
|
|
||||||
"autorisierungsId",
|
|
||||||
"person",
|
|
||||||
"rolle",
|
|
||||||
"autorisierungsart"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
at.vvo.omds.types.omds3Types.r1_7_0.common.ProzessDokumentType.Autorisierungen.class,
|
|
||||||
AutorisierungAsyncType.class
|
|
||||||
})
|
|
||||||
public class AutorisierungType {
|
|
||||||
|
|
||||||
@XmlElement(name = "AutorisierungsId")
|
|
||||||
protected Object autorisierungsId;
|
|
||||||
@XmlElement(name = "Person", required = true)
|
|
||||||
protected PersonType person;
|
|
||||||
@XmlElement(name = "Rolle", required = true)
|
|
||||||
protected String rolle;
|
|
||||||
@XmlElement(name = "Autorisierungsart", required = true)
|
|
||||||
protected AutorisierungsartType autorisierungsart;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der autorisierungsId-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Object }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Object getAutorisierungsId() {
|
|
||||||
return autorisierungsId;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der autorisierungsId-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Object }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAutorisierungsId(Object value) {
|
|
||||||
this.autorisierungsId = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der person-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link PersonType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public PersonType getPerson() {
|
|
||||||
return person;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der person-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link PersonType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPerson(PersonType value) {
|
|
||||||
this.person = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der rolle-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getRolle() {
|
|
||||||
return rolle;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der rolle-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setRolle(String value) {
|
|
||||||
this.rolle = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der autorisierungsart-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link AutorisierungsartType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public AutorisierungsartType getAutorisierungsart() {
|
|
||||||
return autorisierungsart;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der autorisierungsart-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link AutorisierungsartType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAutorisierungsart(AutorisierungsartType value) {
|
|
||||||
this.autorisierungsart = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,155 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ zur Übermittlung von Anforderungen an eine Autorisierung (z.B. einer elektronischen Unterschrift)
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AutorisierungsAnforderung_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AutorisierungsAnforderung_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="AutorisierungsId" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
|
||||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
|
|
||||||
* <element name="Rolle" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* <element name="Autorisierungsart" type="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type" maxOccurs="unbounded"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AutorisierungsAnforderung_Type", propOrder = {
|
|
||||||
"autorisierungsId",
|
|
||||||
"person",
|
|
||||||
"rolle",
|
|
||||||
"autorisierungsart"
|
|
||||||
})
|
|
||||||
public class AutorisierungsAnforderungType {
|
|
||||||
|
|
||||||
@XmlElement(name = "AutorisierungsId")
|
|
||||||
protected Object autorisierungsId;
|
|
||||||
@XmlElement(name = "Person", required = true)
|
|
||||||
protected PersonType person;
|
|
||||||
@XmlElement(name = "Rolle", required = true)
|
|
||||||
protected String rolle;
|
|
||||||
@XmlElement(name = "Autorisierungsart", required = true)
|
|
||||||
protected List<AutorisierungsartType> autorisierungsart;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der autorisierungsId-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Object }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Object getAutorisierungsId() {
|
|
||||||
return autorisierungsId;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der autorisierungsId-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Object }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAutorisierungsId(Object value) {
|
|
||||||
this.autorisierungsId = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der person-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link PersonType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public PersonType getPerson() {
|
|
||||||
return person;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der person-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link PersonType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPerson(PersonType value) {
|
|
||||||
this.person = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der rolle-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getRolle() {
|
|
||||||
return rolle;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der rolle-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setRolle(String value) {
|
|
||||||
this.rolle = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the autorisierungsart 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 autorisierungsart property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getAutorisierungsart().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link AutorisierungsartType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<AutorisierungsartType> getAutorisierungsart() {
|
|
||||||
if (autorisierungsart == null) {
|
|
||||||
autorisierungsart = new ArrayList<AutorisierungsartType>();
|
|
||||||
}
|
|
||||||
return this.autorisierungsart;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Diese Autorisierungsart repräsentiert eine traditionelle physische Unterschrift auf Papier
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AutorisierungsartClientsidePhysischeUnterschrift complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AutorisierungsartClientsidePhysischeUnterschrift">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AutorisierungsartClientside_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AutorisierungsartClientsidePhysischeUnterschrift")
|
|
||||||
public class AutorisierungsartClientsidePhysischeUnterschrift
|
|
||||||
extends AutorisierungsartClientsideType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ein abstrakter Typ für Client-seitige Autorisierungsarten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AutorisierungsartClientside_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AutorisierungsartClientside_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AutorisierungsartClientside_Type")
|
|
||||||
@XmlSeeAlso({
|
|
||||||
AutorisierungsartClientsidePhysischeUnterschrift.class
|
|
||||||
})
|
|
||||||
public abstract class AutorisierungsartClientsideType
|
|
||||||
extends AutorisierungsartType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Diese Autorisierungsart repräsentiert eine traditionelle physische Unterschrift auf Papier
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AutorisierungsartPhysischeUnterschrift complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AutorisierungsartPhysischeUnterschrift">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AutorisierungsartPhysischeUnterschrift")
|
|
||||||
public class AutorisierungsartPhysischeUnterschrift
|
|
||||||
extends AutorisierungsartType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ein abstrakter Typ für Server-seitige Autorisierungsarten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für AutorisierungsartServerside_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="AutorisierungsartServerside_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Autorisierungsart_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "AutorisierungsartServerside_Type")
|
|
||||||
public abstract class AutorisierungsartServersideType
|
|
||||||
extends AutorisierungsartType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ein abstrakter Obertyp fuer alle Autorisierungsarten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Autorisierungsart_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Autorisierungsart_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Autorisierungsart_Type")
|
|
||||||
@XmlSeeAlso({
|
|
||||||
AutorisierungsartPhysischeUnterschrift.class
|
|
||||||
})
|
|
||||||
public abstract class AutorisierungsartType {
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,152 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* beschreibt eine Bankverbindug
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Bankverbindung_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Bankverbindung_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Kontoinhaber" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* <element name="Bank" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="BIC" type="{urn:omds3CommonServiceTypes-1-1-0}BIC_Type" minOccurs="0"/>
|
|
||||||
* <element name="IBAN" type="{urn:omds3CommonServiceTypes-1-1-0}IBAN_Type"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Bankverbindung_Type", propOrder = {
|
|
||||||
"kontoinhaber",
|
|
||||||
"bank",
|
|
||||||
"bic",
|
|
||||||
"iban"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
PersBankverbindungType.class
|
|
||||||
})
|
|
||||||
public class BankverbindungType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Kontoinhaber", required = true)
|
|
||||||
protected String kontoinhaber;
|
|
||||||
@XmlElement(name = "Bank")
|
|
||||||
protected String bank;
|
|
||||||
@XmlElement(name = "BIC")
|
|
||||||
protected String bic;
|
|
||||||
@XmlElement(name = "IBAN", required = true)
|
|
||||||
protected String iban;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der kontoinhaber-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getKontoinhaber() {
|
|
||||||
return kontoinhaber;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der kontoinhaber-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setKontoinhaber(String value) {
|
|
||||||
this.kontoinhaber = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der bank-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getBank() {
|
|
||||||
return bank;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der bank-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBank(String value) {
|
|
||||||
this.bank = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der bic-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getBIC() {
|
|
||||||
return bic;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der bic-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBIC(String value) {
|
|
||||||
this.bic = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der iban-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getIBAN() {
|
|
||||||
return iban;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der iban-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setIBAN(String value) {
|
|
||||||
this.iban = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,164 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Typ für alle Gemeinsamkeiten von Produktbausteinen
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für BasisProduktbaustein_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="BasisProduktbaustein_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Bedingungen" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Meldungen" type="{urn:omds3CommonServiceTypes-1-1-0}ServiceFault" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "BasisProduktbaustein_Type", propOrder = {
|
|
||||||
"id",
|
|
||||||
"bezeichnung",
|
|
||||||
"bedingungen",
|
|
||||||
"meldungen"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
ProduktbausteinType.class
|
|
||||||
})
|
|
||||||
public abstract class BasisProduktbausteinType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Id")
|
|
||||||
protected String id;
|
|
||||||
@XmlElement(name = "Bezeichnung")
|
|
||||||
protected String bezeichnung;
|
|
||||||
@XmlElement(name = "Bedingungen")
|
|
||||||
protected List<String> bedingungen;
|
|
||||||
@XmlElement(name = "Meldungen")
|
|
||||||
protected List<ServiceFault> meldungen;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der id-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der id-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setId(String value) {
|
|
||||||
this.id = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getBezeichnung() {
|
|
||||||
return bezeichnung;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBezeichnung(String value) {
|
|
||||||
this.bezeichnung = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the bedingungen 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 bedingungen property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getBedingungen().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<String> getBedingungen() {
|
|
||||||
if (bedingungen == null) {
|
|
||||||
bedingungen = new ArrayList<String>();
|
|
||||||
}
|
|
||||||
return this.bedingungen;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the meldungen 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 meldungen property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getMeldungen().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link ServiceFault }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<ServiceFault> getMeldungen() {
|
|
||||||
if (meldungen == null) {
|
|
||||||
meldungen = new ArrayList<ServiceFault>();
|
|
||||||
}
|
|
||||||
return this.meldungen;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlEnum;
|
|
||||||
import javax.xml.bind.annotation.XmlEnumValue;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>Java-Klasse für Berechnungsvariante_Type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
* <p>
|
|
||||||
* <pre>
|
|
||||||
* <simpleType name="Berechnungsvariante_Type">
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
||||||
* <enumeration value="basic"/>
|
|
||||||
* <enumeration value="medium"/>
|
|
||||||
* <enumeration value="top"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlType(name = "Berechnungsvariante_Type")
|
|
||||||
@XmlEnum
|
|
||||||
public enum BerechnungsvarianteType {
|
|
||||||
|
|
||||||
@XmlEnumValue("basic")
|
|
||||||
BASIC("basic"),
|
|
||||||
@XmlEnumValue("medium")
|
|
||||||
MEDIUM("medium"),
|
|
||||||
@XmlEnumValue("top")
|
|
||||||
TOP("top");
|
|
||||||
private final String value;
|
|
||||||
|
|
||||||
BerechnungsvarianteType(String v) {
|
|
||||||
value = v;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String value() {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static BerechnungsvarianteType fromValue(String v) {
|
|
||||||
for (BerechnungsvarianteType c: BerechnungsvarianteType.values()) {
|
|
||||||
if (c.value.equals(v)) {
|
|
||||||
return c;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
throw new IllegalArgumentException(v);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ für die Meldung von Personen, die an einem Vertrag beteiligt sind
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für BeteiligtePersonVertrag_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="BeteiligtePersonVertrag_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Lfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
|
||||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Person"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "BeteiligtePersonVertrag_Type", propOrder = {
|
|
||||||
"lfnr",
|
|
||||||
"person"
|
|
||||||
})
|
|
||||||
public class BeteiligtePersonVertragType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Lfnr")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected int lfnr;
|
|
||||||
@XmlElement(name = "Person", required = true)
|
|
||||||
protected PersonType person;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der lfnr-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public int getLfnr() {
|
|
||||||
return lfnr;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der lfnr-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setLfnr(int value) {
|
|
||||||
this.lfnr = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Objekt zur Übermittlung von Personendaten ähnlich zu omds:PERSON, aber Personennr ist nicht Pflichtfeld. Kann Adressdaten enthalten.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link PersonType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public PersonType getPerson() {
|
|
||||||
return person;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der person-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link PersonType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPerson(PersonType value) {
|
|
||||||
this.person = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bezugsberechtigung gesetzliche Erben
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für BezugsberechtigungGesetzlicheErben_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="BezugsberechtigungGesetzlicheErben_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "BezugsberechtigungGesetzlicheErben_Type")
|
|
||||||
public class BezugsberechtigungGesetzlicheErbenType
|
|
||||||
extends BezugsberechtigungType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,66 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bezugsberechtigung Individuell
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für BezugsberechtigungIndividuell complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="BezugsberechtigungIndividuell">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Beschreibung" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "BezugsberechtigungIndividuell", propOrder = {
|
|
||||||
"beschreibung"
|
|
||||||
})
|
|
||||||
public class BezugsberechtigungIndividuell
|
|
||||||
extends BezugsberechtigungType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Beschreibung", required = true)
|
|
||||||
protected String beschreibung;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der beschreibung-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getBeschreibung() {
|
|
||||||
return beschreibung;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der beschreibung-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBeschreibung(String value) {
|
|
||||||
this.beschreibung = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,93 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bezugsberechtigung namentlich
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für BezugsberechtigungNamentlich complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="BezugsberechtigungNamentlich">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Unwiderruflich" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
|
||||||
* <element name="Personen" type="{urn:omds3CommonServiceTypes-1-1-0}PersonNamentlichesBezugsrecht_Type" maxOccurs="unbounded"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "BezugsberechtigungNamentlich", propOrder = {
|
|
||||||
"unwiderruflich",
|
|
||||||
"personen"
|
|
||||||
})
|
|
||||||
public class BezugsberechtigungNamentlich
|
|
||||||
extends BezugsberechtigungType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Unwiderruflich")
|
|
||||||
protected boolean unwiderruflich;
|
|
||||||
@XmlElement(name = "Personen", required = true)
|
|
||||||
protected List<PersonNamentlichesBezugsrechtType> personen;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der unwiderruflich-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public boolean isUnwiderruflich() {
|
|
||||||
return unwiderruflich;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der unwiderruflich-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setUnwiderruflich(boolean value) {
|
|
||||||
this.unwiderruflich = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the personen property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* This accessor method returns a reference to the live list,
|
|
||||||
* not a snapshot. Therefore any modification you make to the
|
|
||||||
* returned list will be present inside the JAXB object.
|
|
||||||
* This is why there is not a <CODE>set</CODE> method for the personen property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getPersonen().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link PersonNamentlichesBezugsrechtType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<PersonNamentlichesBezugsrechtType> getPersonen() {
|
|
||||||
if (personen == null) {
|
|
||||||
personen = new ArrayList<PersonNamentlichesBezugsrechtType>();
|
|
||||||
}
|
|
||||||
return this.personen;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bezugsberechtigung testamentarische Erben
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für BezugsberechtigungTestamentarischeErben_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="BezugsberechtigungTestamentarischeErben_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "BezugsberechtigungTestamentarischeErben_Type")
|
|
||||||
public class BezugsberechtigungTestamentarischeErbenType
|
|
||||||
extends BezugsberechtigungType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Type Bezugsrecht, von diesem erben die unterschiedlichen Typen: Gesetzliche Erben, Überbringer, Namentlich, Individuell
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Bezugsberechtigung_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Bezugsberechtigung_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Art">
|
|
||||||
* <simpleType>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
|
||||||
* <enumeration value="0"/>
|
|
||||||
* <enumeration value="1"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </element>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Bezugsberechtigung_Type", propOrder = {
|
|
||||||
"art"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
BezugsberechtigungGesetzlicheErbenType.class,
|
|
||||||
BezugsberechtigungTestamentarischeErbenType.class,
|
|
||||||
BezugsberechtigungUeberbringerType.class,
|
|
||||||
BezugsberechtigungNamentlich.class,
|
|
||||||
BezugsberechtigungVersicherungsnehmerType.class,
|
|
||||||
BezugsberechtigungVersichertePersonType.class,
|
|
||||||
BezugsberechtigungIndividuell.class
|
|
||||||
})
|
|
||||||
public abstract class BezugsberechtigungType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Art")
|
|
||||||
protected short art;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der art-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public short getArt() {
|
|
||||||
return art;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der art-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setArt(short value) {
|
|
||||||
this.art = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bezugsberechtigung Überbringer
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für BezugsberechtigungUeberbringer_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="BezugsberechtigungUeberbringer_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "BezugsberechtigungUeberbringer_Type")
|
|
||||||
public class BezugsberechtigungUeberbringerType
|
|
||||||
extends BezugsberechtigungType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bezugsberechtigung VersichertePerson
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für BezugsberechtigungVersichertePerson_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="BezugsberechtigungVersichertePerson_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "BezugsberechtigungVersichertePerson_Type")
|
|
||||||
public class BezugsberechtigungVersichertePersonType
|
|
||||||
extends BezugsberechtigungType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bezugsberechtigung Versicherungsnehmer
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für BezugsberechtigungVersicherungsnehmer_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="BezugsberechtigungVersicherungsnehmer_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Bezugsberechtigung_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "BezugsberechtigungVersicherungsnehmer_Type")
|
|
||||||
public class BezugsberechtigungVersicherungsnehmerType
|
|
||||||
extends BezugsberechtigungType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import at.vvo.omds.types.omds2Types.v2_14.PERSONType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Type Bezugsrecht fuer Kfz
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Bezugsrecht_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Bezugsrecht_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element ref="{urn:omds20}PERSON"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Bezugsrecht_Type", propOrder = {
|
|
||||||
"person"
|
|
||||||
})
|
|
||||||
public class BezugsrechtType {
|
|
||||||
|
|
||||||
@XmlElement(name = "PERSON", namespace = "urn:omds20", required = true)
|
|
||||||
protected PERSONType person;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der person-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link PERSONType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public PERSONType getPERSON() {
|
|
||||||
return person;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der person-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link PERSONType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPERSON(PERSONType value) {
|
|
||||||
this.person = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,157 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Type Bonus Malus System
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für BonusMalusSystem_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="BonusMalusSystem_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="BonusMalusVorversicherung" type="{urn:omds3CommonServiceTypes-1-1-0}BonusMalusVorversicherung_Type"/>
|
|
||||||
* <element name="Versicherungsgesellschaft" type="{urn:omds3CommonServiceTypes-1-1-0}Versicherungsgesellschaft_Type" minOccurs="0"/>
|
|
||||||
* <element name="Polizzennummer" minOccurs="0">
|
|
||||||
* <simpleType>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
||||||
* <minLength value="1"/>
|
|
||||||
* <maxLength value="15"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </element>
|
|
||||||
* <element name="OffeneSchaeden" type="{urn:omds3CommonServiceTypes-1-1-0}OffeneSchaeden_Type" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "BonusMalusSystem_Type", propOrder = {
|
|
||||||
"bonusMalusVorversicherung",
|
|
||||||
"versicherungsgesellschaft",
|
|
||||||
"polizzennummer",
|
|
||||||
"offeneSchaeden"
|
|
||||||
})
|
|
||||||
public class BonusMalusSystemType {
|
|
||||||
|
|
||||||
@XmlElement(name = "BonusMalusVorversicherung", required = true)
|
|
||||||
@XmlSchemaType(name = "string")
|
|
||||||
protected BonusMalusVorversicherungType bonusMalusVorversicherung;
|
|
||||||
@XmlElement(name = "Versicherungsgesellschaft")
|
|
||||||
protected String versicherungsgesellschaft;
|
|
||||||
@XmlElement(name = "Polizzennummer")
|
|
||||||
protected String polizzennummer;
|
|
||||||
@XmlElement(name = "OffeneSchaeden")
|
|
||||||
protected OffeneSchaedenType offeneSchaeden;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der bonusMalusVorversicherung-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BonusMalusVorversicherungType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BonusMalusVorversicherungType getBonusMalusVorversicherung() {
|
|
||||||
return bonusMalusVorversicherung;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der bonusMalusVorversicherung-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BonusMalusVorversicherungType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBonusMalusVorversicherung(BonusMalusVorversicherungType value) {
|
|
||||||
this.bonusMalusVorversicherung = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der versicherungsgesellschaft-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getVersicherungsgesellschaft() {
|
|
||||||
return versicherungsgesellschaft;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der versicherungsgesellschaft-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setVersicherungsgesellschaft(String value) {
|
|
||||||
this.versicherungsgesellschaft = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der polizzennummer-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getPolizzennummer() {
|
|
||||||
return polizzennummer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der polizzennummer-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPolizzennummer(String value) {
|
|
||||||
this.polizzennummer = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der offeneSchaeden-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link OffeneSchaedenType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public OffeneSchaedenType getOffeneSchaeden() {
|
|
||||||
return offeneSchaeden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der offeneSchaeden-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link OffeneSchaedenType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setOffeneSchaeden(OffeneSchaedenType value) {
|
|
||||||
this.offeneSchaeden = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlEnum;
|
|
||||||
import javax.xml.bind.annotation.XmlEnumValue;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>Java-Klasse für BonusMalusVorversicherung_Type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
* <p>
|
|
||||||
* <pre>
|
|
||||||
* <simpleType name="BonusMalusVorversicherung_Type">
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
||||||
* <enumeration value="Ohne Vorversicherung"/>
|
|
||||||
* <enumeration value="Mit Vorversicherung"/>
|
|
||||||
* <enumeration value="BM-Übernahme von Angehörigen"/>
|
|
||||||
* <enumeration value="BM-Übernahme vom Dienstgeber"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlType(name = "BonusMalusVorversicherung_Type")
|
|
||||||
@XmlEnum
|
|
||||||
public enum BonusMalusVorversicherungType {
|
|
||||||
|
|
||||||
@XmlEnumValue("Ohne Vorversicherung")
|
|
||||||
OHNE_VORVERSICHERUNG("Ohne Vorversicherung"),
|
|
||||||
@XmlEnumValue("Mit Vorversicherung")
|
|
||||||
MIT_VORVERSICHERUNG("Mit Vorversicherung"),
|
|
||||||
@XmlEnumValue("BM-\u00dcbernahme von Angeh\u00f6rigen")
|
|
||||||
BM_ÜBERNAHME_VON_ANGEHÖRIGEN("BM-\u00dcbernahme von Angeh\u00f6rigen"),
|
|
||||||
@XmlEnumValue("BM-\u00dcbernahme vom Dienstgeber")
|
|
||||||
BM_ÜBERNAHME_VOM_DIENSTGEBER("BM-\u00dcbernahme vom Dienstgeber");
|
|
||||||
private final String value;
|
|
||||||
|
|
||||||
BonusMalusVorversicherungType(String v) {
|
|
||||||
value = v;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String value() {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static BonusMalusVorversicherungType fromValue(String v) {
|
|
||||||
for (BonusMalusVorversicherungType c: BonusMalusVorversicherungType.values()) {
|
|
||||||
if (c.value.equals(v)) {
|
|
||||||
return c;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
throw new IllegalArgumentException(v);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.CreateFormRequest;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.SubmitFormRequest;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.BOAProcessRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.FetchPolicyRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.StartPolicyChangeRequest;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstakter Typ fuer Requests, die Teil eines Geschaeftsfalls mit eigener Id sind
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für CommonProcessRequest_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="CommonProcessRequest_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "CommonProcessRequest_Type", propOrder = {
|
|
||||||
"geschaeftsfallnummer"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
FetchPolicyRequestType.class,
|
|
||||||
SubmitFormRequest.class,
|
|
||||||
CreateFormRequest.class,
|
|
||||||
BOAProcessRequestType.class,
|
|
||||||
StartPolicyChangeRequest.class
|
|
||||||
})
|
|
||||||
public abstract class CommonProcessRequestType
|
|
||||||
extends CommonRequestType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Geschaeftsfallnummer")
|
|
||||||
protected ObjektIdType geschaeftsfallnummer;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link ObjektIdType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ObjektIdType getGeschaeftsfallnummer() {
|
|
||||||
return geschaeftsfallnummer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der geschaeftsfallnummer-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link ObjektIdType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setGeschaeftsfallnummer(ObjektIdType value) {
|
|
||||||
this.geschaeftsfallnummer = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.CreateFormResponse;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.SubmitFormResponse;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.BOAProcessResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.FetchPolicyResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.StartPolicyChangeResponse;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Typ für Ergebnisse, die Teil eines Geschaeftsfalls mit eigener Id sind
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für CommonProcessResponse_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="CommonProcessResponse_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "CommonProcessResponse_Type", propOrder = {
|
|
||||||
"geschaeftsfallnummer"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
SubmitFormResponse.class,
|
|
||||||
CreateFormResponse.class,
|
|
||||||
FetchPolicyResponseType.class,
|
|
||||||
BOAProcessResponseType.class,
|
|
||||||
StartPolicyChangeResponse.class
|
|
||||||
})
|
|
||||||
public abstract class CommonProcessResponseType
|
|
||||||
extends CommonResponseType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Geschaeftsfallnummer")
|
|
||||||
protected ObjektIdType geschaeftsfallnummer;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der geschaeftsfallnummer-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link ObjektIdType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ObjektIdType getGeschaeftsfallnummer() {
|
|
||||||
return geschaeftsfallnummer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der geschaeftsfallnummer-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link ObjektIdType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setGeschaeftsfallnummer(ObjektIdType value) {
|
|
||||||
this.geschaeftsfallnummer = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,237 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetElementListRequest;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetStateSignaturesRequest;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.UnderwriteDocumentRequest;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.GetApplicationDocumentRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckCoverageRequest;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimRequestType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitReceiptRequest;
|
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.CollectionChangeRequest;
|
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.CollectionRhythmChangeRequest;
|
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.CollectionRhythmInfoRequest;
|
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.GetPoliciesOfPartnerRequestType;
|
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.SetMailingAddressRequestType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.AddCommunicationObjectRequestType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.ChangeCommunicationObjectRequestType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.ChangePartnerMainAddressRequestType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.ChangePersonDataRequestType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.CheckAddressRequestType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.DeleteCommunicationObjectRequestType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.GetPartnerRequestType;
|
|
||||||
import produktfinder.on2antrag._0._6.v1.omds3types.types.omds.vvo.at.FinderRequestType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstraktes RequestObjekt
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für CommonRequest_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="CommonRequest_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="VUNr" type="{urn:omds20}VUNr"/>
|
|
||||||
* <element name="ClientId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="TechnischeParameter" type="{urn:omds3CommonServiceTypes-1-1-0}TechnicalKeyValue_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="TechnischeObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}TechnischesObjekt_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="KorrelationsId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "CommonRequest_Type", propOrder = {
|
|
||||||
"vuNr",
|
|
||||||
"clientId",
|
|
||||||
"technischeParameter",
|
|
||||||
"technischeObjekte",
|
|
||||||
"korrelationsId"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
GetApplicationDocumentRequestType.class,
|
|
||||||
FinderRequestType.class,
|
|
||||||
CheckClaimRequestType.class,
|
|
||||||
SubmitClaimRequestType.class,
|
|
||||||
GetClaimRequestType.class,
|
|
||||||
GetPartnerRequestType.class,
|
|
||||||
CheckAddressRequestType.class,
|
|
||||||
ChangePartnerMainAddressRequestType.class,
|
|
||||||
ChangePersonDataRequestType.class,
|
|
||||||
ChangeCommunicationObjectRequestType.class,
|
|
||||||
AddCommunicationObjectRequestType.class,
|
|
||||||
DeleteCommunicationObjectRequestType.class,
|
|
||||||
GetPoliciesOfPartnerRequestType.class,
|
|
||||||
SetMailingAddressRequestType.class,
|
|
||||||
CommonSearchRequestType.class,
|
|
||||||
UnderwriteDocumentRequest.class,
|
|
||||||
GetElementListRequest.class,
|
|
||||||
GetStateSignaturesRequest.class,
|
|
||||||
CollectionRhythmChangeRequest.class,
|
|
||||||
CollectionRhythmInfoRequest.class,
|
|
||||||
CollectionChangeRequest.class,
|
|
||||||
SubmitReceiptRequest.class,
|
|
||||||
CheckCoverageRequest.class,
|
|
||||||
CommonProcessRequestType.class
|
|
||||||
})
|
|
||||||
public abstract class CommonRequestType {
|
|
||||||
|
|
||||||
@XmlElement(name = "VUNr", required = true)
|
|
||||||
protected String vuNr;
|
|
||||||
@XmlElement(name = "ClientId")
|
|
||||||
protected String clientId;
|
|
||||||
@XmlElement(name = "TechnischeParameter")
|
|
||||||
protected List<TechnicalKeyValueType> technischeParameter;
|
|
||||||
@XmlElement(name = "TechnischeObjekte")
|
|
||||||
protected List<TechnischesObjektType> technischeObjekte;
|
|
||||||
@XmlElement(name = "KorrelationsId", required = true)
|
|
||||||
protected String korrelationsId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der vuNr-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getVUNr() {
|
|
||||||
return vuNr;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der vuNr-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setVUNr(String value) {
|
|
||||||
this.vuNr = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der clientId-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getClientId() {
|
|
||||||
return clientId;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der clientId-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setClientId(String value) {
|
|
||||||
this.clientId = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the technischeParameter 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 technischeParameter property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getTechnischeParameter().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link TechnicalKeyValueType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<TechnicalKeyValueType> getTechnischeParameter() {
|
|
||||||
if (technischeParameter == null) {
|
|
||||||
technischeParameter = new ArrayList<TechnicalKeyValueType>();
|
|
||||||
}
|
|
||||||
return this.technischeParameter;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the technischeObjekte 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 technischeObjekte property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getTechnischeObjekte().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link TechnischesObjektType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<TechnischesObjektType> getTechnischeObjekte() {
|
|
||||||
if (technischeObjekte == null) {
|
|
||||||
technischeObjekte = new ArrayList<TechnischesObjektType>();
|
|
||||||
}
|
|
||||||
return this.technischeObjekte;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der korrelationsId-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getKorrelationsId() {
|
|
||||||
return korrelationsId;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der korrelationsId-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setKorrelationsId(String value) {
|
|
||||||
this.korrelationsId = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,208 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetElementListResponse;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetStateSignaturesResponse;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.UnderwriteDocumentResponse;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.common.GetApplicationDocumentResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckClaimResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.CheckCoverageResponse;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.GetClaimResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitClaimResponseType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on7schaden.SubmitReceiptResponse;
|
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.CollectionChangeResponse;
|
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.CollectionRhythmChangeResponse;
|
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.CollectionRhythmInfoResponse;
|
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.GetPoliciesOfPartnerResponseType;
|
|
||||||
import on3vertrag._0._4.v1.omds3types.types.omds.vvo.at.SetMailingAddressResponseType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.AddCommunicationObjectResponseType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.ChangeCommunicationObjectResponseType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.ChangePartnerMainAddressResponseType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.ChangePersonDataResponseType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.CheckAddressResponseType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.DeleteCommunicationObjectResponseType;
|
|
||||||
import on4partner._0._4.v1.omds3types.types.omds.vvo.at.GetPartnerResponseType;
|
|
||||||
import produktfinder.on2antrag._0._6.v1.omds3types.types.omds.vvo.at.FinderResponseType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstraktes ResponseObjekt
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für CommonResponse_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="CommonResponse_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Status" type="{urn:omds3CommonServiceTypes-1-1-0}ResponseStatus_Type"/>
|
|
||||||
* <element name="TechnischeObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}TechnischesObjekt_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="Gestartet" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
|
||||||
* <element name="Beendet" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "CommonResponse_Type", propOrder = {
|
|
||||||
"status",
|
|
||||||
"technischeObjekte",
|
|
||||||
"gestartet",
|
|
||||||
"beendet"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
GetApplicationDocumentResponseType.class,
|
|
||||||
FinderResponseType.class,
|
|
||||||
CheckClaimResponseType.class,
|
|
||||||
SubmitClaimResponseType.class,
|
|
||||||
GetClaimResponseType.class,
|
|
||||||
GetPartnerResponseType.class,
|
|
||||||
CheckAddressResponseType.class,
|
|
||||||
ChangePartnerMainAddressResponseType.class,
|
|
||||||
ChangePersonDataResponseType.class,
|
|
||||||
AddCommunicationObjectResponseType.class,
|
|
||||||
DeleteCommunicationObjectResponseType.class,
|
|
||||||
GetPoliciesOfPartnerResponseType.class,
|
|
||||||
SetMailingAddressResponseType.class,
|
|
||||||
CommonSearchResponseType.class,
|
|
||||||
UnderwriteDocumentResponse.class,
|
|
||||||
GetElementListResponse.class,
|
|
||||||
GetStateSignaturesResponse.class,
|
|
||||||
CollectionRhythmChangeResponse.class,
|
|
||||||
CollectionRhythmInfoResponse.class,
|
|
||||||
CollectionChangeResponse.class,
|
|
||||||
ChangeCommunicationObjectResponseType.class,
|
|
||||||
SubmitReceiptResponse.class,
|
|
||||||
CheckCoverageResponse.class,
|
|
||||||
CommonProcessResponseType.class
|
|
||||||
})
|
|
||||||
public abstract class CommonResponseType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Status", required = true)
|
|
||||||
protected ResponseStatusType status;
|
|
||||||
@XmlElement(name = "TechnischeObjekte")
|
|
||||||
protected List<TechnischesObjektType> technischeObjekte;
|
|
||||||
@XmlElement(name = "Gestartet")
|
|
||||||
@XmlSchemaType(name = "dateTime")
|
|
||||||
protected XMLGregorianCalendar gestartet;
|
|
||||||
@XmlElement(name = "Beendet")
|
|
||||||
@XmlSchemaType(name = "dateTime")
|
|
||||||
protected XMLGregorianCalendar beendet;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der status-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link ResponseStatusType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ResponseStatusType getStatus() {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der status-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link ResponseStatusType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setStatus(ResponseStatusType value) {
|
|
||||||
this.status = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the technischeObjekte 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 technischeObjekte property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getTechnischeObjekte().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link TechnischesObjektType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<TechnischesObjektType> getTechnischeObjekte() {
|
|
||||||
if (technischeObjekte == null) {
|
|
||||||
technischeObjekte = new ArrayList<TechnischesObjektType>();
|
|
||||||
}
|
|
||||||
return this.technischeObjekte;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der gestartet-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getGestartet() {
|
|
||||||
return gestartet;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der gestartet-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setGestartet(XMLGregorianCalendar value) {
|
|
||||||
this.gestartet = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der beendet-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getBeendet() {
|
|
||||||
return beendet;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der beendet-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBeendet(XMLGregorianCalendar value) {
|
|
||||||
this.beendet = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,205 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import at.vvo.omds.types.omds2Types.v2_14.ELZeitraumType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetStateChangesRequestType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstakter Typ fuer Suchanfragen
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für CommonSearchRequest_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="CommonSearchRequest_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonRequest_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="AuthFilter" type="{urn:omds3CommonServiceTypes-1-1-0}AuthorizationFilter" minOccurs="0"/>
|
|
||||||
* <element name="Suchbegriff" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Zeitraum" type="{urn:omds20}EL-Zeitraum_Type" minOccurs="0"/>
|
|
||||||
* <element name="MaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
|
||||||
* <element name="Offset" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
|
||||||
* <element name="OrderBy" minOccurs="0">
|
|
||||||
* <simpleType>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
||||||
* <enumeration value="Meldedatum aufsteigend"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </element>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "CommonSearchRequest_Type", propOrder = {
|
|
||||||
"authFilter",
|
|
||||||
"suchbegriff",
|
|
||||||
"zeitraum",
|
|
||||||
"maxResults",
|
|
||||||
"offset",
|
|
||||||
"orderBy"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
GetStateChangesRequestType.class
|
|
||||||
})
|
|
||||||
public abstract class CommonSearchRequestType
|
|
||||||
extends CommonRequestType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "AuthFilter")
|
|
||||||
protected AuthorizationFilter authFilter;
|
|
||||||
@XmlElement(name = "Suchbegriff")
|
|
||||||
protected String suchbegriff;
|
|
||||||
@XmlElement(name = "Zeitraum")
|
|
||||||
protected ELZeitraumType zeitraum;
|
|
||||||
@XmlElement(name = "MaxResults")
|
|
||||||
@XmlSchemaType(name = "unsignedInt")
|
|
||||||
protected long maxResults;
|
|
||||||
@XmlElement(name = "Offset")
|
|
||||||
@XmlSchemaType(name = "unsignedInt")
|
|
||||||
protected long offset;
|
|
||||||
@XmlElement(name = "OrderBy")
|
|
||||||
protected String orderBy;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der authFilter-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link AuthorizationFilter }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public AuthorizationFilter getAuthFilter() {
|
|
||||||
return authFilter;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der authFilter-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link AuthorizationFilter }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAuthFilter(AuthorizationFilter value) {
|
|
||||||
this.authFilter = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der suchbegriff-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getSuchbegriff() {
|
|
||||||
return suchbegriff;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der suchbegriff-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setSuchbegriff(String value) {
|
|
||||||
this.suchbegriff = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der zeitraum-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link ELZeitraumType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ELZeitraumType getZeitraum() {
|
|
||||||
return zeitraum;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der zeitraum-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link ELZeitraumType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setZeitraum(ELZeitraumType value) {
|
|
||||||
this.zeitraum = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der maxResults-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public long getMaxResults() {
|
|
||||||
return maxResults;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der maxResults-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMaxResults(long value) {
|
|
||||||
this.maxResults = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der offset-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public long getOffset() {
|
|
||||||
return offset;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der offset-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setOffset(long value) {
|
|
||||||
this.offset = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der orderBy-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getOrderBy() {
|
|
||||||
return orderBy;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der orderBy-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setOrderBy(String value) {
|
|
||||||
this.orderBy = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,107 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on1basis.GetStateChangesResponseType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Typ für Ergebnisse von Suchen
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für CommonSearchResponse_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="CommonSearchResponse_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonResponse_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="ActualOffset" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
|
||||||
* <element name="ActualMaxResults" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
|
||||||
* <element name="TotalResults" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "CommonSearchResponse_Type", propOrder = {
|
|
||||||
"actualOffset",
|
|
||||||
"actualMaxResults",
|
|
||||||
"totalResults"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
GetStateChangesResponseType.class
|
|
||||||
})
|
|
||||||
public abstract class CommonSearchResponseType
|
|
||||||
extends CommonResponseType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "ActualOffset")
|
|
||||||
@XmlSchemaType(name = "unsignedInt")
|
|
||||||
protected long actualOffset;
|
|
||||||
@XmlElement(name = "ActualMaxResults")
|
|
||||||
@XmlSchemaType(name = "unsignedInt")
|
|
||||||
protected long actualMaxResults;
|
|
||||||
@XmlElement(name = "TotalResults")
|
|
||||||
@XmlSchemaType(name = "unsignedInt")
|
|
||||||
protected long totalResults;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der actualOffset-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public long getActualOffset() {
|
|
||||||
return actualOffset;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der actualOffset-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setActualOffset(long value) {
|
|
||||||
this.actualOffset = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der actualMaxResults-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public long getActualMaxResults() {
|
|
||||||
return actualMaxResults;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der actualMaxResults-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setActualMaxResults(long value) {
|
|
||||||
this.actualMaxResults = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der totalResults-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public long getTotalResults() {
|
|
||||||
return totalResults;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der totalResults-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setTotalResults(long value) {
|
|
||||||
this.totalResults = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,192 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.activation.DataHandler;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlMimeType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Deprecated, verwende ProzessDokument_Type. Dateianhang welcher an einen Geschäftsfall hinzugefügt werden kann
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Dateianhang_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Dateianhang_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* <element name="DateiType" type="{urn:omds3CommonServiceTypes-1-1-0}TypeDateianhang_Type" minOccurs="0"/>
|
|
||||||
* <element name="DateiName">
|
|
||||||
* <simpleType>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
||||||
* <maxLength value="100"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </element>
|
|
||||||
* <element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
|
||||||
* <element name="DateiBeschreibung" minOccurs="0">
|
|
||||||
* <simpleType>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
||||||
* <maxLength value="200"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </element>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Dateianhang_Type", propOrder = {
|
|
||||||
"mimetype",
|
|
||||||
"dateiType",
|
|
||||||
"dateiName",
|
|
||||||
"dateiData",
|
|
||||||
"dateiBeschreibung"
|
|
||||||
})
|
|
||||||
public class DateianhangType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Mimetype", required = true)
|
|
||||||
protected String mimetype;
|
|
||||||
@XmlElement(name = "DateiType")
|
|
||||||
protected Integer dateiType;
|
|
||||||
@XmlElement(name = "DateiName", required = true)
|
|
||||||
protected String dateiName;
|
|
||||||
@XmlElement(name = "DateiData", required = true)
|
|
||||||
@XmlMimeType("application/octet-stream")
|
|
||||||
protected DataHandler dateiData;
|
|
||||||
@XmlElement(name = "DateiBeschreibung")
|
|
||||||
protected String dateiBeschreibung;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der mimetype-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getMimetype() {
|
|
||||||
return mimetype;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der mimetype-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMimetype(String value) {
|
|
||||||
this.mimetype = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der dateiType-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getDateiType() {
|
|
||||||
return dateiType;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der dateiType-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDateiType(Integer value) {
|
|
||||||
this.dateiType = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der dateiName-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getDateiName() {
|
|
||||||
return dateiName;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der dateiName-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDateiName(String value) {
|
|
||||||
this.dateiName = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der dateiData-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link DataHandler }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public DataHandler getDateiData() {
|
|
||||||
return dateiData;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der dateiData-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link DataHandler }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDateiData(DataHandler value) {
|
|
||||||
this.dateiData = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der dateiBeschreibung-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getDateiBeschreibung() {
|
|
||||||
return dateiBeschreibung;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der dateiBeschreibung-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDateiBeschreibung(String value) {
|
|
||||||
this.dateiBeschreibung = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Type Datenverwendung
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Datenverwendung_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Datenverwendung_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="ZustimmungZurElektrUebermittlungVorvertraglDokumente" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
|
||||||
* <element name="ElektrUebermittlungVorvertraglDokumenteEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="ZustimmungZurVerwendungDerDatenZuWerbezwecken" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Datenverwendung_Type", propOrder = {
|
|
||||||
"zustimmungZurElektrUebermittlungVorvertraglDokumente",
|
|
||||||
"elektrUebermittlungVorvertraglDokumenteEmail",
|
|
||||||
"zustimmungZurVerwendungDerDatenZuWerbezwecken"
|
|
||||||
})
|
|
||||||
public class DatenverwendungType {
|
|
||||||
|
|
||||||
@XmlElement(name = "ZustimmungZurElektrUebermittlungVorvertraglDokumente")
|
|
||||||
protected Boolean zustimmungZurElektrUebermittlungVorvertraglDokumente;
|
|
||||||
@XmlElement(name = "ElektrUebermittlungVorvertraglDokumenteEmail")
|
|
||||||
protected String elektrUebermittlungVorvertraglDokumenteEmail;
|
|
||||||
@XmlElement(name = "ZustimmungZurVerwendungDerDatenZuWerbezwecken")
|
|
||||||
protected boolean zustimmungZurVerwendungDerDatenZuWerbezwecken;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Boolean }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Boolean isZustimmungZurElektrUebermittlungVorvertraglDokumente() {
|
|
||||||
return zustimmungZurElektrUebermittlungVorvertraglDokumente;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der zustimmungZurElektrUebermittlungVorvertraglDokumente-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Boolean }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setZustimmungZurElektrUebermittlungVorvertraglDokumente(Boolean value) {
|
|
||||||
this.zustimmungZurElektrUebermittlungVorvertraglDokumente = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der elektrUebermittlungVorvertraglDokumenteEmail-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getElektrUebermittlungVorvertraglDokumenteEmail() {
|
|
||||||
return elektrUebermittlungVorvertraglDokumenteEmail;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der elektrUebermittlungVorvertraglDokumenteEmail-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setElektrUebermittlungVorvertraglDokumenteEmail(String value) {
|
|
||||||
this.elektrUebermittlungVorvertraglDokumenteEmail = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public boolean isZustimmungZurVerwendungDerDatenZuWerbezwecken() {
|
|
||||||
return zustimmungZurVerwendungDerDatenZuWerbezwecken;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der zustimmungZurVerwendungDerDatenZuWerbezwecken-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setZustimmungZurVerwendungDerDatenZuWerbezwecken(boolean value) {
|
|
||||||
this.zustimmungZurVerwendungDerDatenZuWerbezwecken = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlEnum;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>Java-Klasse für DirectionCd_Type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
* <p>
|
|
||||||
* <pre>
|
|
||||||
* <simpleType name="DirectionCd_Type">
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
||||||
* <enumeration value="IN"/>
|
|
||||||
* <enumeration value="OUT"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlType(name = "DirectionCd_Type")
|
|
||||||
@XmlEnum
|
|
||||||
public enum DirectionCdType {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Input-Wert
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
IN,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Output-Wert
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
OUT;
|
|
||||||
|
|
||||||
public String value() {
|
|
||||||
return name();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static DirectionCdType fromValue(String v) {
|
|
||||||
return valueOf(v);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,156 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.activation.DataHandler;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlMimeType;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ zur Übermittlung von Dokumenten als Binary plus Metadaten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für DokumentBinaryData_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="DokumentBinaryData_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}DokumentData_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="DateiData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
|
|
||||||
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* <element name="Groesse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
|
||||||
* <element name="Datum" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "DokumentBinaryData_Type", propOrder = {
|
|
||||||
"dateiData",
|
|
||||||
"mimetype",
|
|
||||||
"groesse",
|
|
||||||
"datum"
|
|
||||||
})
|
|
||||||
public class DokumentBinaryDataType
|
|
||||||
extends DokumentDataType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "DateiData", required = true)
|
|
||||||
@XmlMimeType("application/octet-stream")
|
|
||||||
protected DataHandler dateiData;
|
|
||||||
@XmlElement(name = "Mimetype", required = true)
|
|
||||||
protected String mimetype;
|
|
||||||
@XmlElement(name = "Groesse")
|
|
||||||
protected Long groesse;
|
|
||||||
@XmlElement(name = "Datum")
|
|
||||||
@XmlSchemaType(name = "dateTime")
|
|
||||||
protected XMLGregorianCalendar datum;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der dateiData-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link DataHandler }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public DataHandler getDateiData() {
|
|
||||||
return dateiData;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der dateiData-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link DataHandler }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDateiData(DataHandler value) {
|
|
||||||
this.dateiData = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der mimetype-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getMimetype() {
|
|
||||||
return mimetype;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der mimetype-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMimetype(String value) {
|
|
||||||
this.mimetype = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der groesse-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Long }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Long getGroesse() {
|
|
||||||
return groesse;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der groesse-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Long }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setGroesse(Long value) {
|
|
||||||
this.groesse = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der datum-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getDatum() {
|
|
||||||
return datum;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der datum-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDatum(XMLGregorianCalendar value) {
|
|
||||||
this.datum = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Typ zur Übermittlung von Dokumentendaten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für DokumentData_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="DokumentData_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "DokumentData_Type")
|
|
||||||
@XmlSeeAlso({
|
|
||||||
DokumentBinaryDataType.class
|
|
||||||
})
|
|
||||||
public abstract class DokumentDataType {
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ zur Übermittlung von Formulardaten als Dokument
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für DokumentFormData_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="DokumentFormData_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}Formular"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "DokumentFormData_Type", propOrder = {
|
|
||||||
"formular"
|
|
||||||
})
|
|
||||||
public class DokumentFormDataType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Formular", required = true)
|
|
||||||
protected Formular formular;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der formular-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Formular }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Formular getFormular() {
|
|
||||||
return formular;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der formular-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Formular }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setFormular(Formular value) {
|
|
||||||
this.formular = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,309 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.activation.DataHandler;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlMimeType;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ mit Informationen zu einem Dokument (kann auch das Dokument selbst enthalten)
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für DokumentInfo_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="DokumentInfo_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Content" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
|
|
||||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
|
|
||||||
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Groesse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
|
||||||
* <element name="Datum" type="{urn:omds20}Datum-Zeit" minOccurs="0"/>
|
|
||||||
* <element name="ReferenzWeitereDokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="ArtAusfolgung" minOccurs="0">
|
|
||||||
* <simpleType>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
|
||||||
* <enumeration value="0"/>
|
|
||||||
* <enumeration value="1"/>
|
|
||||||
* <enumeration value="2"/>
|
|
||||||
* <enumeration value="3"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </element>
|
|
||||||
* <element name="Unterschrift" minOccurs="0">
|
|
||||||
* <simpleType>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedByte">
|
|
||||||
* <enumeration value="0"/>
|
|
||||||
* <enumeration value="1"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </element>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "DokumentInfo_Type", propOrder = {
|
|
||||||
"content",
|
|
||||||
"name",
|
|
||||||
"documentType",
|
|
||||||
"mimetype",
|
|
||||||
"groesse",
|
|
||||||
"datum",
|
|
||||||
"referenzWeitereDokumente",
|
|
||||||
"artAusfolgung",
|
|
||||||
"unterschrift"
|
|
||||||
})
|
|
||||||
public class DokumentInfoType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Content")
|
|
||||||
@XmlMimeType("application/octet-stream")
|
|
||||||
protected DataHandler content;
|
|
||||||
@XmlElement(name = "Name")
|
|
||||||
protected String name;
|
|
||||||
@XmlElement(name = "DocumentType")
|
|
||||||
protected int documentType;
|
|
||||||
@XmlElement(name = "Mimetype")
|
|
||||||
protected String mimetype;
|
|
||||||
@XmlElement(name = "Groesse")
|
|
||||||
protected Long groesse;
|
|
||||||
@XmlElement(name = "Datum")
|
|
||||||
@XmlSchemaType(name = "dateTime")
|
|
||||||
protected XMLGregorianCalendar datum;
|
|
||||||
@XmlElement(name = "ReferenzWeitereDokumente")
|
|
||||||
protected List<DokumentInfoType> referenzWeitereDokumente;
|
|
||||||
@XmlElement(name = "ArtAusfolgung")
|
|
||||||
protected Short artAusfolgung;
|
|
||||||
@XmlElement(name = "Unterschrift")
|
|
||||||
protected Short unterschrift;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der content-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link DataHandler }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public DataHandler getContent() {
|
|
||||||
return content;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der content-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link DataHandler }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setContent(DataHandler value) {
|
|
||||||
this.content = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der name-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der name-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setName(String value) {
|
|
||||||
this.name = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der documentType-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public int getDocumentType() {
|
|
||||||
return documentType;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der documentType-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDocumentType(int value) {
|
|
||||||
this.documentType = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der mimetype-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getMimetype() {
|
|
||||||
return mimetype;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der mimetype-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMimetype(String value) {
|
|
||||||
this.mimetype = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der groesse-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Long }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Long getGroesse() {
|
|
||||||
return groesse;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der groesse-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Long }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setGroesse(Long value) {
|
|
||||||
this.groesse = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der datum-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getDatum() {
|
|
||||||
return datum;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der datum-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDatum(XMLGregorianCalendar value) {
|
|
||||||
this.datum = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the referenzWeitereDokumente 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 referenzWeitereDokumente property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getReferenzWeitereDokumente().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link DokumentInfoType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<DokumentInfoType> getReferenzWeitereDokumente() {
|
|
||||||
if (referenzWeitereDokumente == null) {
|
|
||||||
referenzWeitereDokumente = new ArrayList<DokumentInfoType>();
|
|
||||||
}
|
|
||||||
return this.referenzWeitereDokumente;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der artAusfolgung-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Short }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Short getArtAusfolgung() {
|
|
||||||
return artAusfolgung;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der artAusfolgung-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Short }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setArtAusfolgung(Short value) {
|
|
||||||
this.artAusfolgung = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der unterschrift-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Short }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Short getUnterschrift() {
|
|
||||||
return unterschrift;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der unterschrift-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Short }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setUnterschrift(Short value) {
|
|
||||||
this.unterschrift = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,262 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Information zu einem einzelnen Dokument
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für DokumentenReferenz_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="DokumentenReferenz_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Id" type="{urn:omds3CommonServiceTypes-1-1-0}ElementIdType"/>
|
|
||||||
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* <element name="DocumentType" type="{urn:omds3CommonServiceTypes-1-1-0}DocumentType"/>
|
|
||||||
* <element name="Mimetype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Groesse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
|
||||||
* <element name="Datum" type="{urn:omds20}Datum-Zeit"/>
|
|
||||||
* <element name="ObjektSpezifikation" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektSpezifikation_Type" minOccurs="0"/>
|
|
||||||
* <element name="ReferenzWeitereDokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentenReferenz_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "DokumentenReferenz_Type", propOrder = {
|
|
||||||
"id",
|
|
||||||
"name",
|
|
||||||
"documentType",
|
|
||||||
"mimetype",
|
|
||||||
"groesse",
|
|
||||||
"datum",
|
|
||||||
"objektSpezifikation",
|
|
||||||
"referenzWeitereDokumente"
|
|
||||||
})
|
|
||||||
public class DokumentenReferenzType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Id", required = true)
|
|
||||||
protected ElementIdType id;
|
|
||||||
@XmlElement(name = "Name", required = true)
|
|
||||||
protected String name;
|
|
||||||
@XmlElement(name = "DocumentType")
|
|
||||||
protected int documentType;
|
|
||||||
@XmlElement(name = "Mimetype")
|
|
||||||
protected String mimetype;
|
|
||||||
@XmlElement(name = "Groesse")
|
|
||||||
protected Long groesse;
|
|
||||||
@XmlElement(name = "Datum", required = true)
|
|
||||||
@XmlSchemaType(name = "dateTime")
|
|
||||||
protected XMLGregorianCalendar datum;
|
|
||||||
@XmlElement(name = "ObjektSpezifikation")
|
|
||||||
protected ObjektSpezifikationType objektSpezifikation;
|
|
||||||
@XmlElement(name = "ReferenzWeitereDokumente")
|
|
||||||
protected List<DokumentenReferenzType> referenzWeitereDokumente;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der id-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link ElementIdType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ElementIdType getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der id-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link ElementIdType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setId(ElementIdType value) {
|
|
||||||
this.id = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der name-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getName() {
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der name-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setName(String value) {
|
|
||||||
this.name = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der documentType-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public int getDocumentType() {
|
|
||||||
return documentType;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der documentType-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDocumentType(int value) {
|
|
||||||
this.documentType = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der mimetype-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getMimetype() {
|
|
||||||
return mimetype;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der mimetype-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMimetype(String value) {
|
|
||||||
this.mimetype = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der groesse-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Long }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Long getGroesse() {
|
|
||||||
return groesse;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der groesse-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Long }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setGroesse(Long value) {
|
|
||||||
this.groesse = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der datum-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getDatum() {
|
|
||||||
return datum;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der datum-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setDatum(XMLGregorianCalendar value) {
|
|
||||||
this.datum = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der objektSpezifikation-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link ObjektSpezifikationType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public ObjektSpezifikationType getObjektSpezifikation() {
|
|
||||||
return objektSpezifikation;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der objektSpezifikation-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link ObjektSpezifikationType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setObjektSpezifikation(ObjektSpezifikationType value) {
|
|
||||||
this.objektSpezifikation = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the referenzWeitereDokumente 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 referenzWeitereDokumente property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getReferenzWeitereDokumente().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link DokumentenReferenzType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<DokumentenReferenzType> getReferenzWeitereDokumente() {
|
|
||||||
if (referenzWeitereDokumente == null) {
|
|
||||||
referenzWeitereDokumente = new ArrayList<DokumentenReferenzType>();
|
|
||||||
}
|
|
||||||
return this.referenzWeitereDokumente;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Typ für einen einzelnen Eintrag einer Schlüsselliste
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für EintragSchluesselliste_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="EintragSchluesselliste_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* <element name="Schluessel" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "EintragSchluesselliste_Type", propOrder = {
|
|
||||||
"text",
|
|
||||||
"schluessel"
|
|
||||||
})
|
|
||||||
public class EintragSchluessellisteType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Text", required = true)
|
|
||||||
protected String text;
|
|
||||||
@XmlElement(name = "Schluessel", required = true)
|
|
||||||
protected String schluessel;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der text-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getText() {
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der text-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setText(String value) {
|
|
||||||
this.text = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der schluessel-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getSchluessel() {
|
|
||||||
return schluessel;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der schluessel-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setSchluessel(String value) {
|
|
||||||
this.schluessel = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Einwilligung Bekanntgabe Gesundheitsdaten an VN
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für EinwGesDatenVN_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="EinwGesDatenVN_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "EinwGesDatenVN_Type")
|
|
||||||
public class EinwGesDatenVNType
|
|
||||||
extends EinwilligungPersDatenType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Einwilligung Sprachaufzeichnung
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für EinwSprachaufz_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="EinwSprachaufz_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "EinwSprachaufz_Type")
|
|
||||||
public class EinwSprachaufzType
|
|
||||||
extends EinwilligungPersDatenType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Einwilligung Verarbeitung Gesundheitsdaten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für EinwVerarbGesDaten_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="EinwVerarbGesDaten_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}EinwilligungPersDaten_Type">
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "EinwVerarbGesDaten_Type")
|
|
||||||
public class EinwVerarbGesDatenType
|
|
||||||
extends EinwilligungPersDatenType
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,66 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Typ für Einwilligung personenbezogene Daten
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für EinwilligungPersDaten_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="EinwilligungPersDaten_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Einwilligung_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="PersonRefLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "EinwilligungPersDaten_Type", propOrder = {
|
|
||||||
"personRefLfnr"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
EinwVerarbGesDatenType.class,
|
|
||||||
EinwGesDatenVNType.class,
|
|
||||||
EinwSprachaufzType.class
|
|
||||||
})
|
|
||||||
public abstract class EinwilligungPersDatenType
|
|
||||||
extends EinwilligungType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "PersonRefLfnr")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected int personRefLfnr;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der personRefLfnr-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public int getPersonRefLfnr() {
|
|
||||||
return personRefLfnr;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der personRefLfnr-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPersonRefLfnr(int value) {
|
|
||||||
this.personRefLfnr = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,96 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstrakter Typ für Einwilligung
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Einwilligung_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Einwilligung_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Zustimmung" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
|
||||||
* <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Einwilligung_Type", propOrder = {
|
|
||||||
"zustimmung",
|
|
||||||
"text"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
EinwilligungPersDatenType.class
|
|
||||||
})
|
|
||||||
public abstract class EinwilligungType {
|
|
||||||
|
|
||||||
@XmlElement(name = "Zustimmung")
|
|
||||||
protected Boolean zustimmung;
|
|
||||||
@XmlElement(name = "Text")
|
|
||||||
protected String text;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der zustimmung-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Boolean }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Boolean isZustimmung() {
|
|
||||||
return zustimmung;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der zustimmung-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Boolean }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setZustimmung(Boolean value) {
|
|
||||||
this.zustimmung = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der text-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getText() {
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der text-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setText(String value) {
|
|
||||||
this.text = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,164 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ein einzelnes Element einer Fondsauswahl
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für ElementFondsauswahl_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="ElementFondsauswahl_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <choice>
|
|
||||||
* <element name="ISIN" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
|
|
||||||
* <element name="WKN" type="{urn:omds3CommonServiceTypes-1-1-0}AttributEnum_Type"/>
|
|
||||||
* </choice>
|
|
||||||
* <element name="Prozentanteil" minOccurs="0">
|
|
||||||
* <simpleType>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}float">
|
|
||||||
* <minInclusive value="0"/>
|
|
||||||
* <maxInclusive value="100"/>
|
|
||||||
* </restriction>
|
|
||||||
* </simpleType>
|
|
||||||
* </element>
|
|
||||||
* <element name="ZusaetzlicheFondsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheFondsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "ElementFondsauswahl_Type", propOrder = {
|
|
||||||
"isin",
|
|
||||||
"wkn",
|
|
||||||
"prozentanteil",
|
|
||||||
"zusaetzlicheFondsdaten"
|
|
||||||
})
|
|
||||||
public class ElementFondsauswahlType {
|
|
||||||
|
|
||||||
@XmlElement(name = "ISIN")
|
|
||||||
protected AttributEnumType isin;
|
|
||||||
@XmlElement(name = "WKN")
|
|
||||||
protected AttributEnumType wkn;
|
|
||||||
@XmlElement(name = "Prozentanteil")
|
|
||||||
protected Float prozentanteil;
|
|
||||||
@XmlElement(name = "ZusaetzlicheFondsdaten")
|
|
||||||
protected List<ZusaetzlicheFondsdatenType> zusaetzlicheFondsdaten;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der isin-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link AttributEnumType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public AttributEnumType getISIN() {
|
|
||||||
return isin;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der isin-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link AttributEnumType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setISIN(AttributEnumType value) {
|
|
||||||
this.isin = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der wkn-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link AttributEnumType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public AttributEnumType getWKN() {
|
|
||||||
return wkn;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der wkn-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link AttributEnumType }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setWKN(AttributEnumType value) {
|
|
||||||
this.wkn = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der prozentanteil-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Float }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Float getProzentanteil() {
|
|
||||||
return prozentanteil;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der prozentanteil-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Float }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setProzentanteil(Float value) {
|
|
||||||
this.prozentanteil = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the zusaetzlicheFondsdaten 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 zusaetzlicheFondsdaten property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getZusaetzlicheFondsdaten().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link ZusaetzlicheFondsdatenType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<ZusaetzlicheFondsdatenType> getZusaetzlicheFondsdaten() {
|
|
||||||
if (zusaetzlicheFondsdaten == null) {
|
|
||||||
zusaetzlicheFondsdaten = new ArrayList<ZusaetzlicheFondsdatenType>();
|
|
||||||
}
|
|
||||||
return this.zusaetzlicheFondsdaten;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,114 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ein Typ für eine Objekt-Id in Verbindung mit einem möglichen Ablaufzeitpunkt und dem Hinweis, ob die Id nur einmalig oder auch mehrmalig verwendet werden kann
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für ElementIdType complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="ElementIdType">
|
|
||||||
* <complexContent>
|
|
||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
|
||||||
* <element name="idValidUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
|
|
||||||
* <element name="idIsSingleUse" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
|
||||||
* </sequence>
|
|
||||||
* </restriction>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "ElementIdType", propOrder = {
|
|
||||||
"id",
|
|
||||||
"idValidUntil",
|
|
||||||
"idIsSingleUse"
|
|
||||||
})
|
|
||||||
public class ElementIdType {
|
|
||||||
|
|
||||||
@XmlElement(required = true)
|
|
||||||
protected String id;
|
|
||||||
@XmlElement(required = true, nillable = true)
|
|
||||||
@XmlSchemaType(name = "dateTime")
|
|
||||||
protected XMLGregorianCalendar idValidUntil;
|
|
||||||
protected boolean idIsSingleUse;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der id-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getId() {
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der id-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setId(String value) {
|
|
||||||
this.id = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der idValidUntil-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getIdValidUntil() {
|
|
||||||
return idValidUntil;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der idValidUntil-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setIdValidUntil(XMLGregorianCalendar value) {
|
|
||||||
this.idValidUntil = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der idIsSingleUse-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public boolean isIdIsSingleUse() {
|
|
||||||
return idIsSingleUse;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der idIsSingleUse-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setIdIsSingleUse(boolean value) {
|
|
||||||
this.idIsSingleUse = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,191 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
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.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.sachPrivat.ElementarproduktSachPrivatType;
|
|
||||||
import kranken.on2antrag._0._6.v1.omds3types.types.omds.vvo.at.ElementarproduktKrankenType;
|
|
||||||
import leben.on2antrag._0._5.v1.omds3types.types.omds.vvo.at.TarifLebenType;
|
|
||||||
import rs.on2antrag._0._4.v1.omds3types.types.omds.vvo.at.ElementarproduktRechtsschutzType;
|
|
||||||
import unfall.on2antrag._0._4.v1.omds3types.types.omds.vvo.at.LeistungsartUnfallType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Basistyp für ein Elementarprodukt, 2. Generation
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für ElementarproduktGenerisch_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="ElementarproduktGenerisch_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Elementarprodukt_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="Eingeschlossen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
|
||||||
* <element name="EinschlussAenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
|
||||||
* <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* <element name="Versicherungssumme" type="{urn:omds20}decimal14_2" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = {
|
|
||||||
"eingeschlossen",
|
|
||||||
"einschlussAenderbar",
|
|
||||||
"attributMetadaten",
|
|
||||||
"beschreibungTxt",
|
|
||||||
"versicherungssumme"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
ElementarproduktSachPrivatType.class,
|
|
||||||
TarifLebenType.class,
|
|
||||||
ElementarproduktKrankenType.class,
|
|
||||||
LeistungsartUnfallType.class,
|
|
||||||
ElementarproduktRechtsschutzType.class
|
|
||||||
})
|
|
||||||
public abstract class ElementarproduktGenerischType
|
|
||||||
extends ElementarproduktType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "Eingeschlossen")
|
|
||||||
protected boolean eingeschlossen;
|
|
||||||
@XmlElement(name = "EinschlussAenderbar")
|
|
||||||
protected Boolean einschlussAenderbar;
|
|
||||||
@XmlElement(name = "AttributMetadaten")
|
|
||||||
protected List<AttributMetadatenType> attributMetadaten;
|
|
||||||
@XmlElement(name = "BeschreibungTxt")
|
|
||||||
protected String beschreibungTxt;
|
|
||||||
@XmlElement(name = "Versicherungssumme")
|
|
||||||
protected BigDecimal versicherungssumme;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der eingeschlossen-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public boolean isEingeschlossen() {
|
|
||||||
return eingeschlossen;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der eingeschlossen-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setEingeschlossen(boolean value) {
|
|
||||||
this.eingeschlossen = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der einschlussAenderbar-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Boolean }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Boolean isEinschlussAenderbar() {
|
|
||||||
return einschlussAenderbar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der einschlussAenderbar-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Boolean }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setEinschlussAenderbar(Boolean value) {
|
|
||||||
this.einschlussAenderbar = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the attributMetadaten 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 attributMetadaten property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getAttributMetadaten().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link AttributMetadatenType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<AttributMetadatenType> getAttributMetadaten() {
|
|
||||||
if (attributMetadaten == null) {
|
|
||||||
attributMetadaten = new ArrayList<AttributMetadatenType>();
|
|
||||||
}
|
|
||||||
return this.attributMetadaten;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getBeschreibungTxt() {
|
|
||||||
return beschreibungTxt;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setBeschreibungTxt(String value) {
|
|
||||||
this.beschreibungTxt = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der versicherungssumme-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BigDecimal getVersicherungssumme() {
|
|
||||||
return versicherungssumme;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der versicherungssumme-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link BigDecimal }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setVersicherungssumme(BigDecimal value) {
|
|
||||||
this.versicherungssumme = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,141 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlSchemaType;
|
|
||||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
import javax.xml.datatype.XMLGregorianCalendar;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.ElementarproduktKfzType;
|
|
||||||
import at.vvo.omds.types.omds3Types.r1_7_0.on2antrag.kfz.VerkehrsrechtsschutzKfzType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Basistyp für ein Elementarprodukt
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für Elementarprodukt_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="Elementarprodukt_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Produktbaustein_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="VtgBeg" type="{urn:omds20}Datum" minOccurs="0"/>
|
|
||||||
* <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
||||||
* <element name="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "Elementarprodukt_Type", propOrder = {
|
|
||||||
"vtgBeg",
|
|
||||||
"refSicherstellungLfnr",
|
|
||||||
"zusaetzlicheElementarproduktdaten"
|
|
||||||
})
|
|
||||||
@XmlSeeAlso({
|
|
||||||
ElementarproduktKfzType.class,
|
|
||||||
VerkehrsrechtsschutzKfzType.class,
|
|
||||||
ElementarproduktGenerischType.class
|
|
||||||
})
|
|
||||||
public abstract class ElementarproduktType
|
|
||||||
extends ProduktbausteinType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "VtgBeg")
|
|
||||||
@XmlSchemaType(name = "date")
|
|
||||||
protected XMLGregorianCalendar vtgBeg;
|
|
||||||
@XmlElement(name = "RefSicherstellungLfnr")
|
|
||||||
@XmlSchemaType(name = "unsignedShort")
|
|
||||||
protected Integer refSicherstellungLfnr;
|
|
||||||
@XmlElement(name = "ZusaetzlicheElementarproduktdaten")
|
|
||||||
protected List<ZusaetzlicheElementarproduktdatenType> zusaetzlicheElementarproduktdaten;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der vtgBeg-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public XMLGregorianCalendar getVtgBeg() {
|
|
||||||
return vtgBeg;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der vtgBeg-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link XMLGregorianCalendar }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setVtgBeg(XMLGregorianCalendar value) {
|
|
||||||
this.vtgBeg = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public Integer getRefSicherstellungLfnr() {
|
|
||||||
return refSicherstellungLfnr;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link Integer }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setRefSicherstellungLfnr(Integer value) {
|
|
||||||
this.refSicherstellungLfnr = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of the zusaetzlicheElementarproduktdaten 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 zusaetzlicheElementarproduktdaten property.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* For example, to add a new item, do as follows:
|
|
||||||
* <pre>
|
|
||||||
* getZusaetzlicheElementarproduktdaten().add(newItem);
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* Objects of the following type(s) are allowed in the list
|
|
||||||
* {@link ZusaetzlicheElementarproduktdatenType }
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public List<ZusaetzlicheElementarproduktdatenType> getZusaetzlicheElementarproduktdaten() {
|
|
||||||
if (zusaetzlicheElementarproduktdaten == null) {
|
|
||||||
zusaetzlicheElementarproduktdaten = new ArrayList<ZusaetzlicheElementarproduktdatenType>();
|
|
||||||
}
|
|
||||||
return this.zusaetzlicheElementarproduktdaten;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,94 +0,0 @@
|
|||||||
|
|
||||||
package at.vvo.omds.types.omds3Types.r1_7_0.common;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlAccessType;
|
|
||||||
import javax.xml.bind.annotation.XmlAccessorType;
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlType;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Einfache Implementierung einer zu ersetzenden Polizze mit Angabe eines Änderungsgrunds
|
|
||||||
*
|
|
||||||
* <p>Java-Klasse für ErsatzpolizzeMitAendGrund_Type complex type.
|
|
||||||
*
|
|
||||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
|
||||||
*
|
|
||||||
* <pre>
|
|
||||||
* <complexType name="ErsatzpolizzeMitAendGrund_Type">
|
|
||||||
* <complexContent>
|
|
||||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}Ersatzpolizze_Type">
|
|
||||||
* <sequence>
|
|
||||||
* <element name="AendGrundCd" type="{urn:omds20}AendGrundCd_Type"/>
|
|
||||||
* <element name="AendGrundbez" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
||||||
* </sequence>
|
|
||||||
* </extension>
|
|
||||||
* </complexContent>
|
|
||||||
* </complexType>
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@XmlAccessorType(XmlAccessType.FIELD)
|
|
||||||
@XmlType(name = "ErsatzpolizzeMitAendGrund_Type", propOrder = {
|
|
||||||
"aendGrundCd",
|
|
||||||
"aendGrundbez"
|
|
||||||
})
|
|
||||||
public class ErsatzpolizzeMitAendGrundType
|
|
||||||
extends ErsatzpolizzeType
|
|
||||||
{
|
|
||||||
|
|
||||||
@XmlElement(name = "AendGrundCd", required = true)
|
|
||||||
protected String aendGrundCd;
|
|
||||||
@XmlElement(name = "AendGrundbez")
|
|
||||||
protected String aendGrundbez;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der aendGrundCd-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getAendGrundCd() {
|
|
||||||
return aendGrundCd;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der aendGrundCd-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAendGrundCd(String value) {
|
|
||||||
this.aendGrundCd = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ruft den Wert der aendGrundbez-Eigenschaft ab.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getAendGrundbez() {
|
|
||||||
return aendGrundbez;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Legt den Wert der aendGrundbez-Eigenschaft fest.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setAendGrundbez(String value) {
|
|
||||||
this.aendGrundbez = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user